-- MySQL dump 10.13  Distrib 5.6.33, for Linux (x86_64)
--
-- Host: localhost    Database: pfasting_wp279
-- ------------------------------------------------------
-- Server version	5.6.33-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_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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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 NOT NULL,
  `comment_author_email` varchar(100) NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) NOT NULL DEFAULT '',
  `comment_type` varchar(20) NOT NULL DEFAULT '',
  `comment_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=InnoDB DEFAULT CHARSET=utf8;
/*!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_csp3_subscribers`
--

DROP TABLE IF EXISTS `wp_csp3_subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_csp3_subscribers` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(100) DEFAULT NULL,
  `fname` varchar(100) DEFAULT NULL,
  `lname` varchar(100) DEFAULT NULL,
  `clicks` int(11) NOT NULL DEFAULT '0',
  `conversions` int(11) NOT NULL DEFAULT '0',
  `referrer` int(11) NOT NULL DEFAULT '0',
  `ip` varchar(40) DEFAULT NULL,
  `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_csp3_subscribers`
--

LOCK TABLES `wp_csp3_subscribers` WRITE;
/*!40000 ALTER TABLE `wp_csp3_subscribers` DISABLE KEYS */;
INSERT INTO `wp_csp3_subscribers` VALUES (1,'gatorchristine@yahoo.com','Christine','Leon',0,0,-1,'76.106.152.114','2015-12-04 18:48:42');
/*!40000 ALTER TABLE `wp_csp3_subscribers` 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) NOT NULL DEFAULT '',
  `link_name` varchar(255) NOT NULL DEFAULT '',
  `link_image` varchar(255) NOT NULL DEFAULT '',
  `link_target` varchar(25) NOT NULL DEFAULT '',
  `link_description` varchar(255) NOT NULL DEFAULT '',
  `link_visible` varchar(20) NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) NOT NULL DEFAULT '',
  `link_notes` mediumtext NOT NULL,
  `link_rss` varchar(255) NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!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_nf_objectmeta`
--

DROP TABLE IF EXISTS `wp_nf_objectmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_objectmeta` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `object_id` bigint(20) NOT NULL,
  `meta_key` varchar(255) NOT NULL,
  `meta_value` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=76 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf_objectmeta`
--

LOCK TABLES `wp_nf_objectmeta` WRITE;
/*!40000 ALTER TABLE `wp_nf_objectmeta` DISABLE KEYS */;
INSERT INTO `wp_nf_objectmeta` VALUES (1,1,'date_updated','2016-01-31'),(2,1,'form_title','Contact Form'),(3,1,'show_title','0'),(4,1,'save_subs','1'),(5,1,'logged_in','0'),(6,1,'append_page',''),(7,1,'ajax','0'),(8,1,'clear_complete','1'),(9,1,'hide_complete','1'),(10,1,'success_msg','Your form has been successfully submitted.'),(11,1,'email_from',''),(12,1,'email_type','html'),(13,1,'user_email_msg','Thank you so much for contacting us. We will get back to you shortly.'),(14,1,'user_email_fields','0'),(15,1,'admin_email_msg',''),(16,1,'admin_email_fields','1'),(17,1,'admin_attach_csv','0'),(18,1,'email_from_name',''),(19,2,'date_updated','2014-09-09'),(20,2,'active','1'),(21,2,'name','Email User'),(22,2,'type','email'),(23,2,'email_format','html'),(24,2,'attach_csv','1'),(25,2,'from_name',''),(26,2,'from_address',''),(27,2,'reply_to',''),(28,2,'to','field_2'),(29,2,'cc',''),(30,2,'bcc',''),(31,2,'email_subject','Thank you for contacting us!'),(32,2,'email_message','Thank you so much for contacting us. We will get back to you shortly.'),(33,2,'redirect_url',''),(34,2,'success_message_loc','ninja_forms_display_before_fields'),(35,2,'success_msg',''),(36,3,'date_updated','2014-09-09'),(37,3,'active','1'),(38,3,'name','Success Message'),(39,3,'type','success_message'),(40,3,'email_format','html'),(41,3,'attach_csv','0'),(42,3,'from_name',''),(43,3,'from_address',''),(44,3,'reply_to',''),(45,3,'to',''),(46,3,'cc',''),(47,3,'bcc',''),(48,3,'email_subject',''),(49,3,'email_message',''),(50,3,'redirect_url',''),(51,3,'success_message_loc','ninja_forms_display_after_fields'),(52,3,'success_msg','Your form has been successfully submitted.'),(53,3,'text_message_number',''),(54,3,'text_message_carrier','0'),(55,3,'text_message_message',''),(56,4,'date_updated','2014-09-09'),(57,4,'active','1'),(58,4,'name','Email Admin'),(59,4,'type','email'),(60,4,'email_format','html'),(61,4,'attach_csv','1'),(62,4,'from_name',''),(63,4,'from_address',''),(64,4,'reply_to','field_2'),(65,4,'to',''),(66,4,'cc',''),(67,4,'bcc',''),(68,4,'email_subject','Ninja Form Submission'),(69,4,'email_message','[ninja_forms_all_fields]'),(70,4,'redirect_url',''),(71,4,'success_message_loc','ninja_forms_display_before_fields'),(72,4,'success_msg',''),(73,4,'text_message_number',''),(74,4,'text_message_carrier','0'),(75,4,'text_message_message','');
/*!40000 ALTER TABLE `wp_nf_objectmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf_objects`
--

DROP TABLE IF EXISTS `wp_nf_objects`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_objects` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_nf_objects`
--

LOCK TABLES `wp_nf_objects` WRITE;
/*!40000 ALTER TABLE `wp_nf_objects` DISABLE KEYS */;
INSERT INTO `wp_nf_objects` VALUES (1,'form'),(2,'notification'),(3,'notification'),(4,'notification');
/*!40000 ALTER TABLE `wp_nf_objects` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_nf_relationships`
--

DROP TABLE IF EXISTS `wp_nf_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_nf_relationships` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `child_id` bigint(20) NOT NULL,
  `parent_id` bigint(20) NOT NULL,
  `child_type` varchar(255) NOT NULL,
  `parent_type` varchar(255) 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_nf_relationships`
--

LOCK TABLES `wp_nf_relationships` WRITE;
/*!40000 ALTER TABLE `wp_nf_relationships` DISABLE KEYS */;
INSERT INTO `wp_nf_relationships` VALUES (1,2,1,'notification','form'),(2,3,1,'notification','form'),(3,4,1,'notification','form');
/*!40000 ALTER TABLE `wp_nf_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_ninja_forms_fav_fields`
--

DROP TABLE IF EXISTS `wp_ninja_forms_fav_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ninja_forms_fav_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `row_type` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `order` int(11) NOT NULL,
  `data` longtext NOT NULL,
  `name` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ninja_forms_fav_fields`
--

LOCK TABLES `wp_ninja_forms_fav_fields` WRITE;
/*!40000 ALTER TABLE `wp_ninja_forms_fav_fields` DISABLE KEYS */;
INSERT INTO `wp_ninja_forms_fav_fields` VALUES (2,0,'_list',0,'a:10:{s:5:\"label\";s:14:\"State Dropdown\";s:9:\"label_pos\";s:4:\"left\";s:9:\"list_type\";s:8:\"dropdown\";s:10:\"multi_size\";s:1:\"5\";s:15:\"list_show_value\";s:1:\"1\";s:4:\"list\";a:1:{s:7:\"options\";a:51:{i:0;a:3:{s:5:\"label\";s:7:\"Alabama\";s:5:\"value\";s:2:\"AL\";s:8:\"selected\";s:1:\"0\";}i:1;a:3:{s:5:\"label\";s:6:\"Alaska\";s:5:\"value\";s:2:\"AK\";s:8:\"selected\";s:1:\"0\";}i:2;a:3:{s:5:\"label\";s:7:\"Arizona\";s:5:\"value\";s:2:\"AZ\";s:8:\"selected\";s:1:\"0\";}i:3;a:3:{s:5:\"label\";s:8:\"Arkansas\";s:5:\"value\";s:2:\"AR\";s:8:\"selected\";s:1:\"0\";}i:4;a:3:{s:5:\"label\";s:10:\"California\";s:5:\"value\";s:2:\"CA\";s:8:\"selected\";s:1:\"0\";}i:5;a:3:{s:5:\"label\";s:8:\"Colorado\";s:5:\"value\";s:2:\"CO\";s:8:\"selected\";s:1:\"0\";}i:6;a:3:{s:5:\"label\";s:11:\"Connecticut\";s:5:\"value\";s:2:\"CT\";s:8:\"selected\";s:1:\"0\";}i:7;a:3:{s:5:\"label\";s:8:\"Delaware\";s:5:\"value\";s:2:\"DE\";s:8:\"selected\";s:1:\"0\";}i:8;a:3:{s:5:\"label\";s:20:\"District of Columbia\";s:5:\"value\";s:2:\"DC\";s:8:\"selected\";s:1:\"0\";}i:9;a:3:{s:5:\"label\";s:7:\"Florida\";s:5:\"value\";s:2:\"FL\";s:8:\"selected\";s:1:\"0\";}i:10;a:3:{s:5:\"label\";s:7:\"Georgia\";s:5:\"value\";s:2:\"GA\";s:8:\"selected\";s:1:\"0\";}i:11;a:3:{s:5:\"label\";s:6:\"Hawaii\";s:5:\"value\";s:2:\"HI\";s:8:\"selected\";s:1:\"0\";}i:12;a:3:{s:5:\"label\";s:5:\"Idaho\";s:5:\"value\";s:2:\"ID\";s:8:\"selected\";s:1:\"0\";}i:13;a:3:{s:5:\"label\";s:8:\"Illinois\";s:5:\"value\";s:2:\"IL\";s:8:\"selected\";s:1:\"0\";}i:14;a:3:{s:5:\"label\";s:7:\"Indiana\";s:5:\"value\";s:2:\"IN\";s:8:\"selected\";s:1:\"0\";}i:15;a:3:{s:5:\"label\";s:4:\"Iowa\";s:5:\"value\";s:2:\"IA\";s:8:\"selected\";s:1:\"0\";}i:16;a:3:{s:5:\"label\";s:6:\"Kansas\";s:5:\"value\";s:2:\"KS\";s:8:\"selected\";s:1:\"0\";}i:17;a:3:{s:5:\"label\";s:8:\"Kentucky\";s:5:\"value\";s:2:\"KY\";s:8:\"selected\";s:1:\"0\";}i:18;a:3:{s:5:\"label\";s:9:\"Louisiana\";s:5:\"value\";s:2:\"LA\";s:8:\"selected\";s:1:\"0\";}i:19;a:3:{s:5:\"label\";s:5:\"Maine\";s:5:\"value\";s:2:\"ME\";s:8:\"selected\";s:1:\"0\";}i:20;a:3:{s:5:\"label\";s:8:\"Maryland\";s:5:\"value\";s:2:\"MD\";s:8:\"selected\";s:1:\"0\";}i:21;a:3:{s:5:\"label\";s:13:\"Massachusetts\";s:5:\"value\";s:2:\"MA\";s:8:\"selected\";s:1:\"0\";}i:22;a:3:{s:5:\"label\";s:8:\"Michigan\";s:5:\"value\";s:2:\"MI\";s:8:\"selected\";s:1:\"0\";}i:23;a:3:{s:5:\"label\";s:9:\"Minnesota\";s:5:\"value\";s:2:\"MN\";s:8:\"selected\";s:1:\"0\";}i:24;a:3:{s:5:\"label\";s:11:\"Mississippi\";s:5:\"value\";s:2:\"MS\";s:8:\"selected\";s:1:\"0\";}i:25;a:3:{s:5:\"label\";s:8:\"Missouri\";s:5:\"value\";s:2:\"MO\";s:8:\"selected\";s:1:\"0\";}i:26;a:3:{s:5:\"label\";s:7:\"Montana\";s:5:\"value\";s:2:\"MT\";s:8:\"selected\";s:1:\"0\";}i:27;a:3:{s:5:\"label\";s:8:\"Nebraska\";s:5:\"value\";s:2:\"NE\";s:8:\"selected\";s:1:\"0\";}i:28;a:3:{s:5:\"label\";s:6:\"Nevada\";s:5:\"value\";s:2:\"NV\";s:8:\"selected\";s:1:\"0\";}i:29;a:3:{s:5:\"label\"3s:13:\"New Hampshire\";s:5:\"value\";s:2:\"NH\";s:8:\"selected\";s:1:\"0\";}i:30;a:3:{s:5:\"label\";s:10:\"New Jersey\";s:5:\"value\";s:2:\"NJ\";s:8:\"selected\";s:1:\"0\";}i:31;a:3:{s:5:\"label\";s:10:\"New Mexico\";s:5:\"value\";s:2:\"NM\";s:8:\"selected\";s:1:\"0\";}i:32;a:3:{s:5:\"label\";s:8:\"New York\";s:5:\"value\";s:2:\"NY\";s:8:\"selected\";s:1:\"0\";}i:33;a:3:{s:5:\"label\";s:14:\"North Carolina\";s:5:\"value\";s:2:\"NC\";s:8:\"selected\";s:1:\"0\";}i:34;a:3:{s:5:\"label\";s:12:\"North Dakota\";s:5:\"value\";s:2:\"ND\";s:8:\"selected\";s:1:\"0\";}i:35;a:3:{s:5:\"label\";s:4:\"Ohio\";s:5:\"value\";s:2:\"OH\";s:8:\"selected\";s:1:\"0\";}i:36;a:3:{s:5:\"label\";s:8:\"Oklahoma\";s:5:\"value\";s:2:\"OK\";s:8:\"selected\";s:1:\"0\";}i:37;a:3:{s:5:\"label\";s:6:\"Oregon\";s:5:\"value\";s:2:\"OR\";s:8:\"selected\";s:1:\"0\";}i:38;a:3:{s:5:\"label\";s:12:\"Pennsylvania\";s:5:\"value\";s:2:\"PA\";s:8:\"selected\";s:1:\"0\";}i:39;a:3:{s:5:\"label\";s:12:\"Rhode Island\";s:5:\"value\";s:2:\"RI\";s:8:\"selected\";s:1:\"0\";}i:40;a:3:{s:5:\"label\";s:14:\"South Carolina\";s:5:\"value\";s:2:\"SC\";s:8:\"selected\";s:1:\"0\";}i:41;a:3:{s:5:\"label\";s:12:\"South Dakota\";s:5:\"value\";s:2:\"SD\";s:8:\"selected\";s:1:\"0\";}i:42;a:3:{s:5:\"label\";s:9:\"Tennessee\";s:5:\"value\";s:2:\"TN\";s:8:\"selected\";s:1:\"0\";}i:43;a:3:{s:5:\"label\";s:5:\"Texas\";s:5:\"value\";s:2:\"TX\";s:8:\"selected\";s:1:\"0\";}i:44;a:3:{s:5:\"label\";s:4:\"Utah\";s:5:\"value\";s:2:\"UT\";s:8:\"selected\";s:1:\"0\";}i:45;a:3:{s:5:\"label\";s:7:\"Vermont\";s:5:\"value\";s:2:\"VT\";s:8:\"selected\";s:1:\"0\";}i:46;a:3:{s:5:\"label\";s:8:\"Virginia\";s:5:\"value\";s:2:\"VA\";s:8:\"selected\";s:1:\"0\";}i:47;a:3:{s:5:\"label\";s:10:\"Washington\";s:5:\"value\";s:2:\"WA\";s:8:\"selected\";s:1:\"0\";}i:48;a:3:{s:5:\"label\";s:13:\"West Virginia\";s:5:\"value\";s:2:\"WV\";s:8:\"selected\";s:1:\"0\";}i:49;a:3:{s:5:\"label\";s:9:\"Wisconsin\";s:5:\"value\";s:2:\"WI\";s:8:\"selected\";s:1:\"0\";}i:50;a:3:{s:5:\"label\";s:7:\"Wyoming\";s:5:\"value\";s:2:\"WY\";s:8:\"selected\";s:1:\"0\";}}}s:3:\"req\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','State Dropdown'),(3,0,'_spam',0,'a:6:{s:9:\"label_pos\";s:4:\"left\";s:5:\"label\";s:18:\"Anti-Spam Question\";s:6:\"answer\";s:16:\"Anti-Spam Answer\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','Anti-Spam'),(4,0,'_submit',0,'a:4:{s:5:\"label\";s:6:\"Submit\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";}','Submit');
/*!40000 ALTER TABLE `wp_ninja_forms_fav_fields` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_ninja_forms_fields`
--

DROP TABLE IF EXISTS `wp_ninja_forms_fields`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_ninja_forms_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_id` int(11) NOT NULL,
  `type` varchar(255) NOT NULL,
  `order` int(11) NOT NULL,
  `data` longtext NOT NULL,
  `fav_id` int(11) DEFAULT NULL,
  `def_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_ninja_forms_fields`
--

LOCK TABLES `wp_ninja_forms_fields` WRITE;
/*!40000 ALTER TABLE `wp_ninja_forms_fields` DISABLE KEYS */;
INSERT INTO `wp_ninja_forms_fields` VALUES (1,1,'_text',0,'a:24:{s:5:\"label\";s:4:\"Name\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"0\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:0:\"\";s:14:\"user_address_2\";s:0:\"\";s:9:\"user_city\";s:0:\"\";s:8:\"user_zip\";s:0:\"\";s:10:\"user_phone\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:21:\"user_info_field_group\";s:0:\"\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";}',0,0),(2,1,'_text',1,'a:28:{s:5:\"label\";s:5:\"Email\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:4:\"mask\";s:0:\"\";s:10:\"datepicker\";s:1:\"0\";s:5:\"email\";s:1:\"1\";s:10:\"first_name\";s:1:\"0\";s:9:\"last_name\";s:1:\"0\";s:9:\"from_name\";s:1:\"0\";s:14:\"user_address_1\";s:1:\"0\";s:14:\"user_address_2\";s:1:\"0\";s:9:\"user_city\";s:1:\"0\";s:8:\"user_zip\";s:1:\"0\";s:10:\"user_phone\";s:1:\"0\";s:10:\"user_email\";s:1:\"1\";s:21:\"user_info_field_group\";s:1:\"1\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";s:11:\"calc_option\";s:1:\"0\";s:11:\"conditional\";s:0:\"\";s:26:\"user_info_field_group_name\";s:0:\"\";s:28:\"user_info_field_group_custom\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',0,14),(3,1,'_textarea',2,'a:14:{s:5:\"label\";s:7:\"Message\";s:9:\"label_pos\";s:5:\"above\";s:13:\"default_value\";s:0:\"\";s:12:\"textarea_rte\";s:1:\"0\";s:14:\"textarea_media\";s:1:\"0\";s:18:\"disable_rte_mobile\";s:1:\"0\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";s:17:\"calc_auto_include\";s:1:\"0\";}',0,0),(4,1,'_spam',3,'a:10:{s:5:\"label\";s:25:\"What is thirteen minus 6?\";s:9:\"label_pos\";s:4:\"left\";s:11:\"spam_answer\";s:1:\"7\";s:3:\"req\";s:1:\"1\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',0,0),(5,1,'_submit',4,'a:7:{s:5:\"label\";s:4:\"Send\";s:5:\"class\";s:0:\"\";s:9:\"show_help\";s:1:\"0\";s:9:\"help_text\";s:0:\"\";s:9:\"show_desc\";s:1:\"0\";s:8:\"desc_pos\";s:4:\"none\";s:9:\"desc_text\";s:0:\"\";}',0,0);
/*!40000 ALTER TABLE `wp_ninja_forms_fields` 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) DEFAULT NULL,
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB AUTO_INCREMENT=20220 DEFAULT CHARSET=utf8;
/*!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://www.fiepfa.org','yes'),(2,'home','http://www.fiepfa.org','yes'),(3,'blogname','Fleming Island Elementary PFA','yes'),(4,'blogdescription','Official site of the Stingrays&#039; PFA','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','admin@healthwealth.email','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:5:{i:0;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:1;s:36:\"elegant-themes-icons/eticonfonts.php\";i:2;s:49:\"elegant-themes-updater/elegant-themes-updater.php\";i:5;s:27:\"updraftplus/updraftplus.php\";i:6;s:23:\"wordfence/wordfence.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(37,'comment_max_links','2','yes'),(38,'gmt_offset','0','yes'),(39,'default_email_category','1','yes'),(40,'recently_edited','a:3:{i:0;s:103:\"/home/pfastingrays/public_html/wp-content/plugins/seedprod-coming-soon-pro/seedprod-coming-soon-pro.php\";i:1;s:73:\"/home/pfastingrays/public_html/wp-content/plugins/wordfence/wordfence.php\";i:2;s:0:\"\";}','no'),(41,'template','Divi','yes'),(42,'stylesheet','Divi','yes'),(43,'comment_whitelist','1','yes'),(44,'blacklist_keys','','no'),(45,'comment_registration','0','yes'),(46,'html_type','text/html','yes'),(47,'use_trackback','0','yes'),(48,'default_role','subscriber','yes'),(49,'db_version','37965','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','1','yes'),(53,'default_link_category','2','yes'),(54,'show_on_front','page','yes'),(55,'tag_base','','yes'),(56,'show_avatars','1','yes'),(57,'avatar_rating','G','yes'),(58,'upload_url_path','','yes'),(59,'thumbnail_size_w','150','yes'),(60,'thumbnail_size_h','150','yes'),(61,'thumbnail_crop','1','yes'),(62,'medium_size_w','300','yes'),(63,'medium_size_h','300','yes'),(64,'avatar_default','mystery','yes'),(65,'large_size_w','1024','yes'),(66,'large_size_h','1024','yes'),(67,'image_default_link_type','file','yes'),(68,'image_default_size','','yes'),(69,'image_default_align','','yes'),(70,'close_comments_for_old_posts','0','yes'),(71,'close_comments_days_old','14','yes'),(72,'thread_comments','1','yes'),(73,'thread_comments_depth','5','yes'),(74,'page_comments','0','yes'),(75,'comments_per_page','50','yes'),(76,'default_comments_page','newest','yes'),(77,'comment_order','asc','yes'),(78,'sticky_posts','a:0:{}','yes'),(79,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:6:\"Topics\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:15:\"NEWS AND EVENTS\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:0:{}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','83','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'finished_splitting_shared_terms','1','yes'),(89,'initial_db_version','33056','yes'),(90,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{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:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(91,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:6:\"Search\";}s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-posts','a:2:{i:2;a:3:{s:5:\"title\";s:12:\"Recent Posts\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(93,'widget_recent-comments','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(94,'widget_archives','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_meta','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(96,'sidebars_widgets','a:7:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:12:\"categories-2\";}s:9:\"sidebar-2\";a:1:{i:0;s:22:\"black-studio-tinymce-6\";}s:9:\"sidebar-3\";a:1:{i:0;s:12:\"categories-3\";}s:9:\"sidebar-4\";a:1:{i:0;s:22:\"black-studio-tinymce-4\";}s:9:\"sidebar-5\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(99,'cron','a:19:{i:1480362016;a:1:{s:35:\"wordfence_batchReportFailedAttempts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480365067;a:1:{s:21:\"wordfence_hourly_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1480371217;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480376728;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:1480387625;a:1:{s:24:\"ninja_forms_daily_action\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1480387709;a:1:{s:29:\"wp_session_garbage_collection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1480389043;a:1:{s:21:\"et_cron_check_account\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1480400177;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:1480426267;a:2:{s:26:\"wordfence_daily_autoUpdate\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wordfence_daily_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1480443536;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:1480458472;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480544261;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480608000;a:1:{s:31:\"wordfence_email_activity_report\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480630795;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480718587;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480802883;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1480879767;a:2:{s:14:\"updraft_backup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}s:23:\"updraft_backup_database\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1480890332;a:1:{s:30:\"wordfence_start_scheduled_scan\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}s:7:\"version\";i:2;}','yes'),(115,'_transient_random_seed','177262647595d312cf0eedc1ff356030','yes'),(136,'recently_activated','a:0:{}','yes'),(141,'wordfence_version','6.2.6','yes'),(142,'wordfenceActivated','1','yes'),(143,'wf_plugin_act_error','','yes'),(146,'seedredux_version_upgraded_from','3.5.0.5','yes'),(149,'seed_cspv4_version','4.3.7','yes'),(150,'seed_cspv4','a:122:{s:8:\"last_tab\";s:0:\"\";s:6:\"status\";s:1:\"0\";s:12:\"redirect_url\";s:0:\"\";s:7:\"api_key\";s:32:\"c2aef11219674bc090039fabd675e31b\";s:4:\"logo\";a:5:{s:3:\"url\";s:75:\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Stingrays-2015x400.png\";s:2:\"id\";s:1:\"5\";s:6:\"height\";s:3:\"244\";s:5:\"width\";s:3:\"400\";s:9:\"thumbnail\";s:83:\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Stingrays-2015x400-150x150.png\";}s:8:\"headline\";s:26:\"Countdown to launch below!\";s:11:\"description\";s:1199:\"<p style=\"text-align: left;\">Hello, and thank you for visiting the new home of Fleming Island Elementary\'s Parent Faculty Association website!</p>\r\n<p style=\"text-align: left;\"><strong>\r\nSIGN UP AND JOIN OUR e-COMMUNITY</strong></p>\r\n<p style=\"text-align: left;\"><img class=\"wp-image-8 alignleft\" src=\"http://www.fiepfa.org/wp-content/uploads/2015/12/News-Icon-300x210.png\" alt=\"News icon\" width=\"76\" height=\"53\" />Although our projected go-live date is January, you may <strong><a href=\"http://eepurl.com/bFFmz1\">sign up</a></strong> to receive e-notifications and electronic copies of The BARB (beginning with our next issue).</p>\r\n<p style=\"text-align: left;\"><strong>\r\nHANDY DOCUMENTS</strong></p>\r\n\r\n<ul>\r\n	<li style=\"text-align: left;\"><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" target=\"_blank\" rel=\"\">Marquee birthday announcement RSVP</a></li>\r\n	<li style=\"text-align: left;\"><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" target=\"_blank\" rel=\"\">FIE Volunteer Handbook</a> (includes registration form and log)</li>\r\n</ul>\r\n<p style=\"text-align: left;\">Thanks so much!\r\nThe PFA Team</p>\";s:9:\"emaillist\";s:4:\"none\";s:10:\"name_field\";s:1:\"1\";s:19:\"name_field_required\";s:1:\"1\";s:24:\"privacy_policy_link_text\";s:29:\"We promise to never spam you.\";s:12:\"thankyou_msg\";s:153:\"Thanks so much for your interest in Fleming Island Elementary\'s new PFA website! Look forward to reaching out in the new year!\r\n\r\nOur best,\r\nThe PFA Team\";s:13:\"share_buttons\";a:7:{s:7:\"twitter\";s:0:\"\";s:8:\"facebook\";s:1:\"1\";s:13:\"facebook_send\";s:0:\"\";s:10:\"googleplus\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";}s:10:\"tweet_text\";s:0:\"\";s:18:\"facebook_thumbnail\";a:5:{s:3:\"url\";s:0:\"\";s:2:\"id\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";s:9:\"thumbnail\";s:0:\"\";}s:19:\"pinterest_thumbnail\";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:\"show_sharebutton_on_front\";s:1:\"1\";s:14:\"enable_reflink\";s:0:\"\";s:18:\"enable_progressbar\";s:1:\"1\";s:23:\"progress_bar_start_date\";s:0:\"\";s:21:\"progress_bar_end_date\";s:0:\"\";s:22:\"progressbar_percentage\";s:2:\"97\";s:18:\"progressbar_effect\";s:5:\"basic\";s:16:\"enable_countdown\";s:1:\"1\";s:14:\"countdown_date\";s:10:\"02/02/2016\";s:19:\"countdown_time_hour\";s:2:\"18\";s:21:\"countdown_time_minute\";s:1:\"0\";s:16:\"countdown_format\";s:4:\"dHMS\";s:16:\"countdown_launch\";s:0:\"\";s:20:\"social_profiles_type\";s:4:\"font\";s:20:\"social_profiles_size\";s:5:\"large\";s:21:\"social_profiles_blank\";s:0:\"\";s:15:\"social_profiles\";a:17:{s:8:\"facebook\";s:88:\"https://www.facebook.com/pages/Fleming-Island-Elementary-School/1538082849769265?fref=ts\";s:7:\"twitter\";s:0:\"\";s:8:\"linkedin\";s:0:\"\";s:10:\"googleplus\";s:0:\"\";s:7:\"youtube\";s:0:\"\";s:6:\"flickr\";s:0:\"\";s:5:\"vimeo\";s:0:\"\";s:9:\"pinterest\";s:0:\"\";s:9:\"instagram\";s:0:\"\";s:10:\"foursquare\";s:0:\"\";s:5:\"skype\";s:0:\"\";s:6:\"tumblr\";s:0:\"\";s:6:\"github\";s:0:\"\";s:8:\"dribbble\";s:0:\"\";s:5:\"slack\";s:0:\"\";s:3:\"rss\";s:0:\"\";s:5:\"email\";s:22:\"stingrayvols@gmail.com\";}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:9:\"seo_title\";s:0:\"\";s:15:\"seo_description\";s:0:\"\";s:12:\"ga_analytics\";s:0:\"\";s:18:\"footer_credit_text\";s:0:\"\";s:17:\"footer_credit_img\";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:\"footer_credit_link\";s:0:\"\";s:21:\"footer_affiliate_link\";s:0:\"\";s:10:\"background\";a:7:{s:16:\"background-color\";s:7:\"#f1f1f1\";s:17:\"background-repeat\";s:9:\"no-repeat\";s:15:\"background-size\";s:5:\"cover\";s:21:\"background-attachment\";s:5:\"fixed\";s:19:\"background-position\";s:10:\"center top\";s:16:\"background-image\";s:76:\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\";s:5:\"media\";a:4:{s:2:\"id\";s:1:\"7\";s:6:\"height\";s:3:\"805\";s:5:\"width\";s:4:\"1200\";s:9:\"thumbnail\";s:84:\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805-150x150.jpg\";}}s:12:\"bg_slideshow\";s:0:\"\";s:22:\"bg_slideshow_randomize\";s:0:\"\";s:24:\"bg_slideshow_slide_speed\";s:4:\"3000\";s:29:\"bg_slideshow_slide_transition\";s:1:\"1\";s:19:\"bg_slideshow_images\";a:1:{i:0;a:9:{s:5:\"title\";s:0:\"\";s:11:\"description\";s:0:\"\";s:3:\"url\";s:0:\"\";s:4:\"sort\";s:1:\"0\";s:13:\"attachment_id\";s:0:\"\";s:5:\"thumb\";s:0:\"\";s:5:\"image\";s:0:\"\";s:6:\"height\";s:0:\"\";s:5:\"width\";s:0:\"\";}}s:8:\"bg_video\";s:0:\"\";s:12:\"bg_video_url\";s:0:\"\";s:14:\"bg_video_audio\";s:0:\"\";s:13:\"bg_video_loop\";s:1:\"1\";s:13:\"headline_font\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"700\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"32px\";s:5:\"color\";s:7:\"#777777\";}s:9:\"text_font\";a:9:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"18px\";s:5:\"color\";s:7:\"#777777\";}s:11:\"button_font\";a:8:{s:11:\"font-family\";s:9:\"Open Sans\";s:12:\"font-options\";s:0:\"\";s:6:\"google\";s:1:\"1\";s:11:\"font-weight\";s:3:\"400\";s:10:\"font-style\";s:0:\"\";s:7:\"subsets\";s:0:\"\";s:9:\"font-size\";s:4:\"16px\";s:5:\"color\";s:7:\"#1e8cbe\";}s:10:\"typekit_id\";s:0:\"\";s:15:\"container_color\";a:3:{s:5:\"color\";s:7:\"#d9f0f9\";s:5:\"alpha\";s:4:\"0.98\";s:4:\"rgba\";s:22:\"rgba(217,240,249,0.98)\";}s:18:\"container_position\";s:4:\"none\";s:15:\"container_width\";a:2:{s:5:\"width\";s:5:\"600px\";s:5:\"units\";s:2:\"px\";}s:16:\"container_radius\";s:0:\"\";s:16:\"container_border\";a:6:{s:10:\"border-top\";s:1:\"0\";s:12:\"border-right\";s:1:\"0\";s:13:\"border-bottom\";s:1:\"0\";s:11:\"border-left\";s:1:\"0\";s:12:\"border-style\";s:5:\"solid\";s:12:\"border-color\";s:7:\"#ffffff\";}s:14:\"container_flat\";s:1:\"0\";s:9:\"btn_style\";s:1:\"1\";s:17:\"container_effects\";a:1:{i:0;s:4:\"glow\";}s:26:\"container_effect_animation\";s:0:\"\";s:10:\"custom_css\";s:0:\"\";s:11:\"custom_code\";s:0:\"\";s:8:\"template\";s:0:\"\";s:20:\"txt_subscribe_button\";s:9:\"Notify Me\";s:15:\"txt_email_field\";s:16:\"Enter Your Email\";s:14:\"txt_name_field\";s:4:\"Name\";s:15:\"txt_success_msg\";s:35:\"Thank you! You\'ll be notified soon.\";s:26:\"txt_already_subscribed_msg\";s:26:\"You\'re already subscribed.\";s:21:\"txt_invalid_email_msg\";s:27:\"Please enter a valid email.\";s:20:\"txt_invalid_name_msg\";s:20:\"Please enter a name.\";s:17:\"txt_api_error_msg\";s:24:\"Error, please try again.\";s:22:\"txt_stats_referral_url\";s:21:\"Your Referral URL is:\";s:24:\"txt_stats_referral_stats\";s:19:\"Your Referral Stats\";s:25:\"txt_stats_referral_clicks\";s:6:\"Clicks\";s:30:\"txt_stats_referral_subscribers\";s:11:\"Subscribers\";s:18:\"txt_countdown_days\";s:4:\"Days\";s:17:\"txt_countdown_day\";s:3:\"Day\";s:19:\"txt_countdown_hours\";s:5:\"Hours\";s:18:\"txt_countdown_hour\";s:4:\"Hour\";s:21:\"txt_countdown_minutes\";s:7:\"Minutes\";s:20:\"txt_countdown_minute\";s:6:\"Minute\";s:21:\"txt_countdown_seconds\";s:7:\"Seconds\";s:20:\"txt_countdown_second\";s:6:\"Second\";s:15:\"client_view_url\";s:0:\"\";s:14:\"bypass_expires\";s:6:\"172800\";s:9:\"ip_access\";s:0:\"\";s:12:\"include_page\";s:0:\"\";s:19:\"include_url_pattern\";s:0:\"\";s:19:\"exclude_url_pattern\";s:0:\"\";s:15:\"enable_fitvidjs\";s:1:\"1\";s:15:\"enable_retinajs\";s:0:\"\";s:21:\"enable_wp_head_footer\";s:0:\"\";s:24:\"disable_default_excludes\";s:0:\"\";s:21:\"display_lang_switcher\";s:0:\"\";s:14:\"header_scripts\";s:0:\"\";s:14:\"footer_scripts\";s:0:\"\";s:18:\"conversion_scripts\";s:0:\"\";s:10:\"plugin_api\";s:0:\"\";s:5:\"theme\";s:2:\"wp\";s:10:\"bg_effects\";b:0;s:12:\"text_effects\";b:0;s:14:\"section-status\";s:0:\"\";s:15:\"section_content\";s:0:\"\";s:12:\"section-form\";s:0:\"\";s:22:\"section-thank-you-page\";s:0:\"\";s:16:\"section_progress\";s:0:\"\";s:17:\"section_countdown\";s:0:\"\";s:20:\"section_social_media\";s:0:\"\";s:12:\"section_head\";s:0:\"\";s:14:\"section_footer\";s:0:\"\";s:12:\"section_text\";s:0:\"\";s:17:\"section_container\";s:0:\"\";s:16:\"section_template\";s:0:\"\";s:21:\"section-txt-countdown\";s:0:\"\";s:16:\"section_advanced\";s:0:\"\";s:13:\"include_roles\";s:0:\"\";s:15:\"section_scripts\";s:0:\"\";s:17:\"opt-import-export\";s:0:\"\";}','yes'),(151,'seed_cspv4-transients','a:4:{s:14:\"changed_values\";a:1:{s:6:\"status\";s:1:\"1\";}s:9:\"last_save\";i:1454435800;s:13:\"last_compiler\";i:1449254711;s:11:\"last_import\";i:1449254711;}','yes'),(152,'seedprod-coming-soon-pro_update_msg','WARNING: Update not available, your license key is invalid.','yes'),(156,'_transient_twentyfifteen_categories','1','yes'),(165,'seed_csvp4_theme','wp','yes'),(475,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1450148122;s:4:\"data\";a:2:{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\";}}}}','yes'),(476,'current_theme','Divi','yes'),(477,'theme_mods_Divi','a:9:{i:0;b:0;s:21:\"et_pb_layouts_updated\";s:3:\"yes\";s:30:\"et_pb_predefined_layouts_added\";s:2:\"on\";s:40:\"et_pb_predefined_layouts_updated_2_5_3_3\";s:2:\"on\";s:39:\"et_updated_layouts_built_for_post_types\";s:3:\"yes\";s:34:\"et_pb_predefined_layouts_version_2\";s:2:\"on\";s:21:\"et_pb_replace_content\";s:2:\"on\";s:18:\"nav_menu_locations\";a:2:{s:14:\"secondary-menu\";i:2;s:12:\"primary-menu\";i:6;}s:13:\"et_pb_widgets\";a:2:{s:5:\"areas\";a:0:{}s:6:\"number\";i:1;}}','yes'),(478,'theme_switched','','yes'),(479,'shop_catalog_image_size','a:3:{s:5:\"width\";s:3:\"400\";s:6:\"height\";s:3:\"400\";s:4:\"crop\";i:1;}','yes'),(480,'shop_single_image_size','a:3:{s:5:\"width\";s:3:\"510\";s:6:\"height\";s:4:\"9999\";s:4:\"crop\";i:0;}','yes'),(481,'shop_thumbnail_image_size','a:3:{s:5:\"width\";s:3:\"157\";s:6:\"height\";s:3:\"157\";s:4:\"crop\";i:1;}','yes'),(482,'et_images_temp_folder','/home/pfastingrays/public_html/wp-content/uploads/et_temp','yes'),(483,'et_schedule_clean_images_last_time','1479994254','yes'),(484,'et_divi','a:119:{s:23:\"2_5_flush_rewrite_rules\";s:4:\"done\";s:30:\"divi_2_4_documentation_message\";s:9:\"triggered\";s:15:\"divi_1_3_images\";s:7:\"checked\";s:9:\"divi_logo\";s:70:\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Logo-2015-400.png\";s:12:\"divi_favicon\";s:71:\"http://www.fiepfa.org/wp-content/uploads/2016/01/favicon-FIE-2015-3.jpg\";s:14:\"divi_fixed_nav\";s:2:\"on\";s:26:\"divi_gallery_layout_enable\";s:5:\"false\";s:15:\"divi_grab_image\";s:5:\"false\";s:15:\"divi_blog_style\";s:5:\"false\";s:22:\"divi_shop_page_sidebar\";s:16:\"et_right_sidebar\";s:22:\"divi_mailchimp_api_key\";s:37:\"69a3f969296672b3412d40897d2e8806-us12\";s:31:\"divi_regenerate_mailchimp_lists\";s:5:\"false\";s:28:\"divi_regenerate_aweber_lists\";s:5:\"false\";s:23:\"divi_show_facebook_icon\";s:2:\"on\";s:22:\"divi_show_twitter_icon\";s:5:\"false\";s:21:\"divi_show_google_icon\";s:5:\"false\";s:18:\"divi_show_rss_icon\";s:2:\"on\";s:17:\"divi_facebook_url\";s:35:\"https://www.facebook.com/fieengage/\";s:16:\"divi_twitter_url\";s:1:\"#\";s:15:\"divi_google_url\";s:1:\"#\";s:12:\"divi_rss_url\";s:0:\"\";s:34:\"divi_woocommerce_archive_num_posts\";i:9;s:17:\"divi_catnum_posts\";i:6;s:21:\"divi_archivenum_posts\";i:5;s:20:\"divi_searchnum_posts\";i:5;s:17:\"divi_tagnum_posts\";i:5;s:16:\"divi_date_format\";s:7:\"M  j, Y\";s:16:\"divi_use_excerpt\";s:5:\"false\";s:26:\"divi_responsive_shortcodes\";s:2:\"on\";s:33:\"divi_gf_enable_all_character_sets\";s:5:\"false\";s:16:\"divi_back_to_top\";s:5:\"false\";s:18:\"divi_smooth_scroll\";s:5:\"false\";s:25:\"divi_disable_translations\";s:5:\"false\";s:15:\"divi_custom_css\";s:28:\"#footer-info {display:none;]\";s:21:\"divi_enable_dropdowns\";s:2:\"on\";s:14:\"divi_home_link\";s:5:\"false\";s:15:\"divi_sort_pages\";s:10:\"post_title\";s:15:\"divi_order_page\";s:3:\"asc\";s:22:\"divi_tiers_shown_pages\";i:3;s:32:\"divi_enable_dropdowns_categories\";s:2:\"on\";s:21:\"divi_categories_empty\";s:2:\"on\";s:27:\"divi_tiers_shown_categories\";i:3;s:13:\"divi_sort_cat\";s:4:\"name\";s:14:\"divi_order_cat\";s:3:\"asc\";s:20:\"divi_disable_toptier\";s:5:\"false\";s:14:\"divi_postinfo2\";a:2:{i:0;s:4:\"date\";i:1;s:10:\"categories\";}s:22:\"divi_show_postcomments\";s:5:\"false\";s:15:\"divi_thumbnails\";s:2:\"on\";s:20:\"divi_page_thumbnails\";s:5:\"false\";s:23:\"divi_show_pagescomments\";s:5:\"false\";s:14:\"divi_postinfo1\";a:3:{i:0;s:6:\"author\";i:1;s:4:\"date\";i:2;s:10:\"categories\";}s:21:\"divi_thumbnails_index\";s:2:\"on\";s:19:\"divi_seo_home_title\";s:2:\"on\";s:25:\"divi_seo_home_description\";s:5:\"false\";s:22:\"divi_seo_home_keywords\";s:5:\"false\";s:23:\"divi_seo_home_canonical\";s:5:\"false\";s:23:\"divi_seo_home_titletext\";s:0:\"\";s:29:\"divi_seo_home_descriptiontext\";s:0:\"\";s:26:\"divi_seo_home_keywordstext\";s:0:\"\";s:18:\"divi_seo_home_type\";s:27:\"BlogName | Blog description\";s:22:\"divi_seo_home_separate\";s:3:\" | \";s:21:\"divi_seo_single_title\";s:5:\"false\";s:27:\"divi_seo_single_description\";s:5:\"false\";s:24:\"divi_seo_single_keywords\";s:5:\"false\";s:25:\"divi_seo_single_canonical\";s:5:\"false\";s:27:\"divi_seo_single_field_title\";s:9:\"seo_title\";s:33:\"divi_seo_single_field_description\";s:15:\"seo_description\";s:30:\"divi_seo_single_field_keywords\";s:12:\"seo_keywords\";s:20:\"divi_seo_single_type\";s:21:\"Post title | BlogName\";s:24:\"divi_seo_single_separate\";s:3:\" | \";s:24:\"divi_seo_index_canonical\";s:5:\"false\";s:26:\"divi_seo_index_description\";s:5:\"false\";s:19:\"divi_seo_index_type\";s:24:\"Category name | BlogName\";s:23:\"divi_seo_index_separate\";s:3:\" | \";s:28:\"divi_integrate_header_enable\";s:2:\"on\";s:26:\"divi_integrate_body_enable\";s:2:\"on\";s:31:\"divi_integrate_singletop_enable\";s:2:\"on\";s:34:\"divi_integrate_singlebottom_enable\";s:2:\"on\";s:21:\"divi_integration_head\";s:0:\"\";s:21:\"divi_integration_body\";s:0:\"\";s:27:\"divi_integration_single_top\";s:0:\"\";s:30:\"divi_integration_single_bottom\";s:0:\"\";s:15:\"divi_468_enable\";s:5:\"false\";s:14:\"divi_468_image\";s:0:\"\";s:12:\"divi_468_url\";s:0:\"\";s:16:\"divi_468_adsense\";s:0:\"\";s:12:\"heading_font\";s:10:\"Schoolbell\";s:12:\"header_color\";s:7:\"#6370b5\";s:12:\"accent_color\";s:7:\"#6370b5\";s:31:\"primary_nav_dropdown_line_color\";s:7:\"#6370b5\";s:16:\"secondary_nav_bg\";s:7:\"#bfcaff\";s:25:\"secondary_nav_dropdown_bg\";s:7:\"#6370b5\";s:24:\"show_header_social_icons\";b:1;s:9:\"footer_bg\";s:7:\"#00bee0\";s:22:\"footer_menu_text_color\";s:21:\"rgba(255,255,255,0.6)\";s:29:\"footer_menu_active_link_color\";s:21:\"rgba(255,255,255,0.6)\";s:21:\"bottom_bar_text_color\";s:7:\"#ffffff\";s:28:\"bottom_bar_social_icon_color\";s:7:\"#ffffff\";s:12:\"header_style\";s:8:\"centered\";s:12:\"vertical_nav\";b:0;s:11:\"menu_height\";i:141;s:11:\"logo_height\";i:54;s:13:\"nav_fullwidth\";b:0;s:15:\"hide_fixed_logo\";b:0;s:21:\"minimized_menu_height\";i:69;s:14:\"body_font_size\";i:16;s:16:\"body_header_size\";i:35;s:24:\"show_footer_social_icons\";b:0;s:14:\"footer_columns\";s:1:\"3\";s:23:\"widget_header_font_size\";i:20;s:24:\"footer_widget_text_color\";s:7:\"#ffffff\";s:14:\"divi_menupages\";a:1:{i:0;i:83;}s:26:\"footer_widget_header_color\";s:7:\"#eeee22\";s:26:\"footer_widget_bullet_color\";s:7:\"#eeee22\";s:24:\"footer_widget_link_color\";s:7:\"#efefef\";s:15:\"section_padding\";i:4;s:24:\"primary_nav_font_spacing\";i:0;s:16:\"body_font_height\";d:1.6999999999999999555910790149937383830547332763671875;s:25:\"3_0_flush_rewrite_rules_2\";s:4:\"done\";}','yes'),(486,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(487,'widget_nav_menu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(488,'widget_aboutmewidget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(489,'widget_adsensewidget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(490,'widget_advwidget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(491,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(493,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(497,'_site_transient_et_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1480357383;}','no'),(499,'site_icon','80','yes'),(500,'medium_large_size_w','768','yes'),(501,'medium_large_size_h','0','yes'),(502,'db_upgraded','','yes'),(511,'_site_transient_et_update_all_plugins','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1480357384;}','no'),(515,'WPLANG','','yes'),(516,'et_automatic_updates_options','a:2:{s:8:\"username\";s:17:\"gatorchristine007\";s:7:\"api_key\";s:41:\" ab742519a6fcb285c9c15d640ad4c3423906c46d\";}','yes'),(550,'et_account_status','active','yes'),(743,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:24:\"admin@healthwealth.email\";s:7:\"version\";s:5:\"4.6.1\";s:9:\"timestamp\";i:1473263435;}','no'),(1186,'rewrite_rules','a:159:{s:10:\"project/?$\";s:27:\"index.php?post_type=project\";s:40:\"project/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:35:\"project/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?post_type=project&feed=$matches[1]\";s:27:\"project/page/([0-9]{1,})/?$\";s:45:\"index.php?post_type=project&paged=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:40:\"et_pb_layout/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"et_pb_layout/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"et_pb_layout/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"et_pb_layout/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:46:\"et_pb_layout/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:29:\"et_pb_layout/([^/]+)/embed/?$\";s:60:\"index.php?post_type=et_pb_layout&name=$matches[1]&embed=true\";s:33:\"et_pb_layout/([^/]+)/trackback/?$\";s:54:\"index.php?post_type=et_pb_layout&name=$matches[1]&tb=1\";s:41:\"et_pb_layout/([^/]+)/page/?([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&paged=$matches[2]\";s:48:\"et_pb_layout/([^/]+)/comment-page-([0-9]{1,})/?$\";s:67:\"index.php?post_type=et_pb_layout&name=$matches[1]&cpage=$matches[2]\";s:37:\"et_pb_layout/([^/]+)(?:/([0-9]+))?/?$\";s:66:\"index.php?post_type=et_pb_layout&name=$matches[1]&page=$matches[2]\";s:29:\"et_pb_layout/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"et_pb_layout/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"et_pb_layout/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"et_pb_layout/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:35:\"et_pb_layout/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:46:\"scope/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:41:\"scope/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?scope=$matches[1]&feed=$matches[2]\";s:22:\"scope/([^/]+)/embed/?$\";s:38:\"index.php?scope=$matches[1]&embed=true\";s:34:\"scope/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?scope=$matches[1]&paged=$matches[2]\";s:16:\"scope/([^/]+)/?$\";s:27:\"index.php?scope=$matches[1]\";s:52:\"layout_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:47:\"layout_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?layout_type=$matches[1]&feed=$matches[2]\";s:28:\"layout_type/([^/]+)/embed/?$\";s:44:\"index.php?layout_type=$matches[1]&embed=true\";s:40:\"layout_type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?layout_type=$matches[1]&paged=$matches[2]\";s:22:\"layout_type/([^/]+)/?$\";s:33:\"index.php?layout_type=$matches[1]\";s:53:\"module_width/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:48:\"module_width/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?module_width=$matches[1]&feed=$matches[2]\";s:29:\"module_width/([^/]+)/embed/?$\";s:45:\"index.php?module_width=$matches[1]&embed=true\";s:41:\"module_width/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?module_width=$matches[1]&paged=$matches[2]\";s:23:\"module_width/([^/]+)/?$\";s:34:\"index.php?module_width=$matches[1]\";s:56:\"layout_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:51:\"layout_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:54:\"index.php?layout_category=$matches[1]&feed=$matches[2]\";s:32:\"layout_category/([^/]+)/embed/?$\";s:48:\"index.php?layout_category=$matches[1]&embed=true\";s:44:\"layout_category/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?layout_category=$matches[1]&paged=$matches[2]\";s:26:\"layout_category/([^/]+)/?$\";s:37:\"index.php?layout_category=$matches[1]\";s:35:\"project/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"project/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"project/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"project/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"project/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"project/([^/]+)/embed/?$\";s:40:\"index.php?project=$matches[1]&embed=true\";s:28:\"project/([^/]+)/trackback/?$\";s:34:\"index.php?project=$matches[1]&tb=1\";s:48:\"project/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:43:\"project/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:46:\"index.php?project=$matches[1]&feed=$matches[2]\";s:36:\"project/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&paged=$matches[2]\";s:43:\"project/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?project=$matches[1]&cpage=$matches[2]\";s:32:\"project/([^/]+)(?:/([0-9]+))?/?$\";s:46:\"index.php?project=$matches[1]&page=$matches[2]\";s:24:\"project/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"project/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"project/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"project/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"project/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:57:\"project_category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:52:\"project_category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?project_category=$matches[1]&feed=$matches[2]\";s:33:\"project_category/([^/]+)/embed/?$\";s:49:\"index.php?project_category=$matches[1]&embed=true\";s:45:\"project_category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?project_category=$matches[1]&paged=$matches[2]\";s:27:\"project_category/([^/]+)/?$\";s:38:\"index.php?project_category=$matches[1]\";s:52:\"project_tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:47:\"project_tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?project_tag=$matches[1]&feed=$matches[2]\";s:28:\"project_tag/([^/]+)/embed/?$\";s:44:\"index.php?project_tag=$matches[1]&embed=true\";s:40:\"project_tag/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?project_tag=$matches[1]&paged=$matches[2]\";s:22:\"project_tag/([^/]+)/?$\";s:33:\"index.php?project_tag=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=83&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(1198,'widget_black-studio-tinymce','a:4:{i:4;a:4:{s:5:\"title\";s:25:\"FROM THE SCHOOL\'S WEBSITE\";s:4:\"text\";s:884:\"<a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">Teacher Websites</a>\r\n<a href=\"http://www.fiepfa.org/fie-calendar/\">Calendar</a>\r\nLinks: <a href=\"http://fie.oneclay.net/parent-links.html\" target=\"_blank\">Parents</a>  |  <a href=\"http://fie.oneclay.net/staff-links.html\" target=\"_blank\">Staff</a>  | <a href=\"http://fie.oneclay.net/student-links.html\" target=\"_blank\">Students</a>\r\n\r\n<strong>DIGITAL CLASSROOM INITIATIVE\r\n</strong><em>(Focus, Google Apps for Education and OneClay Portal)</em><strong>\r\n</strong>[icon name=icon_check] <a href=\"http://digitalclassroominitiative.weebly.com/parents.html\" target=\"_blank\">Parents</a>\r\n[icon name=icon_check] <a href=\"http://digitalclassroominitiative.weebly.com/employees.html\" target=\"_blank\">Staff</a>\r\n[icon name=icon_check] <a href=\"http://digitalclassroominitiative.weebly.com/students.html\" target=\"_blank\">Students</a>\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";s:1:\"1\";}i:5;a:4:{s:5:\"title\";s:9:\"HOT SPOTS\";s:4:\"text\";s:451:\"<a href=\"http://www.fiepfa.org/team/\">PFA Team</a>\r\n<a href=\"http://www.fiepfa.org/about/\">Minutes</a>\r\n<a href=\"http://www.fiepfa.org/volunteers/\">Volunteers</a>\r\n<a href=\"http://www.fiepfa.org/fundraising/\">Fundraising</a>\r\n<a href=\"http://www.fiepfa.org/corporate-partners/\">Community Partners</a>\r\n<a href=\"http://www.fiepfa.org/playground/\">Playground</a>\r\n\r\n© 2016 Fleming Island Elementary PFA\r\n<em>Donated by Christine Leon Vorst Designs</em>\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";s:1:\"1\";}i:6;a:4:{s:5:\"title\";s:9:\"HOT SPOTS\";s:4:\"text\";s:609:\"<a href=\"http://www.fiepfa.org/team/\">PFA Team\r\n</a><a href=\"http://www.fiepfa.org/about/\">About/Minutes\r\n</a><a href=\"http://www.fiepfa.org/volunteers/\">Volunteers\r\n</a><a style=\"line-height: 1.7em;\" href=\"http://www.fiepfa.org/fundraising/\">Fundraising\r\n</a><a style=\"line-height: 1.7em;\" href=\"http://www.fiepfa.org/corporate-partners/\">Community Partners\r\n</a><a style=\"line-height: 1.7em;\" href=\"http://www.fiepfa.org/playground/\">Playground\r\n</a><a href=\"http://www.fiepfa.org/privacy-policy/\">Privacy Policy</a>\r\n\r\n© 2016 Fleming Island Elementary PFA\r\n<em>Donated by Christine Leon Vorst Designs</em>\";s:4:\"type\";s:6:\"visual\";s:6:\"filter\";s:1:\"1\";}s:12:\"_multiwidget\";i:1;}','yes'),(1201,'nf_convert_notifications_complete','1','yes'),(1202,'nf_convert_subs_step','complete','yes'),(1203,'nf_upgrade_notice','closed','yes'),(1204,'nf_update_email_settings_complete','1','yes'),(1205,'nf_email_fav_updated','1','yes'),(1206,'nf_convert_forms_complete','1','yes'),(1207,'nf_database_migrations','1','yes'),(1208,'ninja_forms_settings','a:18:{s:11:\"date_format\";s:5:\"d/m/Y\";s:15:\"currency_symbol\";s:1:\"$\";s:14:\"recaptcha_lang\";s:2:\"en\";s:13:\"req_div_label\";s:80:\"Fields marked with an <span class=\"ninja-forms-req-symbol\">*</span> are required\";s:16:\"req_field_symbol\";s:18:\"<strong>*</strong>\";s:15:\"req_error_label\";s:48:\"Please ensure all required fields are completed.\";s:15:\"req_field_error\";s:24:\"This is a required field\";s:10:\"spam_error\";s:47:\"Please answer the anti-spam question correctly.\";s:14:\"honeypot_error\";s:34:\"Please leave the spam field blank.\";s:18:\"timed_submit_error\";s:31:\"Please wait to submit the form.\";s:16:\"javascript_error\";s:54:\"You cannot submit the form without Javascript enabled.\";s:13:\"invalid_email\";s:35:\"Please enter a valid email address.\";s:13:\"process_label\";s:10:\"Processing\";s:17:\"password_mismatch\";s:36:\"The passwords provided do not match.\";s:10:\"preview_id\";i:93;s:7:\"version\";s:6:\"2.9.33\";s:19:\"fix_form_email_from\";i:1;s:18:\"fix_field_reply_to\";i:1;}','yes'),(1215,'widget_ninja_forms_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1219,'nf_admin_notice','a:2:{s:16:\"one_week_support\";a:2:{s:5:\"start\";s:8:\"2/7/2016\";s:3:\"int\";i:7;}s:15:\"two_week_review\";a:2:{s:5:\"start\";s:9:\"2/14/2016\";s:3:\"int\";i:14;}}','yes'),(1258,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(1582,'updraftplus-addons_siteid','8ac56e200e231091568b9f35e58af76a','yes'),(1583,'updraft_lastmessage','The backup apparently succeeded and is now complete (Nov 28 18:25:34)','yes'),(1584,'updraftplus_unlocked_fd','1','yes'),(1585,'updraftplus_last_lock_time_fd','2016-11-28 18:24:06','yes'),(1586,'updraftplus_semaphore_fd','0','yes'),(1587,'updraft_last_scheduled_fd','1480357446','yes'),(1589,'updraft_backup_history','a:2:{i:1480357446;a:15:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-plugins.zip\";}s:12:\"plugins-size\";i:8992626;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-themes.zip\";}s:11:\"themes-size\";i:7127063;s:7:\"uploads\";a:1:{i:0;s:77:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-uploads.zip\";}s:12:\"uploads-size\";i:21932673;s:6:\"others\";a:1:{i:0;s:76:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-others.zip\";}s:11:\"others-size\";i:102531;s:2:\"db\";s:71:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-db.gz\";s:7:\"db-size\";i:681706;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"e3074781bf6c3cace64e1bd81dccd387268ccc7e\";s:7:\"themes0\";s:40:\"30671a3e88965daad45ba416bb8d03b8e4da6726\";s:8:\"uploads0\";s:40:\"6cbd429109241ea4744e9aa281e362a5cf5df477\";s:7:\"others0\";s:40:\"9a75ba7014b9b2e5b6fa14f32c3cf7c24d5e58a4\";s:3:\"db0\";s:40:\"c26185ed219430bbf64d96095426c10d6377cf08\";}}s:5:\"nonce\";s:12:\"6f402f02485a\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:18:\"created_by_version\";s:7:\"1.12.29\";s:12:\"is_multisite\";b:0;}i:1480275212;a:15:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2016-11-27-1933_Fleming_Island_Elementary_PFA_3229e7bfa0a7-plugins.zip\";}s:12:\"plugins-size\";i:8928567;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2016-11-27-1933_Fleming_Island_Elementary_PFA_3229e7bfa0a7-themes.zip\";}s:11:\"themes-size\";i:7066602;s:7:\"uploads\";a:1:{i:0;s:77:\"backup_2016-11-27-1933_Fleming_Island_Elementary_PFA_3229e7bfa0a7-uploads.zip\";}s:12:\"uploads-size\";i:21932673;s:6:\"others\";a:1:{i:0;s:76:\"backup_2016-11-27-1933_Fleming_Island_Elementary_PFA_3229e7bfa0a7-others.zip\";}s:11:\"others-size\";i:93408;s:2:\"db\";s:71:\"backup_2016-11-27-1933_Fleming_Island_Elementary_PFA_3229e7bfa0a7-db.gz\";s:7:\"db-size\";i:676165;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"08fc64c58629622021e449db5a72707de9403f20\";s:7:\"themes0\";s:40:\"8911ffa79e08744dfffdc44bb084a8f776362d21\";s:8:\"uploads0\";s:40:\"6cbd429109241ea4744e9aa281e362a5cf5df477\";s:7:\"others0\";s:40:\"776205eb83e85db70db357f9219e843316690d78\";s:3:\"db0\";s:40:\"305cb205c186319aa8c07d8d2327dc270e2a729c\";}}s:5:\"nonce\";s:12:\"3229e7bfa0a7\";s:7:\"service\";a:1:{i:0;s:11:\"googledrive\";}s:18:\"created_by_version\";s:7:\"1.12.25\";s:12:\"is_multisite\";b:0;}}','yes'),(1590,'updraft_last_backup','a:5:{s:11:\"backup_time\";i:1480357446;s:12:\"backup_array\";a:11:{s:7:\"plugins\";a:1:{i:0;s:77:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-plugins.zip\";}s:12:\"plugins-size\";i:8992626;s:6:\"themes\";a:1:{i:0;s:76:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-themes.zip\";}s:11:\"themes-size\";i:7127063;s:7:\"uploads\";a:1:{i:0;s:77:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-uploads.zip\";}s:12:\"uploads-size\";i:21932673;s:6:\"others\";a:1:{i:0;s:76:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-others.zip\";}s:11:\"others-size\";i:102531;s:2:\"db\";s:71:\"backup_2016-11-28-1824_Fleming_Island_Elementary_PFA_6f402f02485a-db.gz\";s:7:\"db-size\";i:681706;s:9:\"checksums\";a:1:{s:4:\"sha1\";a:5:{s:8:\"plugins0\";s:40:\"e3074781bf6c3cace64e1bd81dccd387268ccc7e\";s:7:\"themes0\";s:40:\"30671a3e88965daad45ba416bb8d03b8e4da6726\";s:8:\"uploads0\";s:40:\"6cbd429109241ea4744e9aa281e362a5cf5df477\";s:7:\"others0\";s:40:\"9a75ba7014b9b2e5b6fa14f32c3cf7c24d5e58a4\";s:3:\"db0\";s:40:\"c26185ed219430bbf64d96095426c10d6377cf08\";}}}s:7:\"success\";i:1;s:6:\"errors\";a:0:{}s:12:\"backup_nonce\";s:12:\"6f402f02485a\";}','yes'),(1694,'updraft_interval','weekly','yes'),(1695,'updraft_interval_database','weekly','yes'),(1696,'updraft_interval_increments','','yes'),(1697,'updraft_retain','2','yes'),(1698,'updraft_retain_db','2','yes'),(1699,'updraft_retain_extrarules','a:0:{}','yes'),(1700,'updraft_encryptionphrase','','yes'),(1701,'updraft_service','googledrive','yes'),(1702,'updraft_s3','a:3:{s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(1703,'updraft_ftp','a:5:{s:4:\"host\";s:0:\"\";s:4:\"user\";s:0:\"\";s:4:\"pass\";s:0:\"\";s:4:\"path\";s:0:\"\";s:7:\"passive\";s:1:\"1\";}','yes'),(1704,'updraft_dreamobjects','a:4:{s:8:\"endpoint\";s:26:\"objects-us-west-1.dream.io\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(1705,'updraft_s3generic','a:4:{s:8:\"endpoint\";s:0:\"\";s:9:\"accesskey\";s:0:\"\";s:9:\"secretkey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(1706,'updraft_cloudfiles','a:5:{s:7:\"authurl\";s:35:\"https://auth.api.rackspacecloud.com\";s:6:\"region\";s:3:\"DFW\";s:4:\"user\";s:0:\"\";s:6:\"apikey\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(1707,'updraft_bitcasa','a:0:{}','yes'),(1708,'updraft_copycom','a:0:{}','yes'),(1709,'updraft_openstack','a:6:{s:7:\"authurl\";s:0:\"\";s:6:\"tenant\";s:0:\"\";s:6:\"region\";s:0:\"\";s:4:\"user\";s:0:\"\";s:8:\"password\";s:0:\"\";s:4:\"path\";s:0:\"\";}','yes'),(1710,'updraft_dropbox','a:0:{}','yes'),(1711,'updraft_googledrive','a:6:{s:8:\"clientid\";s:72:\"666581010875-6td5doth17q2tup8rqtds7c8co8m0kjv.apps.googleusercontent.com\";s:6:\"secret\";s:24:\"AZzz07vjsqubr3fwHywTh8B9\";s:6:\"folder\";s:11:\"UpdraftPlus\";s:5:\"token\";s:45:\"1/UAWIett4GqTRZET4Zck93hzzj8YRvtKfTf7EgEleZ30\";s:16:\"tmp_access_token\";s:71:\"ya29.Ci-WAxjE1qjk7Hi_P2giHi4C3HPBRx2aP-kTZuc3SDPchwH9ER5S7cl97Vsc5ab-oA\";s:9:\"ownername\";s:14:\"Christine Leon\";}','yes'),(1712,'updraft_onedrive','a:0:{}','yes'),(1713,'updraft_azure','a:0:{}','yes'),(1714,'updraft_googlecloud','','yes'),(1715,'updraft_sftp_settings','','yes'),(1716,'updraft_webdav_settings','','yes'),(1717,'updraft_ssl_nossl','0','yes'),(1718,'updraft_log_syslog','0','yes'),(1719,'updraft_ssl_useservercerts','0','yes'),(1720,'updraft_ssl_disableverify','0','yes'),(1721,'updraft_split_every','400','yes'),(1722,'updraft_dir','updraft','yes'),(1723,'updraft_email','admin@healthwealth.email','yes'),(1724,'updraft_report_warningsonly','a:0:{}','yes'),(1725,'updraft_report_wholebackup','a:0:{}','yes'),(1726,'updraft_autobackup_default','0','yes'),(1727,'updraft_delete_local','1','yes'),(1728,'updraft_debug_mode','0','yes'),(1729,'updraft_extradbs','a:0:{}','yes'),(1730,'updraft_backupdb_nonwp','0','yes'),(1731,'updraft_include_plugins','1','yes'),(1732,'updraft_include_themes','1','yes'),(1733,'updraft_include_uploads','1','yes'),(1734,'updraft_include_others','1','yes'),(1735,'updraft_include_wpcore','0','yes'),(1736,'updraft_include_wpcore_exclude','','yes'),(1737,'updraft_include_more','0','yes'),(1738,'updraft_include_more_path','a:0:{}','yes'),(1739,'updraft_include_uploads_exclude','backup*,*backups,backwpup*,wp-clone','yes'),(1740,'updraft_include_others_exclude','upgrade,cache,updraft,backup*,*backups,mysql.sql,debug.log','yes'),(1741,'updraft_starttime_files','19:32','yes'),(1742,'updraft_starttime_db','19:32','yes'),(1743,'updraft_startday_files','0','yes'),(1744,'updraft_startday_db','0','yes'),(1767,'updraftplus_unlocked_','1','yes'),(1768,'updraftplus_last_lock_time_','2016-02-07 19:29:57','yes'),(1769,'updraftplus_semaphore_','0','yes'),(3465,'et_pb_cache_notice','a:1:{s:7:\"2.6.4.4\";s:6:\"ignore\";}','yes'),(3679,'layout_category_children','a:0:{}','yes'),(3684,'category_children','a:0:{}','yes'),(4900,'wordfence_syncingAttackData','0','no'),(5011,'et_account_status_last_checked','1480356667','yes'),(12356,'wordfence_syncAttackDataAttempts','0','no'),(15779,'_site_transient_timeout_browser_4c9717c179f154741a00df005d8e11d2','1471859229','yes'),(15780,'_site_transient_browser_4c9717c179f154741a00df005d8e11d2','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;}','yes'),(16041,'can_compress_scripts','1','no'),(16071,'_transient_timeout_wflginfl_00000000000000000000ffffb63282bc','1471600999','no'),(16072,'_transient_wflginfl_00000000000000000000ffffb63282bc','1','no'),(16145,'_transient_timeout_wflginfl_00000000000000000000ffffb2a2d3e2','1471726325','no'),(16146,'_transient_wflginfl_00000000000000000000ffffb2a2d3e2','1','no'),(16310,'_transient_timeout_wflginfl_00000000000000000000ffff323fc41c','1471980428','no'),(16311,'_transient_wflginfl_00000000000000000000ffff323fc41c','1','no'),(16352,'_transient_timeout_wflginfl_00000000000000000000ffff0527de16','1472063454','no'),(16353,'_transient_wflginfl_00000000000000000000ffff0527de16','1','no'),(16535,'_transient_timeout_wflginfl_00000000000000000000ffffbca36b9b','1472201812','no'),(16536,'_transient_wflginfl_00000000000000000000ffffbca36b9b','1','no'),(16546,'_transient_timeout_wflginfl_00000000000000000000ffffb6328273','1472220190','no'),(16547,'_transient_wflginfl_00000000000000000000ffffb6328273','1','no'),(16741,'_transient_timeout_wflginfl_00000000000000000000ffffb63282bd','1472664639','no'),(16742,'_transient_wflginfl_00000000000000000000ffffb63282bd','1','no'),(16816,'_transient_timeout_wflginfl_00000000000000000000ffffd06db554','1472859972','no'),(16817,'_transient_wflginfl_00000000000000000000ffffd06db554','1','no'),(16828,'_transient_timeout_wflginfl_00000000000000000000ffff3e958f4c','1472894314','no'),(16829,'_transient_wflginfl_00000000000000000000ffff3e958f4c','1','no'),(16944,'_transient_timeout_wflginfl_00000000000000000000ffff323fc41b','1473162387','no'),(16945,'_transient_wflginfl_00000000000000000000ffff323fc41b','1','no'),(17009,'_transient_timeout_wflginfl_00000000000000000000ffff5e1709d7','1473263726','no'),(17010,'_transient_wflginfl_00000000000000000000ffff5e1709d7','1','no'),(17014,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.6.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.6.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.6.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.6.1\";s:7:\"version\";s:5:\"4.6.1\";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:1480357384;s:15:\"version_checked\";s:5:\"4.6.1\";s:12:\"translations\";a:0:{}}','no'),(17128,'_transient_timeout_wflginfl_00000000000000000000ffffadc9c421','1473513427','no'),(17129,'_transient_wflginfl_00000000000000000000ffffadc9c421','1','no'),(17142,'_transient_timeout_wflginfl_00000000000000000000ffffadc9c465','1473536726','no'),(17143,'_transient_wflginfl_00000000000000000000ffffadc9c465','1','no'),(17171,'_transient_timeout_wflginfl_00000000000000000000ffff323ea193','1473614437','no'),(17172,'_transient_wflginfl_00000000000000000000ffff323ea193','1','no'),(17203,'_transient_timeout_wflginfl_00000000000000000000ffff323ea166','1473664486','no'),(17204,'_transient_wflginfl_00000000000000000000ffff323ea166','1','no'),(17281,'_transient_timeout_wflginfl_00000000000000000000ffff323eb013','1473861800','no'),(17282,'_transient_wflginfl_00000000000000000000ffff323eb013','1','no'),(17300,'_transient_timeout_wflginfl_00000000000000000000ffff5d4ce676','1473906072','no'),(17301,'_transient_wflginfl_00000000000000000000ffff5d4ce676','2','no'),(17304,'_transient_timeout_wflginfl_00000000000000000000ffffadc9c464','1473917940','no'),(17305,'_transient_wflginfl_00000000000000000000ffffadc9c464','1','no'),(17316,'_transient_timeout_wflginfl_00000000000000000000ffffb8a89834','1473930984','no'),(17317,'_transient_wflginfl_00000000000000000000ffffb8a89834','1','no'),(17324,'_transient_timeout_wflginfl_00000000000000000000ffff17ee12f1','1473947734','no'),(17325,'_transient_wflginfl_00000000000000000000ffff17ee12f1','1','no'),(17467,'_transient_timeout_wflginfl_00000000000000000000ffff323fc416','1474285326','no'),(17468,'_transient_wflginfl_00000000000000000000ffff323fc416','1','no'),(17487,'_site_transient_timeout_browser_12ee80464124007ce3c672f15bcfa96b','1474940086','no'),(17488,'_site_transient_browser_12ee80464124007ce3c672f15bcfa96b','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"53.0.2785.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'),(17499,'_transient_timeout_et_pb_mailchimp_lists','1474421826','no'),(17500,'_transient_et_pb_mailchimp_lists','a:1:{s:10:\"6a5929bf74\";s:27:\"FIE Stingrays Info and News\";}','no'),(17579,'_transient_timeout_wffgt_00000000000000000000ffff6b8ba962','1474471647','no'),(17580,'_transient_wffgt_00000000000000000000ffff6b8ba962','1','no'),(17581,'_site_transient_timeout_browser_f27a70fef65ab50236291e1635e268f3','1475076261','no'),(17582,'_site_transient_browser_f27a70fef65ab50236291e1635e268f3','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:2:\"11\";s:10:\"update_url\";s:51:\"http://www.microsoft.com/windows/internet-explorer/\";s:7:\"img_src\";s:45:\"http://s.wordpress.org/images/browsers/ie.png\";s:11:\"img_src_ssl\";s:44:\"https://wordpress.org/images/browsers/ie.png\";s:15:\"current_version\";s:1:\"9\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;}','no'),(17826,'_transient_timeout_wflginfl_00000000000000000000ffff323eb155','1475047002','no'),(17827,'_transient_wflginfl_00000000000000000000ffff323eb155','1','no'),(17837,'_transient_timeout_wflginfl_00000000000000000000ffff3e958f4a','1475056593','no'),(17838,'_transient_wflginfl_00000000000000000000ffff3e958f4a','1','no'),(17908,'_transient_timeout_wflginfl_00000000000000000000ffffb6328274','1475207622','no'),(17909,'_transient_wflginfl_00000000000000000000ffffb6328274','1','no'),(18074,'wordfence_lastSyncAttackData','1480361634','no'),(19501,'_transient_timeout_wflginfl_00000000000000000000ffffc39aeb69','1479048999','no'),(19502,'_transient_wflginfl_00000000000000000000ffffc39aeb69','19','no'),(19546,'_site_transient_timeout_browser_68948a6d14dc2998ac6d5fc6a7204e73','1479730763','no'),(19547,'_site_transient_browser_68948a6d14dc2998ac6d5fc6a7204e73','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"54.0.2840.71\";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'),(19671,'_transient_timeout_wflginfl_00000000000000000000ffff5bd29316','1479305811','no'),(19672,'_transient_wflginfl_00000000000000000000ffff5bd29316','2','no'),(19981,'_transient_timeout_wflginfl_00000000000000000000ffff531afc6e','1480025772','no'),(19982,'_transient_wflginfl_00000000000000000000ffff531afc6e','1','no'),(20010,'_transient_timeout_wflginfl_00000000000000000000ffffdbd712df','1480079587','no'),(20011,'_transient_wflginfl_00000000000000000000ffffdbd712df','1','no'),(20051,'_transient_timeout_wflginfl_00000000000000000000ffff6f442c83','1480143317','no'),(20052,'_transient_wflginfl_00000000000000000000ffff6f442c83','1','no'),(20054,'_transient_timeout_wflginfl_00000000000000000000ffff4eae6ad4','1480143402','no'),(20055,'_transient_wflginfl_00000000000000000000ffff4eae6ad4','1','no'),(20059,'_transient_timeout_wflginfl_00000000000000000000ffff67cc250d','1480154234','no'),(20060,'_transient_wflginfl_00000000000000000000ffff67cc250d','1','no'),(20064,'_transient_timeout_wflginfl_00000000000000000000ffffddd7613a','1480160583','no'),(20065,'_transient_wflginfl_00000000000000000000ffffddd7613a','1','no'),(20071,'_transient_timeout_wflginfl_00000000000000000000ffffb1851ba0','1480168854','no'),(20072,'_transient_wflginfl_00000000000000000000ffffb1851ba0','1','no'),(20074,'_transient_timeout_wflginfl_00000000000000000000ffff012045b6','1480172424','no'),(20075,'_transient_wflginfl_00000000000000000000ffff012045b6','1','no'),(20078,'_transient_timeout_wflginfl_00000000000000000000ffffbad4d0db','1480172436','no'),(20079,'_transient_wflginfl_00000000000000000000ffffbad4d0db','1','no'),(20103,'_transient_timeout_wflginfl_00000000000000000000ffff70ce8860','1480205214','no'),(20104,'_transient_wflginfl_00000000000000000000ffff70ce8860','1','no'),(20105,'_transient_timeout_wflginfl_00000000000000000000ffff5cf13909','1480209920','no'),(20106,'_transient_wflginfl_00000000000000000000ffff5cf13909','1','no'),(20125,'_transient_timeout_wflginfl_00000000000000000000ffff4f99dc60','1480247891','no'),(20126,'_transient_wflginfl_00000000000000000000ffff4f99dc60','1','no'),(20129,'_transient_timeout_wflginfl_00000000000000000000ffff31943c3b','1480251738','no'),(20130,'_transient_wflginfl_00000000000000000000ffff31943c3b','1','no'),(20151,'updraft_combine_jobs_around','1480879767','yes'),(20167,'_transient_timeout_wflginfl_00000000000000000000ffff6d5f2627','1480313861','no'),(20168,'_transient_wflginfl_00000000000000000000ffff6d5f2627','1','no'),(20185,'_site_transient_timeout_browser_be739c6bf1571a85c9fef3f1ebdcd2df','1480961466','no'),(20186,'_site_transient_browser_be739c6bf1571a85c9fef3f1ebdcd2df','a:9:{s:8:\"platform\";s:7:\"Windows\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"54.0.2840.99\";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'),(20187,'_site_transient_timeout_theme_roots','1480358468','no'),(20188,'_site_transient_theme_roots','a:1:{s:4:\"Divi\";s:7:\"/themes\";}','no'),(20189,'_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca','1480399874','no'),(20190,'_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1480399874','no'),(20191,'_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca','1480356674','no'),(20192,'_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1480399875','no'),(20193,'_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:41:\"Dev Blog: WordPress 4.7 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4579\";s:7:\"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/11/wordpress-4-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4302:\"<p>The release candidate for WordPress 4.7 is now available.</p>\n<p>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.7 on <strong>Tuesday, December 6</strong>, but we need <em>your</em> help to get there. If you haven’t tested 4.7 yet, now is the time! To test WordPress 4.7, 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.7-RC1.zip\">download the release candidate here</a> (zip).</p>\n<p>WordPress 4.7 is a jam-packed release, with a number of features focused on getting a theme set up for the first time. Highlights include a <a href=\"http://2017.wordpress.net/\">new default theme</a>, video headers, custom CSS, customizer edit shortcuts, PDF thumbnail previews, user admin languages, REST API content endpoints, post type templates, and more.</p>\n<p>We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39353&stop_rev=39263&limit=200&verbose=on&sfp_email=&sfph_mail=\">quite a few refinements</a> since releasing Beta 4 a week ago, including usability and accessibility enhancements for video headers, media and page template support in starter content, and polishing of how custom CSS can be migrated to and extended by plugins and themes. The REST API endpoints saw a number of bugfixes and notably now have anonymous comment off by default.</p>\n<p>Not sure where to start with testing? Try setting up a fresh site on a new installation with Twenty Seventeen (hint: head into customizing your site before touching any pages or widgets) and taking notes on what you enjoyed and what got you stuck. For more details about what&#8217;s new in version 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-4/\">Beta 4</a> blog posts.</p>\n<p><strong>Think you’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’ll be able to <a href=\"https://core.trac.wordpress.org/report/5\">find them here</a>.</p>\n<p><strong>Developers</strong>, please test your plugins and themes against WordPress 4.7 and update your plugin’s <em>Tested up to</em> version in the readme to 4.7. 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 work hard to avoid breaking things. An in-depth field guide to developer-focused changes is coming soon on the <a href=\"https://make.wordpress.org/core/\">core development blog</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> And if you haven&#8217;t yet done so, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and send it on to your friends.</p>\n<p>Happy testing! And now for another <a href=\"https://profiles.wordpress.org/ramiabraham\">Rami Abraham</a> haiku break.</p>\n<p><em>Select your language</em><br />\n<em>Then let your users choose theirs</em><br />\n<em><code>get_user_locale()</code></em></p>\n<p><em>Theme authors rejoice</em><br />\n<em>Any option may employ</em><br />\n<em>Selective refresh</em></p>\n<p><em>Custom header video</em><br />\n<em>Make sure to <code>add_theme_support</code></em><br />\n<em>Bling above the fold</em></p>\n<p><em>A new template dawns</em><br />\n<em>A hierarchy member</em><br />\n<em>Post-type templates live</em></p>\n<p><em>PDF updates</em><br />\n<em>Pack a parade of polish</em><br />\n<em>Prettier previews</em></p>\n<p><em>Template Post Type: New</em><br />\n<em>Template Post Type: And Useful</em><br />\n<em>Template Post Type: Thing</em></p>\n<p><em>Let lists live lively</em><br />\n<em>Laud <code>wp_list_sort()</code></em><br />\n<em>Less laconic lists</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 24 Nov 2016 04:26: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:\"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:\"\";}}}}}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:45:\"WPTavern: Why Are You Thankful 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=64012\";s:7:\"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://wptavern.com/why-are-you-thankful-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3836:\"<p>Tomorrow is Thanksgiving in the US. It&#8217;s a time of reflection and an opportunity to express gratitude for the good things in life. In <a href=\"http://kitchensinkwp.com/podcast-e143-thankgiving-wordpress-2016/\">episode 143</a> of the KitchensinkWP podcast, host Adam Silver asked his two sons why they&#8217;re grateful for WordPress.</p>\n<p>&#8220;I am thankful for WordPress because it gives you a job for the household that we live in and it makes you happy which also makes me happy and smile,&#8221; Parker said. &#8220;I am thankful for WordPress because it makes you happy and it makes me happy and it provides a roof over our heads,&#8221; Carson said.</p>\n<p>Inspired by the episode, <a href=\"https://twitter.com/josheby\">Josh Eby</a> created the <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> hashtag on Twitter. Here are a few reasons why people are thankful for WordPress.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> List:<br />* Life I enjoy because of WP<br />* Lifelong, <a href=\"https://twitter.com/hashtag/Iceberg?src=hash\">#Iceberg</a> friendships<br />* Passionate <a href=\"https://twitter.com/ithemes\">@ithemes</a> team<br />* Customers who support us</p>\n<p>&mdash; Cory Miller (@corymiller303) <a href=\"https://twitter.com/corymiller303/status/801458665790304256\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">My <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> list: the awesome community, resources, WordCamps, building websites w/ WP, the people, oh and did I mention the people? ❤️</p>\n<p>&mdash; Justine Pretorious (@jpretorious) <a href=\"https://twitter.com/jpretorious/status/801334701306875905\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I’m <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> and particularly for <a href=\"https://twitter.com/hashtag/GenesisWP?src=hash\">#GenesisWP</a> because it’s afforded me opportunities I didn’t have before and awesome friendships.</p>\n<p>&mdash; Susan Ramsey (@onehappystudio) <a href=\"https://twitter.com/onehappystudio/status/801226653435396096\">November 23, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> &#8211; People. Connections. A New Career. Teaching. Learning. Ah-ha Moments. WordCamps. Friends. Support. Good Times.</p>\n<p>&mdash; BobWP (@bobWP) <a href=\"https://twitter.com/bobWP/status/801202449180524544\">November 22, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">I am <a href=\"https://twitter.com/hashtag/Thankful4WP?src=hash\">#Thankful4WP</a> because it gave me opportunity to leave the 9to5 job and start something of my own <a href=\"https://twitter.com/hashtag/myownbusiness?src=hash\">#myownbusiness</a> <a href=\"https://twitter.com/wfanzine\">@wfanzine</a> <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a></p>\n<p>&mdash; Sanjeev Mishra (@sonziv) <a href=\"https://twitter.com/sonziv/status/801164921861902336\">November 22, 2016</a></p></blockquote>\n<p></p>\n<p>I&#8217;m thankful for WordPress because of the opportunities it has provided me and I&#8217;ve met some amazing people because of it. If you&#8217;re thankful for WordPress please let us know why in the comments. From all of us at the Tavern, have a safe and enjoyable Thanksgiving.</p>\n<blockquote><p>Gratitude is a currency that we can mint for ourselves, and spend without fear of bankruptcy &#8211; Fred De Witt Van Amburgh</p></blockquote>\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, 24 Nov 2016 00:05: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"HeroPress: Building Confidence\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1457\";s:7:\"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://heropress.com/essays/building-confidence/\";s: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:5817:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/112316-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: The WordPress community give me confidence to talk to people & in front of people.\" /><p>I can clearly divide my life in two parts before and after marriage. Before I got married, I was staying in Chapra, a small city in Bihar. I had graduated in Botany, we only had electricity for 5-6 hours a day and no easy access to internet or computers.</p>\n<p>After my marriage, I came to Pune, a bigger city compared to Chapra and things changed for me. I was exposed to exciting world of technology, thanks to my husband who was then working at a startup. I had lot of free time so I decided to learn as much as I could just to see what I can do and started by learning MS Office, then Photoshop a bit and in the process I also learned HTML, CSS. I tried but couldn’t get much hang of JavaScript.</p>\n<p>Once I got confident that I can write decent HTML, I switched to learning CMS and first one I tried was Joomla, and for me it was very hard to understand, I had more question then I could find answers to. So on suggestion of my husband I switched to WordPress. I was able to quickly figure things out with WordPress and set up a blog for myself.</p>\n<p>In 2010, I joined WPoets as QA. In those days I had some free time.</p>\n<blockquote><p>To improve my skills I started looking into old reviews of the themes that were approved on WordPress themes repository.</p></blockquote>\n<p>This helped me understand theme file structures and various criteria to check themes for, I used skills acquired to ensure themes built by WPoets were also following these guidelines.</p>\n<p>Sometime in 2011, once I was confident that I have understood the process I joined the ‘Theme Review Team’ and started officially reviewing themes in the repository. This was a proud moment for me.  During my journey as theme reviewer I was helped and guided by Emil Uzelac, Chip Bennett &amp; Edward Caissie.</p>\n<p>In 2013, very first WordCamp was organised in Pune and I got a chance to talk about theme review process, this was my first ever public talk, and not being very good with English I choose to speak in Hindi. It was well received and many people wanted to know how they can get their themes approved. Again in 2015, I talked about what makes themes good in <a href=\"https://2015.pune.wordcamp.org/\">WordCamp Pune</a>. Thanks to WordCamps, I got to meet <a href=\"https://heropress.com/essays/making-family/\">Topher</a>, <a href=\"https://heropress.com/essays/breaking-the-silence/\">Mahangu</a> &amp; <a href=\"https://heropress.com/essays/finding-hope-darkness/\">Raghvendra</a>.</p>\n<p>Now a days, as I get less time between work and kids, instead of doing theme reviews I answer questions on WordPress.org support forum.</p>\n<blockquote><p>I&#8217;m an introvert and came from a small city so I&#8217;m always hesitant to talk to new people but the WordPress community give me confidence to talk with new people and in front of people.</p></blockquote>\n<p>This is a big achievement for me and my family feels proud of it.</p>\n<p>In WP community every one ready to support and help to move forward because of this nature I love to this community. I want to emphasize the support that I have received from WordPress community in general and members of theme review team in specific who helped me gain the knowledge necessary to do my work better. I also want to thank all the organisers of Pune WordPress Knowledge Exchange meetup group, and specially <a href=\"https://heropress.com/essays/ill-keep-looking-for-a-cms-unless-i-find-wordpress/\">Saurabh Shukla</a> who helped in improving my presentation skills for WordCamp Pune.</p>\n<p>All these happened because of WordPress community and via HeroPress platform I would like to thank everyone who makes this community rock.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Building Confidence\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Building%20Confidence&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Building Confidence\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fbuilding-confidence%2F&title=Building+Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Building Confidence\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/building-confidence/&media=https://heropress.com/wp-content/uploads/2016/11/112316-150x150.jpg&description=Building Confidence\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Building Confidence\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/building-confidence/\" title=\"Building Confidence\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/building-confidence/\">Building Confidence</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 23 Nov 2016 12:00: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Nisha Singh\";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:87:\"WPTavern: Automattic Clarifies .blog Landrush Process After Bait and Switch Allegations\";s:7:\"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=63947\";s:7:\"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/automattic-clarifies-blog-landrush-process-after-bait-and-switch-allegations\";s: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:5998:\"<p>Earlier this year, Knock Knock Whois There LLC, an Automattic subsidiary in partnership with Primer Nivel, <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\">won an auction</a> for around $19 million dollars to offer top-level .blog domains. On August 18th, an email was sent to users who signed up to <a href=\"https://dotblog.wordpress.com/\">Dotblog.WordPress.com</a> notifying them that they could apply and secure a .blog domain name before November 21st.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?ssl=1\"><img class=\"size-full wp-image-63953\" src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/ApplyForBlogDomain.png?resize=480%2C781&ssl=1\" alt=\"Applying For a Domain Name\" /></a>Applying For a Domain Name\n<p><a href=\"http://chrisschidle.com\">Chris Schidle</a> took advantage of the opportunity and secured chris.blog for $30 per year with a $220 application fee. People who apply for a domain only receive it if no one else applies for it. If there are multiple applications, the domain goes through an auction process between November 14-17.</p>\n<p>As the auction dates drew nearer and Schidle didn&#8217;t receive any information concerning the auction, he contacted support. Support confirmed that his application was not successful and he received a refund on November 15th. After asking support about the auction process, Schidle was informed that chris.blog ended up on a list of reserved domains that were not available for registration.</p>\n<p>In a blog post entitled &#8220;<a href=\"http://chrisschidle.com/the-dot-blog-bait-and-switch/\">The .blog Bait and Switch&#8221;</a>, Schidle expressed disappointment in Automattic&#8217;s lack of communication. &#8220;Perhaps it&#8217;s not fair to call this bait and switch,&#8221; Schidle said.</p>\n<p>&#8220;Really it was bait and refund, and certainly the situation would be far worse had they chosen to not make the application fee refundable. But still, I thought I had a chance at securing the domain. That was the logical conclusion given the terms they outlined via a successful application or winning an auction.&#8221;</p>\n<p>Other applicants <a href=\"https://twitter.com/cschidle/status/799287789430849536\">shared similar experiences</a> on Twitter.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> i feel your pain. they also took my $250 for my app for <a href=\"https://t.co/8H0dBZfKny\">https://t.co/8H0dBZfKny</a> &#8211; surprisingly poor handling for a comm\'s company</p>\n<p>&mdash; Chris Yim (@cyim) <a href=\"https://twitter.com/cyim/status/799343938024968193\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> I\'ve got stood up in the same manner for <a href=\"https://t.co/wqDOQWyF2X\">https://t.co/wqDOQWyF2X</a> Full-refund and no invitation to auction</p>\n<p>&mdash; Octavian Cioaca (@octasimo) <a href=\"https://twitter.com/octasimo/status/799295000240648192\">November 17, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/cschidle\">@cschidle</a> Same thing happened to me with <a href=\"https://t.co/1bRlWkdtmy\">https://t.co/1bRlWkdtmy</a>. Not cool.</p>\n<p>&mdash; Mark Barrera (@mark_barrera) <a href=\"https://twitter.com/mark_barrera/status/799366369733210114\">November 17, 2016</a></p></blockquote>\n<p></p>\n<p>In response to Schidel&#8217;s post, Paolo Belcastro <a href=\"https://my.blog/2016/11/17/about-reserved-domains/\">published an explanation</a> of the process behind activating some domains in the Founder’s Program while reserving others. Belcastro says that as a registrar, they&#8217;re able to activate up to 100 domain names. Some of the domains were given to <a href=\"https://my.blog/founders/\">third-parties</a> and 25 generic domains were given to WordPress.com to be shared for free with millions of users.</p>\n<p>The registrar reserved all one, two, and three-character domains from being registered. They also allowed Automattic employees to reserve a single domain each, some of which were first names.</p>\n<p>On behalf of .blog, Belcastro apologized to those who filed applications in August and later discovered the domains were not available.</p>\n<blockquote><p>Many registrars started taking pre-registrations for the Landrush period as early as last August. We do realize that some users were disappointed when they discovered that the domain names they had applied for were in fact attributed as part of the Founder’s program, or reserved, and wouldn’t be possible to register or auction at the end of Landrush.</p>\n<p>We would like to apologize to these users, but as the lists of Founder domains and Reserved ones weren’t final until just before Landrush, we couldn’t communicate them to registrars in advance (there is nothing registrars hate more than ever-changing lists of reserved domains).</p>\n<p>In addition, domains were removed as well as added to the lists, and we didn’t want to take the risk for registrars to refuse applications in September for domains that would be released in October.</p></blockquote>\n<p>To mitigate the uncertainty surrounding domain availability, fees were set up in a way so that only successful registrations would be charged. This provided a way to give full refunds to those with failed applications.</p>\n<p>Schidle appreciates the company&#8217;s apology, &#8220;It&#8217;s unfortunate that their reserved domain list wasn&#8217;t finalized prior to accepting applications, and that affected applicants like myself weren&#8217;t notified sooner (auctions were scheduled to begin on November 14th),&#8221; he said. &#8220;But I think they realize their mistake in handling that communication and their apology is appreciated.&#8221;</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, 19 Nov 2016 00:03: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: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: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:86:\"WPTavern: WordPress Passes 27% Market Share, Banks on Customizer for Continued 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:29:\"https://wptavern.com/?p=63735\";s:7:\"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:95:\"https://wptavern.com/wordpress-passes-27-market-share-banks-on-customizer-for-continued-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:18465:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/paint-brushes.jpg?resize=960%2C510&ssl=1\" alt=\"photo credit: Luis Llerena\" class=\"size-full wp-image-63978\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/265GAALCWG\">Luis Llerena</a>\n<p>WordPress now powers <a href=\"https://w3techs.com/technologies/details/cm-wordpress/all/all\" target=\"_blank\">27.1% of all websites on the internet</a>, up from 25% last year. While it may seem that WordPress is neatly adding 2% of the internet every year, its percentage increase fluctuates from year to year and the climb is getting more arduous with more weight to haul.</p>\n<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/wordpress-market-share.png?resize=1025%2C256&ssl=1\" alt=\"credit: w3techs.com\" class=\"size-full wp-image-63933\" /></a>credit: <a href=\"https://w3techs.com/technologies/history_overview/content_management/all/y\">w3techs.com</a>\n<p>In January 2015, Mullenweg said the next goal for WordPress was <a href=\"https://wptavern.com/how-important-is-jetpack-on-wordpress-road-to-50-market-share\" target=\"_blank\">to achieve 50% market share</a> (the majority of websites) and he identified Jetpack as a key factor in preventing WordPress&#8217; decline, a controversial statement delivered at Pressnomics. At that time Automattic was secretly working on <a href=\"https://wptavern.com/early-reviews-show-applications-like-calypso-are-the-future-of-wordpress\" target=\"_blank\">Calypso</a>, WordPress.com&#8217;s JavaScript-powered interface, but did not unveil the project until November 2015.</p>\n<p>It&#8217;s difficult to say what effect Calypso has had on WordPress&#8217; market share, as the w3tech&#8217;s 27% stat covers mostly self-hosted sites. Following up with him a year later, Mullenweg estimates that less than 10% of those sites are hosted on WordPress.com.</p>\n<p>&#8220;It does look like about a quarter of it is using Jetpack, though, and that has grown since Calypso was released,&#8221; he said. &#8220;Remember &#8211; Calypso is for Jetpack sites as well as WP.com.&#8221;</p>\n<p>In a recent <a href=\"https://wptavern.com/wpweekly-episode-240-interview-with-matt-mullenweg-2016\" target=\"_blank\">interview on WPWeekly</a>, Mullenweg said he is also optimistic that the WooCommerce acquisition and <a href=\"https://wptavern.com/automattic-to-oversee-the-sale-and-registration-of-top-level-blog-domains\" target=\"_blank\">Automattic&#8217;s sale and management of the .blog domain</a> extension will contribute &#8220;another 5-10% each to that market share.&#8221; In fact, there is a team inside Automattic called Team 51 that works on strategies for getting the market share to 51%.</p>\n<p>&#8220;For getting to 51% and beyond &#8211; it&#8217;s more than just blogs and more than just websites,&#8221; Mullenweg said. &#8220;We need to do stores well, we need to do wikis well, we need to do real estate sites well, we need to do restaurants well &#8211; all these things that may be outside what you normally think of as a core WP experience.&#8221;</p>\n<p>In order to provide the best content-creation experience on the market, in any niche, WordPress has some major work to do. The software is in imminent danger of being eclipsed by newer competitors if its core features don&#8217;t improve, especially when it comes to customizing a new site. Jetpack cannot single-handedly solve WordPress&#8217; onboarding problem.</p>\n<h3>WordPress&#8217; Weakest Link Is Also Its Greatest Opportunity</h3>\n<p>In the past Mullenweg has identified customization as the weakest link in WordPress but also one of its most important areas for improvement, saying, &#8220;The Customizer is everything.&#8221; During the <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\" target=\"_blank\">2015 State of the Word</a> address he said, &#8220;Customization is the single biggest opportunity for improving the WordPress experience.&#8221; I asked him if he thinks the necessary improvements to make the software more competitive need to come from core itself or if commercial products could introduce game changers for the Customizer, the editor, and other problem areas of WordPress.</p>\n<p>&#8220;I think to have an impact on WordPress&#8217; growth improvements to customization have to happen in core or Calypso/Jetpack, otherwise there isn&#8217;t enough reach,&#8221; Mullenweg said. &#8220;It doesn&#8217;t matter how great a commercial product is &#8211; being behind a paywall will mean it won&#8217;t reach enough people to make a dent in WP&#8217;s growth curve.&#8221; He outlined how he sees the Customizer as a critical component of WordPress&#8217; future:</p>\n<blockquote><p>I think the needed improvements will only come from a customizer and theme system which is flexible, intuitive, and instantaneous, which might also need to break backwards compatibility, and a post editor which leverages the same language, patterns, interface, and concepts. We need to use and adopt a React / Redux approach to the javascript, like Calypso, and rename or make irrelevant concepts like Menus which are just plain confusing to people.</p></blockquote>\n<p>Customizer improvements have been a focus throughout 2016 and the feature&#8217;s small team of contributors have made major strides towards improving the underlying architecture to build upon.</p>\n<p>&#8220;It&#8217;s <em>customization</em> that is the key need here, not necessarily the existing &#8216;Customizer&#8217; interface that we have today,&#8221; <a href=\"https://make.wordpress.org/core/components/customize/\" target=\"_blank\">Customize</a> component maintainer Weston Ruter said. &#8220;The key need WordPress has is to be able to live preview more functionality in WordPress, as Helen tweeted here:&#8221;</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What if instead of opposing \"shoving more stuff into the customizer\" we supported \"adding live previews to WordPress functionality\"?</p>\n<p>&mdash; Helen 侯-Sandí (@helenhousandi) <a href=\"https://twitter.com/helenhousandi/status/778255682462183424\">September 20, 2016</a></p></blockquote>\n<p></p>\n<p><a href=\"https://wptavern.com/customizer-responsive-preview-and-selective-refresh-to-be-merged-into-wordpress-4-5\" target=\"_blank\">Selective refresh</a> was added earlier this year in 4.5, giving WordPress the ability to preview elements without full page reloads. This is one way the Customize API addresses that &#8220;instantaneous&#8221; aspect Mullenweg outlined above.</p>\n<p>&#8220;The <a href=\"https://make.xwp.co/2016/04/29/customize-posts-v0-5-released/\" target=\"_blank\">Customize Posts</a> plugin is an effort to rebuild the post editor from the ground up with live preview for all changes to post data and postmeta at the foundation,&#8221; Ruter said. &#8220;It&#8217;s a JavaScript-first approach to the post editing experience. No more waiting for a full page reload to save a draft. No more clicking a preview button to load the post in a new window. All of the changes are saved as drafts and previewed live. It&#8217;s reusing the TinyMCE editor component.&#8221;</p>\n<p>WordPress may be looking at <a href=\"https://wptavern.com/customize-posts-plugin-and-selective-refresh-are-paving-the-way-for-front-end-editing-powered-by-the-customizer\" target=\"_blank\">front-end editing powered by the Customizer</a> in the not-too-distant future. Ruter and contributors are also working towards using the Customize API to power the next generation of widgets in core, which would use JS for UI and open the door for widgets to be managed via the REST API.</p>\n<p>&#8220;Changesets, coming in 4.7, is the most far-reaching architectural improvement to the customizer since its inception,&#8221; Ruter said. &#8220;Changesets allow for live preview functionality to be de-coupled from the current Customizer interface. This architecture allows for live preview to be developed in other contexts, namely on the frontend and in REST API-driven apps and headless sites.&#8221; Ruter anticipates the REST API endpoints for managing changesets to come in 4.8.</p>\n<p>The <a href=\"https://github.com/xwp/wp-js-widgets\" target=\"_blank\">WP JS Widgets</a> project shifts widgets away from their heavy reliance on PHP and creates a JavaScript foundation in the Customizer that allows for any library to be used to build widget controls.</p>\n<p>&#8220;A control can actually be implemented using any JS technology stack,&#8221; Ruter said. &#8220;In the JS Widgets plugin I have a demonstration of widget controls in the customizer being built using the customizer Element, Backbone.js, and also React.&#8221; The plugin currently implements <a href=\"https://github.com/xwp/wp-js-widgets/tree/master/php/widgets\" target=\"_blank\">three core widgets</a> and contributors are working on more.</p>\n<p>&#8220;It&#8217;s somewhat of a &#8216;Widgets 3.0&#8217; in core, focused on what they would look like in the Customizer first,&#8221; Ruter said, &#8220;where the widget instance data is stored in a setting, and the control listens to changes to that setting and updates its UI to reflect the changes in the underlying instance data.&#8221;</p>\n<p>Although this particular project is being built to be JavaScript-library agnostic, Ruter said he thinks there would be value in exploring the use of React/Redux in a “Customizer 2.0” interface:</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">It would be great to experiment with re-implementing the Customizer UI (pane, panels, sections, controls) in React. <a href=\"https://twitter.com/hashtag/wcus?src=hash\">#wcus</a></p>\n<p>&mdash; Weston Ruter ⚡ (@westonruter) <a href=\"https://twitter.com/westonruter/status/672830761872064513\">December 4, 2015</a></p></blockquote>\n<p></p>\n<h3>Taking the Customizer Beyond First Impressions</h3>\n<p>Ruter said he would have a difficult time proposing to build a client site that depended on the WordPress admin for site management and content authorship.</p>\n<p>&#8220;A lot of the work we&#8217;ve done at XWP for the past few years has been building on the Customizer to provide the editorial experiences that I think are lacking in the WP admin,&#8221; Ruter said. &#8220;We invest heavily in the customizer because we see it as the best foundation that WordPress has to offer to provide the experiences we want to deliver to our clients.&#8221;</p>\n<p>If the Customizer is so critical to WordPress&#8217; success, it&#8217;s curious that the contributor team remains relatively small and few companies are investing in the feature specifically. <a href=\"https://xwp.co/\" target=\"_blank\">XWP</a> invests heavily in Customizer development and a great deal of that is prototype work in the form of feature plugins such as Customize Snapshots, Customize Posts, and several <a href=\"https://github.com/xwp?q=wp-customize\" target=\"_blank\">other plugin projects</a>.</p>\n<p>&#8220;I don&#8217;t know for sure why more developers across the WordPress community aren&#8217;t doing more with the customizer,&#8221; said Ruter, who is CTO at XWP. &#8220;It may be in part a perception problem, where it has seemingly been stuck with a negative reputation. Or it could be a technology problem, where the Customizer is vastly different from other areas of WordPress being a JavaScript single-page application.&#8221;</p>\n<p>When the Customizer was first introduced it included support for &#8216;option&#8217; and &#8216;theme_mod,&#8217; followed by widgets and navigation menus a bit down the road. The WordPress community didn&#8217;t have a full understanding of the scope and capabilities of the Customizer for addressing some of the project&#8217;s chief concerns, including content authorship with live previews. Users simply saw a constrained UI they didn&#8217;t like using to customize themes. Most users had no concept of the Customizer providing the architectural underpinnings of other aspects of WordPress.</p>\n<p>&#8220;Part of the problem is a lack of contributors,&#8221; Ruter said. &#8220;But even more than that, the biggest problem is one of having a shared vision. When the WP community throws hate on customizer improvements with each new release, it&#8217;s somewhat demotivating.</p>\n<p>&#8220;If the community realized the vision behind and appreciated a full admin experience that had live preview and staging of changes, then that would make a huge difference,&#8221; Ruter said. He and contributors find it challenging to articulate the scope and they are considerably short-handed.</p>\n<p>&#8220;It could be a problem with getting ramped up,&#8221; he said. &#8220;But that&#8217;s been the mandate for the WP community as a whole &#8211; to learn JavaScript deeply. I say, why not learn JavaScript deeply by building on the customizer?&#8221;</p>\n<h3>GoDaddy Plans to Invest in Core Customizer Improvements</h3>\n<p>GoDaddy is a surprising company to emerge over the past couple of years as another key player on WordPress&#8217; road to 50% market share. WordPress product and service companies, along with hosts, are keenly interested in seeing the software continue its market dominance.</p>\n<p>&#8220;It&#8217;s very important to GoDaddy that WP market share increases,&#8221; Gabe Mays, head of WordPress products at GoDaddy, said. &#8220;We&#8217;re deeply invested in the success of the WordPress community, not only because many of our customers use it, but also because of what it represents.&#8221;</p>\n<p>Mays reports that approximately 1/3 of all GoDaddy sites and half of all new sites are running on WordPress. With millions of customers using the software, the company took the initiative to create a new <a href=\"https://wptavern.com/godaddy-launches-new-onboarding-experience-for-wordpress-customers\" target=\"_blank\">onboarding experience specifically for WordPress customers</a>. I asked Mays if GoDaddy is concerned about competitors like Wix and Weebly cutting into the WordPress market share.</p>\n<p>&#8220;I don&#8217;t know if &#8216;worry&#8217; is the right word, because 1) we know the problem and 2) we&#8217;re capable of addressing it,&#8221; Mays said. &#8220;As a community we either care enough to fix it or we don&#8217;t. There are negative consequences associated with the latter that pose an existential threat to the community.&#8221;</p>\n<p>Mays has been involved with the WordPress community for the past 10 years and is working with GoDaddy to improve the new user experience.</p>\n<p>&#8220;Part of the issue we’re experiencing now is that WordPress benefitted from such strong product market fit and, subsequently, such high growth that there weren’t the typical feedback mechanisms forcing us to make things like the UX better,&#8221; Mays said. &#8220;On the other hand, our competitors fought hard and iterated for every basis point of market share they have. We’re like that natural athlete that got to the top with natural talent, but now need to master the basics, get our form right, etc. to stay on top as the game changes.&#8221;</p>\n<p>GoDaddy&#8217;s new onboarding experience is a stab at improving this UX and Mays said the company has significant WordPress core improvements in the works to provide a better first-use experience.</p>\n<p>&#8220;I’m happy to say we’ll also be contributing these improvements back to core,&#8221; he said. &#8220;We&#8217;re happy to have had Aaron Campbell join us as our first core contributor earlier this year and we&#8217;re working on more ways to accelerate our core contribution efforts.&#8221;</p>\n<p>Mays said GoDaddy is planning to submit core contributions to the Customizer and related core components in the near future but would not disclose any specifics at this time.</p>\n<p>&#8220;Hosts benefit immensely from WordPress and as hosts we can collectively do a lot more to move WordPress forward,&#8221; Mays said. &#8220;We want to lead by example here and have big plans for this in 2017.&#8221;</p>\n<p>WordPress product and service companies are also deeply invested in the software&#8217;s success and eager to see its market share grow. Cory Miller, CEO of <a href=\"https://ithemes.com/\" target=\"_blank\">iThemes</a>, one of WordPress&#8217; earliest theme companies, said growth is one potential sign of WordPress&#8217; health.</p>\n<p>“As WordPress has grown, so have we with it,&#8221; Miller said. &#8220;The opposite of growth is scary — it’s stagnation or decline. Many have predicted that in WordPress for a long time, but it continues to grow and push new limits, like the defiant teenager it is.”</p>\n<p>Miller said one of his concerns with competitors in the space is that they have started to cut into the lower  or lowest end of the market, &#8220;the do-it-yourselfers that many of us count as a key part of our customer base.&#8221;</p>\n<p>&#8220;WordPress is fantastic, and so are all the innovative tools and services around it, from themes, plugins to hosting,&#8221; Miller said. &#8220;But I&#8217;m increasingly seeing the reason why many, on perhaps the bottom end of the market, say, &#8216;I don’t want to mess with updates, or worrying about security, or pulling 15 separate tools together to do what I need. I just want a simple website, I want everything in one bundle, mostly done for me, and so I’ll just go with SquareSpace or Weebly.\'&#8221;</p>\n<p>Although WordPress provides so much more in terms of community and extensibility when compared to Wix, Weebly, and Squarespace, getting started is the hardest part for new users. This is where tools like Jetpack and GoDaddy&#8217;s onboarding experience are useful for giving users what they need to succeed with WordPress.</p>\n<p>Even with a strong background in HTML and CSS, customizing a WordPress site can be challenging. Your site will never feel like your home on the web if you struggle to customize it to suit your preferences. The good news is that the WordPress project lead, contributors, hosts, and product companies are working together to improve customization in different, complementary ways in order to ensure the future of the project in an increasingly competitive market.</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, 18 Nov 2016 22:48:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:97:\"WPTavern: 2nd Global WordPress Translation Day Brings 780 Translators Together Across 133 Locales\";s:7:\"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=63915\";s:7:\"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:108:\"https://wptavern.com/2nd-global-wordpress-translation-day-brings-780-translators-together-across-133-locales\";s: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:6919:\"<p>The second <a href=\"https://wptranslationday.org/\" target=\"_blank\">Global WordPress Translation Day</a> was held November 12 and the <a href=\"https://make.wordpress.org/polyglots/2016/11/16/notes-from-the-polyglots-chats-on-november-16th/\" target=\"_blank\">stats</a> released this week show the event was an even greater success than the first one. In April, <a href=\"https://wptavern.com/global-wordpress-translation-day-draws-448-participants-from-105-countries\" target=\"_blank\">WP Translation Day connected 448 participants</a> through both online and in-person translation events. The second event brought 780 translators together, a 74% increase in participation. Attendance at the local events increased from 39 in April to 67 in November.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Looking at <a href=\"https://twitter.com/hashtag/WPTranslationDay?src=hash\">#WPTranslationDay</a> stats I can’t be more grateful to <a href=\"https://twitter.com/humanmadeltd\">@humanmadeltd</a> for supporting my time for the <a href=\"https://twitter.com/hashtag/WordPress?src=hash\">#WordPress</a> Polyglots. So lucky❤️ <a href=\"https://t.co/NwSjYOyUBX\">pic.twitter.com/NwSjYOyUBX</a></p>\n<p>&mdash; Petya Raykovska (@petyeah) <a href=\"https://twitter.com/petyeah/status/798890778692988929\">November 16, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;We really wanted to build on top of what was already there, reach more people, and bring more important topics front and center,&#8221; said Petya Raykovska, one of the members of the Polyglots Leadership Team. Participants had the opportunity to discuss the upcoming internationalization features in WordPress with core developers, including a session by Pascal Birchler and a panel led by John Blackbourn. Translators also discussed gender neutral languages in the WordPress UI, prompted by a discussion around gender neutral German.</p>\n<p>Raykovska said one of the goals of the second event was to &#8220;bring more people on screen so everyone can feel like they&#8217;re a part of a truly global event.&#8221; Local participation for the live streaming meetups increased from April.</p>\n<p>&#8220;The activities in India have kept their strong growth rate &#8211; we had eight events last time, this time they were 14, with Mumbai even having two events,&#8221; Raykovska said. &#8220;For the first time we had events in Russia and in South Africa.&#8221;</p>\n<p>Raykovska said she&#8217;s hoping the Polyglots Leadership Team will soon begin developing events in African regions, following patterns of success in Asia and Europe.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Thank you <a href=\"https://twitter.com/ResellerClub\">@ResellerClub</a> for hosting us today for <a href=\"https://twitter.com/hashtag/WPTranslationday?src=hash\">#WPTranslationday</a> <a href=\"https://t.co/vfr9l0D50V\">pic.twitter.com/vfr9l0D50V</a></p>\n<p>&mdash; WordCamp Mumbai (@WCMumbai) <a href=\"https://twitter.com/WCMumbai/status/797397743467659264\">November 12, 2016</a></p></blockquote>\n<p></p>\n<h3>Global WordPress Translation Day Expands Into South Africa</h3>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/cape-town-wptranslation-day.jpg?resize=1025%2C548&ssl=1\" alt=\"Cape Town WP Translation Day - credit: Jon Bossenger\" class=\"size-full wp-image-63927\" /></a>Cape Town WP Translation Day &#8211; credit: <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\">Jon Bossenger</a>\n<p>South Africa has 11 languages and Raykovska said the event gave a big boost to the translation community there, with Xhosa being translated for WordPress for the first time. Xhosa is spoken by 7.6 million people, which is approximately 18% of the South African population.</p>\n<p>&#8220;Africa has a huge potential and a lot of wonderful, enthusiastic people,&#8221; she said. &#8220;There will be more WordCamps there in 2017 and hopefully more activity on the translation side.&#8221;</p>\n<p>Jon Bossenger and Hugh Lashbrooke, who co-organized the Cape Town event, had attendees translating WordPress into Xhosa, Sotho, and Setswana.</p>\n<p>&#8220;By the end of the day we had two translation files for these languages that we’ll be looking to submit requests to be added as locales for WordPress,&#8221; Bossenger said in his recap <a href=\"https://wpcapetown.co.za/2016/11/14/wordpress-global-translation-day-recap/\" target=\"_blank\">post</a>. &#8220;We’re almost halfway towards adding all 11 official languages, just in one day.&#8221;</p>\n<p>Trisha Cornelius, co-organizer the WP Johannesburg Meetup, organized the in-person translation event in Johannesburg where the team made major progress and assisted the Cape Town team in getting their languages started.</p>\n<p>&#8220;We managed to get Xhosa approved in time for us to translate some strings for our translation day event,&#8221; Cornelius said. &#8220;We translated into Afrikaans (which is at over 95% so we are pushing to get to 100%) and South African English as well. People who were at the Cape Town event have volunteered to become translators for Tswana and an attendee at our event has volunteered to become GTE for Zulu.&#8221;</p>\n<p>Cornelius said the excitement of live streaming and connecting with Cape Town and others around the world could have easily made for an event that spanned longer than three hours.</p>\n<p>&#8220;The biggest success was in showing people how easy translation is,&#8221; Cornelius said. She hopes the translations will make WordPress easier for more people in South Africa and help more people get onto the web.</p>\n<p>&#8220;South Africa has an interesting case in that we have a clear racial split between being multi-lingual and not,&#8221; Cornelius said. &#8220;The majority of our population speaks English/Afrikaans as a second language and I would love to see WordPress available in all 11 of our official languages so that WP users can choose to use WP in their mother tongue.&#8221;</p>\n<p>Cornelius said language accessibility in South Africa is less of a challenge than actual access to computers with the Internet, but they are making progress in Johannesburg to make the internet more widely available.</p>\n<p>&#8220;Especially with the prevalence of smart phones, I think having WordPress in more indigenous languages will mean that we are able to hear more of each others voices which we desperately need,&#8221; Cornelius said.</p>\n<p>Overall, the WordPress Translation Day participants translated a total of 60,426 strings, up from 40,350 in April. This includes popular plugins and themes in addition to WordPress core. A video replay of the event can be found on <a href=\"https://www.crowdcast.io/e/gwtd2\" target=\"_blank\">Crowdcast.io</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:\"Thu, 17 Nov 2016 23:20:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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: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:29:\"Ping-O-Matic: Bloglines Added\";s:7:\"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:59:\"http://pingomatic.wordpress.com/2006/04/30/bloglines-added/\";s:7:\"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://blog.pingomatic.com/2006/04/30/bloglines-added/\";s: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:839:\"<p>A few days ago we added Bloglines to our list of RPC ping receivers, worked out a few issues with them, and now <a href=\"http://www.bloglines.com/about/news#103\">they&#039;ve announced their pinging service</a>.</p>\n<p>I&#039;ll be adding them to the web form soon. :)&nbsp;</p><br /><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/categories/pingomatic.wordpress.com/11/\" /> <img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/tags/pingomatic.wordpress.com/11/\" /> <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/pingomatic.wordpress.com/11/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/pingomatic.wordpress.com/11/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=blog.pingomatic.com&blog=68432&post=11&subd=pingomatic&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, 17 Nov 2016 21:45: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:77:\"WPTavern: WPWeekly Episode 254 – WP eCommerce, WordCamp US 2017, and Upvato\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=63903&preview=true&preview_id=63903\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"https://wptavern.com/wpweekly-episode-254-wp-ecommerce-wordcamp-us-2017-and-upvato\";s: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:2450:\"<p>In this short episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss a handful of news stories making headlines. We discuss a recent security update to the WP eCommerce plugin, Upvato disappearing only to reappear in the near future, and Nashville, TN hosting WordCamp US in 2017 and 2018. Last but not least is Marcus&#8217; plugin picks of the week.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/wp-ecommerce-3-11-4-patches-sql-injection-vulnerability\">WP eCommerce 3.11.4 Patches SQL Injection Vulnerability</a><br />\n<a href=\"https://wptavern.com/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\">Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider</a><br />\n<a href=\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-2018\">Nashville to Host WordCamp US 2017-2018</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/show-featured-image-size-in-admin-topbar\">Show Featured Image Size in Admin TopBar</a> displays the image size for the featured image in the admin top bar. This makes it convenient to know how large features images need to be without looking it up.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-mqtt/\">WP-MQTT</a> connects WordPress to the Internet of Things. This plugin can automatically send MQTT messages to compatible devices when something happens on your site. MQTT is a machine-to-machine (M2M) / Internet of Things connectivity protocol. It was designed as an extremely lightweight publish/subscribe messaging transport.</p>\n<p><a href=\"https://wordpress.org/plugins/hello-trumpy/\">Hello Trumpy</a> is a plugin aimed at making WordPress great again!</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 23rd 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 #254:</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, 17 Nov 2016 09:20:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:80:\"WPTavern: Visible Edit Shortcuts in WordPress 4.7 Makes Customizing Sites Easier\";s:7:\"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=63881\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:91:\"https://wptavern.com/visible-edit-shortcuts-in-wordpress-4-7-makes-customizing-sites-easier\";s: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:3913:\"<p>Earlier this year, Automattic added visual icons to the WordPress.com customizer after user testing showed users tried clicking on the parts of the page they wanted to edit, rather than searching through the menus in the customizer. In an effort to see if the <a href=\"https://core.trac.wordpress.org/ticket/27403\">same could be done</a> for the self-hosted version of WordPress, <a href=\"https://core.trac.wordpress.org/ticket/27403#comment:16\">Payton Swick open sourced</a> Automattic&#8217;s work into a plugin and <a href=\"https://github.com/Automattic/customize-direct-manipulation\">placed it on GitHub</a>.</p>\n<p>The plugin added persistent icons to show users which parts of a site can be customized when the customizer preview pane is open. After months of collaboration between Automatticians and the Customize component maintainers, the icons were merged into WordPress 4.7 and are officially called visible edit shortcuts. The icons visually inform users which elements can be edited in a theme.</p>\n<p>The icons appear when the customizer is open and directs users to settings that control an element. For example, clicking the icon next to the site tagline in the image below opens the Site Identity section of the customizer and makes the Tagline field active. Visible shortcuts are an extension of the Shift-click to edit keyboard shortcut that was added in WordPress 3.9.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?ssl=1\"><img class=\"size-full wp-image-63883\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerShortcutButtons.png?resize=1025%2C544&ssl=1\" alt=\"Visible Edit Shortcut Buttons\" /></a>Visible Edit Shortcut Buttons\n<p>The icon approach was largely inspired by WordPress.com which has a similar feature in its customizer. Nick Halsey, Customize component maintainer, <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">describes in detail</a> the history of the feature and what theme authors need to do to support it.</p>\n<p>Unlike many of the theme specific updates in the past where developers can add support by using add_theme_support, supporting visible edit shortcuts is more comprehensive. Theme authors will need to add support for <a href=\"https://make.wordpress.org/core/2016/02/16/selective-refresh-in-the-customizer/\">selective refresh</a>, <a href=\"https://make.wordpress.org/core/2016/03/22/implementing-selective-refresh-support-for-widgets/\">selective refresh for widgets</a>, and <a href=\"https://make.wordpress.org/core/2015/07/29/fast-previewing-changes-to-menus-in-the-customizer/\">selective refresh for menus</a>.</p>\n<p>&#8220;Edit shortcuts will be enabled by default for all themes, but are contingent on themes supporting selective refresh,&#8221; Halsey said. Additionally, a small amount of CSS may be required to properly position the icons.</p>\n<p>Adding visual elements that connect parts of a theme to the customizer should take some of the guesswork out of editing themes. Instead of spending time browsing through various customizer panels to edit a part of a site, users can click a button and the right customizer panel will open automatically with the settings you need. This can be especially useful for themes that have a lot of customizer sections.</p>\n<p>I tested visible edit shortcuts using the Twenty Seventeen theme in WordPress 4.7 beta 4 and didn&#8217;t encounter any issues. The team is strongly encouraging users to test with as many themes as possible. If you use a theme where the shortcut icons are not displayed, please contact the theme author, request that they add support, and refer them to <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the make core blog post which explains how to do so</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:\"Thu, 17 Nov 2016 08:54: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: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:49:\"WPTavern: Nashville to Host WordCamp US 2017-2018\";s:7:\"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=63871\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://wptavern.com/nashville-to-host-wordcamp-us-2017-2018\";s: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:5593:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nashville.jpg?resize=1015%2C524&ssl=1\" alt=\"photo credit: Viv Lynch Westward - (license)\" class=\"size-full wp-image-63884\" /></a>photo credit: Viv Lynch <a href=\"http://www.flickr.com/photos/68894626@N00/30070498810\">Westward</a> &#8211; <a href=\"https://creativecommons.org/licenses/by-nc-nd/2.0/\">(license)</a>\n<p><a href=\"https://2016.us.wordcamp.org/\" target=\"_blank\">WordCamp US</a> attendees are counting down the days until the event kicks off in Philadelphia in two weeks but preparations for 2017 and 2018 are already underway. Yesterday Matt Mullenweg <a href=\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\" target=\"_blank\">announced</a> that Nashville has won the bid to host WordCamp US for the next two years. According to Randy Hicks, one of the organizers, the new <a href=\"http://www.nashvillemusiccitycenter.com/\" target=\"_blank\">Music City Center</a> venue, which was finished in 2013, has been reserved from Thursday, November 30, 2017, to Sunday, December 3 but the camp will take place Friday &#8211; Sunday. The venue has confirmed the ability to host 3,000 &#8211; 5,000 attendees.</p>\n<p>&#8220;We have a brand new venue that is pretty amazing but Nashville is very centrally located to handful of other cities that all have their own WordCamps,&#8221; Hicks said. &#8220;I think there are about seven camps within 4-5 hours. The WP community around Nashville is rather strong.&#8221;</p>\n<p>Over the past few years the local WordPress community has grown and WordCamp Nashville sold 325 tickets at its 2016 event.</p>\n<p>&#8220;I&#8217;ve been coming to the meetups since the very first one and have been an organizer since about the same time as well as John Housholder,&#8221; Hicks said. &#8220;We&#8217;ve seen the community explode every year after WordCamp, but 2014 and 2015 have been huge growth years for Nashville as a whole and the meetup has reflected those numbers.&#8221;</p>\n<p>The application process included nailing down a venue, creating a budget, and gathering specific details about wifi capabilities, room capabilities, hotel availability, and date availability. Organizers from both the Nashville team and the Denver team (another finalist) agreed that the application time frame was somewhat constrained.</p>\n<p>&#8220;I thought the time frame between start and submission was pretty short, but I think that depends on who is submitting and how informed they are on their local venue,&#8221; Hicks said. &#8220;Ours was really hard to get information from.&#8221;</p>\n<p>The Denver team had a similar struggle with locking down a venue without certainty of being able to fully book the reservation.</p>\n<p>&#8220;There was what I would consider to be a semi-fanatical obsession with the first weekend in December, which was flatly unavailable at the convention center here,&#8221; said Drew Jaynes, one of the organizers who applied on behalf of Denver.</p>\n<p>&#8220;To give you some perspective, at the time that we applied, March 2016, there were two available weekends left for the Colorado Convention Center &#8211; two in all of 2017. The end of August and the middle of December. To organize an event of this size on what would be considered relatively short notice for a city as popular as Denver was essentially a fool&#8217;s errand.&#8221;</p>\n<p>The Nashville organizing team was able to secure its venue for early December dates, but a wider range of acceptable dates might be one way for WordCamp Central to improve the process for next year. This would give more cities the opportunity to submit competitive applications, as venues that can accommodate the expected size of WCUS are in high demand in popular cities.</p>\n<p>&#8220;We had a great set of communities apply so it was tough to pick just one,&#8221; WordCamp Central representative Cami Kaos said. &#8220;In the end we went with Nashville for WordCamp US 2017-2018 because it seems like a great location for attendees, they had a beautiful venue that could accommodate an event of this size as we grow, and the dynamics between both teams were a natural fit.&#8221;</p>\n<p>If you&#8217;re interested in learning more about Nashville, the organizing team has created a <a href=\"http://wpnashville.com/wcus/\" target=\"_blank\">page</a> that includes some favorite local attractions and rankings:</p>\n<ul>\n<li>Ranked within the top 10 on Cvent ’s list of Top 50 Meeting Destinations in the United States. (August 2015)</li>\n<li>Named #3 Best Convention City in the 10 Best USA Today Readers’ Choice Awards</li>\n<li>Ranked #1 Friendliest City in America by Travel and Leisure (April 2015)</li>\n<li>Listed in Collaborate Magazine’s list of the Top 12 Foodie Cities for Meetings</li>\n</ul>\n<p>Nashville is centrally located for a relatively short drive or flight from anywhere in the US and should have ample options for accommodation. The city won the bid to host the WordCamp out of six applicants and Matt Mullenweg&#8217;s announcement post indicates that there were multiple local communities capable of hosting the event in the future.</p>\n<p>&#8220;Based on the other great applications we got I’m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia,&#8221; Mullenweg said.</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, 16 Nov 2016 21:50: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: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:55:\"HeroPress: Actually, WordPress didn’t change my life.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1490\";s:7:\"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:\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:9579:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/111616-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: If we serve the people around what we\'re doing, we ourselves will grow, develop & change alongside the people we serve.\" /><p>My story starts in high school as a girl with a technical bent, in a small country town just as computers were becoming mainstream but well before they were in everyone’s home. (I was in high school when Apple came to school and showed off this new fangled thing they called a mouse…). We were taught BASIC and Pascal and I actually really enjoyed tinkering with programming, but no one thought to say, “Dee, you look like you’re good at this, you should pursue it…” I mean, I was a girl (and girls didn’t ‘DO’ computers), and no one in the circles I moved in really had any idea where this technology revolution would take us.</p>\n<p>The truth is I wasn’t particularly ambitious, I didn’t have any kind of clue what I wanted to be ‘when I grew up’ so I allowed myself to be gently steered by my parents into leaving school before the end of my final year when I was encouraged to apply for a job in a bank.</p>\n<p>I got the job and started in the MICR processing department, encoding cheques with magnetic text, and I finished as a teller 3 years later (and boy was I terrible at balancing the books at the end of the day &#8211; I was much better at chatting to the customers!).</p>\n<p>Financial independence was the only name of that game; for me there was very little else to recommend the job, so I saved all the money I could and took off from both the bank, and my homeland (New Zealand) in very short order as a young, naive 20 year old primed to spend the next 3 years exploring the world. And by the world, I mean the US and Europe…</p>\n<p>That first mouse had come out in 1983, WordPress was founded in 2003 and in those 20 years the world changed. While it was doing that I was at various times being a nanny, working in child care centres, working in customer support, temping, and generally &#8216;working to live&#8217; in whatever way felt right at the time. However, in 1999 I packed up my bags once again, moved from New Zealand to Australia and took a place at a performing arts school where I honed my singing and performance skills and volunteered my time to our music director who was starting to experiment with sending out HTML newsletters and updates via email.</p>\n<blockquote><p>And so my personal revolution began.</p></blockquote>\n<p>On what I think was the day after I graduated from that course I walked into a full time role as that music director’s assistant and began my journey back to code. It was part of my job to edit those HTML newsletters and send them out every week. I went from there to buying books about coding for the web, experimenting on my home built PC making web pages. I’m sure like a lot of us, I remember the thrill of creating that first HTML file and seeing a ‘Hello World’ or similar heading rendered in the browser… from there I was completely hooked.</p>\n<p>By 2004 I was working full time as a webmaster, by 2005 I was running a small business creating sites on the side of my ‘real job’ and by 2009 that small business became my full time job as I left employment to pursue my Masters Degree in Digital Communication. It was in that year I met WordPress when I moved my old Movable Type blog onto it and within a very short time I was using  WP as the CMS of choice for all my client work…</p>\n<p>Then in 2011 I stumbled across WordCamps and by extension the WordPress community. THAT was the thing that changed my world.</p>\n<p>I flew on a whim from Sydney to Melbourne to attend this crazy inexpensive conference I had found after a google search for ‘WordPress Conferences’. In doing so I met welcoming people, made friends, connected, and came back to Sydney excited and hopeful about continuing this connection with the wider WP community.</p>\n<p>Building a community around WP got off to a slow start in Sydney, but from an inauspicious early WPSyd meetup in the function room of a pub (one we actually held in the dark due to a blackout) my connection and involvement took off. Before long I was helping organise that Sydney meetup and by the time I moved away from that great city it had branched into 2 meetups, and soon after, into 3. Furthermore at the end of that first year, at my second ever WordCamp, I put my hand up to help organise a WordCamp Sydney in 2012 and then as I moved interstate, WordCamp Melbourne in 2013.</p>\n<p>Here’s the point.</p>\n<p>WordPress, software, technology, the Internet will come and go, morph, and change, evolve. Maybe WordPress will last forever, maybe it will morph into something else, maybe one day it will look completely different than it did when I first started (actually, that’s true now…) the thing that doesn’t change is the humanity around it.</p>\n<blockquote><p>WordPress and any other software package exists to serve people.</p></blockquote>\n<p>The thing that I have learned, not only through WordPress but in life, is that if we too serve the people around what we’re doing, we ourselves will grow, develop and change alongside the people we serve, and the tools we use to serve them.</p>\n<p>In organising meetups, WordCamps, and community events around WordPress,  I have found that at the end of the day it isn’t actually WordPress that matters… it’s those connections, it’s the friendships. It’s the network of work, referrals, support, help, encouragement that has kept me wired into this community and committed to helping other people find that connection and growth for themselves. Even as my career in WP has moved through coding, into team support, into project management, there too it has been the people and my connections to them in the community that have helped fuel that transition.</p>\n<p>I believe that the place I’ve found and the opportunities I have had owe as much to my own desire and ambition as they do to the help, support and belief of the community around me; sometimes even more than I’ve felt in myself. In all of this I feel as though I’m living proof that by helping, connecting, and resourcing other people, I myself have been helped, resourced and connected into places I’d have never dreamed of all those years ago as a teenager playing with that first mouse… experimenting with that BASIC code.</p>\n<p>Arnold Schwarzenegger said “Help others and give something back. I guarantee you will discover that while public service improves the lives and the world around you, its greatest reward is the enrichment and new meaning it will bring your own life.” and I completely agree.</p>\n<p>Ricky Martin said “A hero is someone who is willing to help others in his or her best capacity.” Here are two very different people giving voice to exactly what I’ve found in working and serving in this great community of diverse people. This is the kind of heroism I see around WordPress, at meetups and WordCamps; it’s the kind of hero whom I want to raise up, and at the end of the day, this is the kind of hero I hope that I am.</p>\n<p>Best of all, it’s the kind of hero that absolutely ANY of us can be.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Actually, WordPress didn’t change my life.\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Actually%2C%20WordPress%20didn%E2%80%99t%20change%20my%20life.&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Actually, WordPress didn’t change my life.\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Factually-wordpress-didnt-change-life%2F&title=Actually%2C+WordPress+didn%E2%80%99t+change+my+life.\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Actually, WordPress didn’t change my life.\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/actually-wordpress-didnt-change-life/&media=https://heropress.com/wp-content/uploads/2016/11/111616-150x150.jpg&description=Actually, WordPress didn’t change my life.\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Actually, WordPress didn’t change my life.\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\" title=\"Actually, WordPress didn’t change my life.\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/actually-wordpress-didnt-change-life/\">Actually, WordPress didn’t change my life.</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 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:8:\"Dee Teal\";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:30:\"Dev Blog: WordPress 4.7 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4576\";s:7:\"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/11/wordpress-4-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1990:\"<p>WordPress 4.7 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.7, 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.7-beta4.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1,</a> <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a>, and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-3/\">Beta 3</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth developer guides on make/core</a>. We’ve made <a href=\"https://core.trac.wordpress.org/log/trunk/src?action=stop_on_copy&mode=stop_on_copy&rev=39262&stop_rev=39201&limit=200&verbose=on&sfp_email=&sfph_mail=\">about 60 changes</a> in the last few days for beta 4, including tweaks to Twenty Seventeen, custom CSS, and the REST API content endpoints.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>We are almost there<br />\nPlease test your plugins and themes<br />\nRC coming soon<br />\n</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 16 Nov 2016 01:51: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: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:\"\";}}}}}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:44:\"Dev Blog: WordCamp US 2017-2018 in Nashville\";s:7:\"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=4571\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://wordpress.org/news/2016/11/wordcamp-us-2017-2018-in-nashville/\";s: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:995:\"<p><img class=\"aligncenter\" src=\"https://i0.wp.com/wpdotorg.files.wordpress.com/2008/07/27492741871_c6fcebcad3_k-e1479248587522.jpg?resize=632%2C253&ssl=1\" /></p>\n<p>The title says it all. We had some great applications for cities to host <a href=\"http://us.wordcamp.org/\">WordCamp US</a> after we finish up in Philadelphia this year, and the city chosen for 2017-2018 is <strong>Nashville, Tennessee</strong>.</p>\n<p>Based on the other great applications we got I&#8217;m also excited about the pipeline of communities that could host it in future years as WordCamp US travels across the United States and gives us an opportunity to learn and love a new city, as we have with Philadelphia.</p>\n<p>By the way, if you haven&#8217;t yet, now is a great time to <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">take the Annual WordPress Survey</a> and ask your friends to as well.</p>\n<p><a href=\"https://www.flickr.com/photos/143951935@N07/27492741871\">Photo Credit</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:\"Tue, 15 Nov 2016 23:24: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:\"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: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:90:\"WPTavern: Upvato Backup Service Confirms Files Are Lost, Plans to Relaunch on New Provider\";s:7:\"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=63862\";s:7:\"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/upvato-backup-service-confirms-files-are-lost-plans-to-relaunch-on-new-provider\";s: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:4274:\"<p>Upvato creator Freddy Lundekvam has confirmed that all user files entrusted to the service have been permanently lost, as his previous storage provider is unable to recover them. After receiving a series of emails from the provider reminding him that payment was due, the provider terminated his account seven days after the invoice was overdue.</p>\n<p>Lundekvam said ordinarily he would expect his sites and servers to go offline in response to an unpaid invoice but this particular provider, which he would not identify, simply terminated his account.</p>\n<p>&#8220;I contacted the provider in good faith, knowing that any decent provider has complete backups of everything they terminate for X time after they terminate it,&#8221; Lundekvam said. &#8220;Apparently, with this &#8216;crappy&#8217; company, terminated means literally terminated. All decent backup providers have backups of their backups, and any provider with such a setup knows very well that terminating the backups at the same time as you terminate the original files is a HUGE mistake, after all, you have those backups in place just in case something is terminated wrongly or the system corrupts something. We can simply conclude with the fact that this provider didn&#8217;t do backups of their users&#8217; data and therefore would never be able to recover anything they have lost.&#8221;</p>\n<p>Although Lundekvam mentioned Amazon Glacier in a <a href=\"https://wptavern.com/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\" target=\"_blank\">previous interview</a> as an example of how cheap storage space is, he confirmed that Amazon was not the provider in question here. &#8220;Amazon was quickly ironed out in the launch phase due to the heavy adjustments it needed to make it work exactly the way we wanted it to,&#8221; he said.</p>\n<p>Lundekvam said he sincerely believed this backup provider was reliable and was disappointed to find out otherwise after trusting users&#8217; data with the company. Despite the misfortune and embarrassment of the current situation, he is determined to relaunch Upvato with a new provider that offers redundant backups.</p>\n<h3>Upvato to Relaunch with Improved Version that Allows Users to Define Backup Destination</h3>\n<p>Lundekvam said the new version will be launched &#8220;as soon as possible.&#8221; His team is considering firing up the current (old) version and then migrating as originally planned instead of relaunching with the new version. The improvements include a better backup algorithm and new functionality.</p>\n<p>&#8220;The very new version will allow the user to define their own destination / choice of backup location, whether that be on Upvato&#8217;s servers, their own FTP / SFTP server, Dropbox, Amazon, and other providers we&#8217;re looking into implementing,&#8221; Lundekvam said. &#8220;This would make Upvato function as a mere gateway that detects and keeps your backups in sync at your favorite destination, while at the same time presenting the same awesome visual experience on the website to display the sales ad associated with the item.&#8221;</p>\n<p>Lundekvam remains committed to keeping the core service free indefinitely and may add commercial upgrades if costs exceed what he is able to contribute on his own.</p>\n<p>&#8220;As long as I am able to sustain Upvato on my own, then it will remain ad-free and completely free to use,&#8221; he said. &#8220;But of course there are plans to monetize the website if we at some point need help keeping the lights on. That might be ad-generated revenue, or a premium service for premium functionality. But regardless of what we do then, the core functionality of Upvato &#8211; backing up your Envato files &#8211; will always remain free to use.&#8221;</p>\n<p>In response to commenters who suspected the service of fraud and users who may be wary of continuing with the service, Lundekvam said, &#8220;Upvato is not a fraud in any way. It&#8217;s really entirely up to the user if they want to give us a second chance or not. We are a completely free service that intends to do the very best we can do make sure that we stay a reliable, good way to store and backup your Envato files.&#8221;</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, 15 Nov 2016 22:48: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: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:85:\"WPTavern: WordPress 4.7 Improves Accessibility by Removing Alternative Text Fallbacks\";s:7:\"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=63819\";s:7:\"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://wptavern.com/wordpress-4-7-improves-accessibility-by-removing-alternative-text-fallbacks\";s: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:1252:\"<p>When images are uploaded in WordPress 4.6.1 that have an empty alt text value, WordPress tries to generate one based on the caption text or the image title. If the image title is non descriptive as is common with photos uploaded from digital cameras, the alt text can be meaningless.</p>\n<p>In WordPress 4.7, the caption text and the image title fallbacks have been removed. The fallbacks were originally introduced to ensure every image included alternative text. Over time however, this practice has proven to be a poor user experience for people who use screen readers.</p>\n<p>Since the fallbacks are removed, users will need to explicitly set a value for the alt text field. <a href=\"https://make.wordpress.org/core/2016/11/11/improving-accessibility-of-image-alternative-text-in-4-7/\">According to Joe McGill</a>, the change will not affect content already published but will be the expected behavior in WordPress 4.7 and beyond.</p>\n<p>If you&#8217;re not sure what text to use to describe an image, check <a href=\"http://webaim.org/techniques/alttext/#basics\">out this article </a>on Webaim. It explains when alt text should be displayed and provides useful tips on how to describe an image.</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, 15 Nov 2016 18:51: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:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"WPTavern: Wedding Bride: A Free One-Page WordPress Wedding Theme\";s:7:\"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=60375\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://wptavern.com/wedding-bride-a-free-one-page-wordpress-wedding-theme\";s: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:2864:\"<p><a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is a new theme from Alex Itsios, co-founder of <a href=\"https://ketchupthemes.com/\" target=\"_blank\">Ketchup Themes</a>. The Cyprus-based theme company has <a href=\"https://wordpress.org/themes/author/alexitsios/\" target=\"_blank\">16 themes on WordPress.org</a>. Wedding themes are a relatively small niche in the directory with fewer than 20 listings. This new arrival stands out from the pack with its bold colors and customizability.</p>\n<p>Many WordPress wedding themes in the official directory seem like a wedding site forced into a blog-oriented design, with lingering post meta in areas where it serves no purpose. This particular niche is where a focused, one-page design really shines. Wedding Bride features event-specific front page sections for the couple to share their story but also allows for (optional) extra pages and a blog.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-screenshot.png?resize=880%2C660&ssl=1\" alt=\"wedding-bride-screenshot\" class=\"aligncenter size-full wp-image-60380\" /></a></p>\n<p>All of the theme&#8217;s options can be found in the Customizer where users can upload a header image, personalize the header overlay, and add various content sections &#8211; all of which are optional. It also includes an option to make the navigation menu sticky or have it scroll with the page (default).</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/08/wedding-bride-theme-1.png?resize=1025%2C405&ssl=1\" alt=\"wedding-bride-theme\" class=\"aligncenter size-full wp-image-63806\" /></a></p>\n<p>Wedding Bride users can customize the background color and/or image. Unfortunately, the theme does not include a color picker to customize the pink accent color, but this can be changed with a little CSS. Blog pages include a sidebar and it supports four widget areas in the footer. The contact form section was created for use with <a href=\"https://wordpress.org/plugins/contact-form-7/\" target=\"_blank\">Contact Form 7</a>.</p>\n<p>Check out the <a href=\"http://www.platotheme.com/wedding-version/\" target=\"_blank\">live demo</a> to see the theme in action. <a href=\"https://wordpress.org/themes/wedding-bride/\" target=\"_blank\">Wedding Bride</a> is Alex Itsios&#8217; 16th theme on WordPress.org and his first foray into the wedding niche. If you&#8217;re looking for a theme that allows you to quickly create a wedding website with all the essential details on one page, you can download it for free from WordPress.org via your admin themes browser.</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, 15 Nov 2016 06:28:50 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"WPTavern: WP eCommerce 3.11.4 Patches SQL Injection 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:29:\"https://wptavern.com/?p=63743\";s:7:\"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/wp-ecommerce-3-11-4-patches-sql-injection-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:1138:\"<p>Over the weekend, the WP eCommerce team released version 3.11.4 of its <a href=\"https://wordpress.org/plugins/wp-e-commerce/\">e-commerce plugin</a>. The update patches an SQL injection vulnerability that was responsibly disclosed by Mika Epstein, a member of the WordPress.org plugin review team.</p>\n<p><a href=\"https://wpecommerce.org/news/wp-ecommerce-3-11-4-security-update/\">According to Justin Sainton</a>, lead developer of WP eCommerce, the team was notified of the vulnerability on November 11th and patched within an hour. The update was available on WordPress.org the following day.</p>\n<p>&#8220;This vulnerability only affects users who use eWay as their payment gateway, have Gold Cart activated, and are using the as-of-yet-unreleased Theme Engine 2.0,&#8221; Sainton said.</p>\n<p>&#8220;We believe the number of users affected is likely close to zero, due to these conditions.&#8221;</p>\n<p>Users are highly encouraged to update as soon as possible. Created in 2006, WP eCommerce is one of the oldest plugins in the directory and is actively installed on more than 40K sites.</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, 15 Nov 2016 00:34:17 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:92:\"WPTavern: Upvato Backup Service Terminated by Storage Provider, Files May Not be Recoverable\";s:7:\"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=63352\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/upvato-backup-service-terminated-by-storage-provider-files-may-not-be-recoverable\";s: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:5185:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/01/upvato-featured.png?resize=1025%2C471&ssl=1\" alt=\"upvato-featured\" class=\"aligncenter size-full wp-image-50622\" /></a></p>\n<p><a href=\"https://www.upvato.com/\" target=\"_blank\">Upvato</a>, the service that specializes in backing up Envato Market files, has shut down without warning. Freddy Lundekvam, a full time programmer and frequent user of Envato products, created the service after losing 10 files to Envato&#8217;s policy of reserving the right to take down and remove any file at its or the author&#8217;s sole discretion. Losing files is a <a href=\"https://forums.envato.com/t/half-of-my-items-removed/27143/3\" target=\"_blank\">common frustration among Envato users</a>, as the company cannot guarantee the ongoing availability of products due to situations like copyright complaints and technical issues.</p>\n<p>Upvato made it easy for users to automatically backup their purchases, cataloguing them with screenshots, descriptions, titles, and author information. The service offered unlimited backups and Lundekvam encouraged users to connect their Envato accounts to keep their files safe. A few weeks ago, Upvato users started to suspect that the service was shutting down.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">Anyone using <a href=\"https://twitter.com/hashtag/Upvato?src=hash\">#Upvato</a> for their themes etc from <a href=\"https://twitter.com/envato\">@envato</a> &#8211; I think you have just been duped!</p>\n<p>&mdash; Andrew Wilkinson (@parysnet) <a href=\"https://twitter.com/parysnet/status/793135773998514176\">October 31, 2016</a></p></blockquote>\n<p></p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\">What happened to <a href=\"https://twitter.com/hashtag/upvato?src=hash\">#upvato</a>? Looks like it died silently and nobody noticed. Zero commentary from the usual webdev pundits.</p>\n<p>&mdash; sunil (@sunilwilliams) <a href=\"https://twitter.com/sunilwilliams/status/791535374971523072\">October 27, 2016</a></p></blockquote>\n<p></p>\n<p>&#8220;I&#8217;m beginning to think this was not all above board,&#8221; one WP Tavern commenter <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products#comment-202262\" target=\"_blank\">said</a> after discovering that the site disappeared. &#8220;[Upvato] seamlessly copied all my themes to their server and then shut down with no warning!&#8221;</p>\n<p>Lundekvam, whose website can no longer be reached, replied to my first inquiry. After experiencing problems with Upvato&#8217;s provider, he is not hopeful that he can recover the files.</p>\n<p>&#8220;Our provider&#8217;s automated systems terminated everything related to Upvato,&#8221; Lundekvam said. &#8220;I am so frustrated and upset that you won&#8217;t believe it, but I am doing what I can do recover the files and or get a backup up and running. But it seems like the provider isn&#8217;t and wasn&#8217;t really a reliable backup provider at all, and as it is right now, it looks really dark for a possible chance to recover the files.&#8221;</p>\n<p>Lundekvam would not specify who his provider was, but had referenced Amazon Glacier in a <a href=\"https://wptavern.com/new-upvato-service-offers-free-backups-for-envato-market-products\" target=\"_blank\">previous interview</a> as an example of cheap storage space at a mere $7/month.</p>\n<p>&#8220;Such things shouldn&#8217;t happen with a backup provider like Upvato, and I am extremely surprised that it happened with our backup provider, causing it to affect Upvato,&#8221; he said. He also confirmed that he does not plan to shut the service down permanently.</p>\n<p>&#8220;If I am unable to recover the backup and files, then no, I am not shutting down,&#8221; Lundekvam said.&#8221; I would, and have to, install Upvato with a new provider and start over. Please rest assured that Upvato is coming back up. Regarding the concerned users, I am deeply sorry for the downtime and, possibly, loss of Envato files. It hurts that it happened, as this is in no way how I want Upvato to be seen or represented.&#8221;</p>\n<p>Lundekvam would not respond to subsequent inquiries. Upvato has had ample time to share this news via other outlets but the service did not have a Twitter account and its website has vanished, leaving users without any information. Lundekvam had said in previous interviews that he did not have plans to monetize Upvato in the immediate future. His motivation was to &#8220;make something cool and useful that people might want and need.&#8221;</p>\n<p>Unfortunately, since he treated Upvato as a side project and did not have further backups in place, an unexpected problem with his provider has wiped out the files users trusted with the service. In an ironic twist, the service has inadvertantly replicated the exact situation that users hoped to avoid with Envato. Lundekvam has not responded to further inquiries on the status of the recovery process, but we will update when any new information is available.</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:\"Mon, 14 Nov 2016 21:01:57 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:34:\"Matt: Flying Lotus, Never Catch Me\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46928\";s:7:\"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:\"https://ma.tt/2016/11/flying-lotus-never-catch-me/\";s: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:357:\"<p></p>\n<p>Music videos are themselves an art form, and it&#8217;s always interesting to me how an artist chooses to transform the interpretation of their song with the video. I&#8217;ve listened to this song since it came out but haven&#8217;t seen the video until now, and it will definitely make me listen to it differently. Featuring Kendrick Lamar.</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, 13 Nov 2016 18:49: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"WPTavern: New WordPress Plugin Serves Pre-Compressed Emoji\";s:7:\"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=63682\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"https://wptavern.com/new-wordpress-plugin-serves-pre-compressed-emoji\";s: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:3475:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/compressed-emoji.png?resize=627%2C250&ssl=1\" alt=\"compressed-emoji\" class=\"aligncenter size-full wp-image-63714\" /></a></p>\n<p>WordPress emoji are served from s.w.org, but they are not compressed. This impacts the SVG loading time, depending on how many emoji you are using, and can even throw warnings on Google&#8217;s <a href=\"https://developers.google.com/speed/pagespeed/insights/\" target=\"_blank\">PageSpeed Insights</a> tool. Turkey-based WordPress developer <a href=\"https://profiles.wordpress.org/m_uysl/\" target=\"_blank\">Mustafa Uysal</a> has just released <a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a>, a plugin that makes use of the <a href=\"https://developer.wordpress.org/reference/hooks/emoji_svg_url/\" target=\"_blank\">emoji_svg_url</a> filter introduced in 4.6. This filter allows developers to change the URL for where emoji SVG images are hosted.</p>\n<p>When the plugin is activated, the compression offers savings in the range of 3kb ~ 1.3kb (roughly %60) per emoji.</p>\n<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/emoji-compressed-comparison.png?resize=1025%2C511&ssl=1\" alt=\"emoji-compressed-comparison\" class=\"aligncenter size-full wp-image-63717\" /></a></p>\n<p>Uysal said he hopes WordPress.org will consider compressing emoji in the future, especially since approximately 10% of the web is using WordPress 4.6. Compressing emoji is a small way to speed up a sizeable chunk of the web. A <a href=\"https://core.trac.wordpress.org/ticket/37374\" target=\"_blank\">ticket</a> was created on Trac four months ago, requesting cache headers for emoji files and compression. According to Gary Pendergast, the change is something that can be made outside of the WordPress core development cycle, so he closed the ticket and <a href=\"https://make.wordpress.org/systems/2016/07/20/there-are-no-cache-instructions/\" target=\"_blank\">passed the suggestion on to the Systems team</a>. Cache headers were added by the team, but compression was not implemented in that update.</p>\n<p>&#8220;The current plan is to move everything to a new CDN,&#8221; Gary Pendergast reported after chatting with the Systems team. &#8220;The current CDN is a bit outdated &#8211; they don’t support HTTP/2, for example. They need to do some more testing, but it’s high on the todo list.&#8221;</p>\n<p>In the meantime, users who want compressed emoji can use Uysal&#8217;s plugin. It compressed the files using <a href=\"https://github.com/svg/svgo\" target=\"_blank\">SVGO</a>, an open source Node.js-based tool for optimizing SVG vector graphics files. The tool removes unnecessary things like metadata, comments, hidden elements, and default or non-optimal values from the SVG files without affecting their rendering. Another advantage is it doesn&#8217;t require an internet connection for those who are developing locally.</p>\n<p><a href=\"https://wordpress.org/plugins/compressed-emoji/\" target=\"_blank\">Compressed Emoji</a> is available in the WordPress plugin directory and is also open for contributions on <a href=\"https://github.com/mustafauysal/compressed-emoji\" target=\"_blank\">GitHub</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:\"Fri, 11 Nov 2016 23:49: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:\"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:30:\"Dev Blog: WordPress 4.7 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4566\";s:7:\"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/11/wordpress-4-7-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3091:\"<p>WordPress 4.7 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.7, 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.7-beta3.zip\">download the beta here</a> (zip).</p>\n<p>For more information on what’s new in 4.7, check out the <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">Beta 1</a> and <a href=\"https://wordpress.org/news/2016/11/wordpress-4-7-beta-2/\">Beta 2</a> blog posts, along with <a href=\"https://make.wordpress.org/core/tag/4-7+dev-notes/\">in-depth field guides on make/core</a>. Some of the changes in Beta 3 include:</p>\n<ul>\n<li><strong>REST API:</strong> The <code>unfiltered_html</code> capability is now respected and <code>rest_base</code> has been added to response objects of <code>wp/v2/taxonomies</code> and <code>wp/v2/types</code>, while <code>get_allowed_query_vars()</code> and the <code>rest_get_post</code> filter have been removed.</li>\n<li><strong>Roles/Capabilities:</strong> Added meta-caps for comment, term, and user meta, which are currently only used in the REST API.</li>\n<li><strong>I18N:</strong> Added the ability to change user&#8217;s locale back to site&#8217;s locale. (<a href=\"https://core.trac.wordpress.org/ticket/38632\">#38632</a>)</li>\n<li><strong>Custom CSS:</strong> Renamed the <code>unfiltered_css</code> meta capability to <code>edit_css</code> and added revisions support to the <code>custom_css</code> post type.</li>\n<li><strong>Edit shortcuts:</strong> Theme authors should take a look at <a href=\"https://make.wordpress.org/core/2016/11/10/visible-edit-shortcuts-in-the-customizer-preview/\">the developer guide to the customizer preview&#8217;s visible edit shortcuts</a> and update their themes to take advantage of them if not already implementing selective refresh.</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&mode=stop_on_copy&rev=39200&stop_rev=39143&limit=200&verbose=on&sfp_email=&sfph_mail=\">over 50 changes</a> in 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><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p><em>Building the future</em><br />\n<em>A global community</em><br />\n<em>Stronger together</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 11 Nov 2016 03:30: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: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:\"\";}}}}}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:52:\"WPTavern: Andy Baio Relaunches Waxy.org on 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:29:\"https://wptavern.com/?p=63685\";s:7:\"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://wptavern.com/andy-baio-relaunches-waxy-org-on-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:3333:\"<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/waxy.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/waxy.png?resize=1025%2C415&ssl=1\" alt=\"waxy\" class=\"aligncenter size-full wp-image-63701\" /></a></p>\n<p>After 14 years of blogging with MovableType, Andy Baio has <a href=\"http://waxy.org/2016/11/redesigning-waxy-2016-edition/\" target=\"_blank\">relaunched Waxy.org on WordPress</a>. Baio&#8217;s media and technology blog has been a continual source of original content about life on the internet and how it affects our culture. The migration includes 472 posts and 15,891 entries from his sideblog <a href=\"http://waxy.org/category/links/\" target=\"_blank\">Waxy Links</a>.</p>\n<p>Waxy.org played a small part in WordPress.org&#8217;s early history. In 2005 Baio broke the story about <a href=\"http://waxy.org/2005/03/wordpress_websi/\" target=\"_blank\">WordPress quietly hosting search engine spam articles</a> in order to help cover some of the site&#8217;s expenses. The exposure and subsequent removal of <a href=\"http://random.waxy.org/html/google_wordpress.html\" target=\"_blank\">the articles</a> temporarily decimated WordPress.org&#8217;s pagerank but Matt Mullenweg&#8217;s <a href=\"https://ma.tt/2005/04/a-response/\" target=\"_blank\">response</a> to the situation brought more transparency to how the open source project was being funded. Baio interviewed Mullenweg for the piece and considered it his first foray into serious journalism.</p>\n<p>In his post about the site&#8217;s redesign Baio concedes that blogs are &#8220;not really part of the cultural conversation anymore&#8221; but said he thinks there&#8217;s still potential in the medium.</p>\n<p>&#8220;There a few reasons why I’m sad about the decline of independent blogging, and why I think they’re still worth fighting for,&#8221; Baio said. &#8220;Ultimately, it comes down to two things: ownership and control.&#8221;</p>\n<p>Baio explained why it&#8217;s important for him to control his own space on the web, as opposed to putting content at the mercy of third-party platforms whose futures are not guaranteed:</p>\n<blockquote><p>Last week, Twitter announced they’re shutting down Vine. Twitter, itself, may be acquired and changed in some terrible way. It’s not hard to imagine a post-Verizon Yahoo selling off Tumblr. Medium keeps pivoting, trying to find a successful revenue model. There’s no guarantee any of these platforms will be around in their current state in a year, let alone ten years from now.</p>\n<p>Here, I control my words. Nobody can shut this site down, run annoying ads on it, or sell it to a phone company. Nobody can tell me what I can or can’t say, and I have complete control over the way it’s displayed. Nobody except me can change the URL structure, breaking 14 years of links to content on the web.</p></blockquote>\n<p><a href=\"http://waxy.org/\" target=\"_blank\">Waxy.org</a> is now responsive and uses a custom theme built using Automattic&#8217;s <a href=\"http://components.underscores.me/\" target=\"_blank\">Components starter-theme generator</a>. Baio will continue exploring odd corners of the internet on his blog and plans to share his thoughts about the challenges of navigating the ecosystem of independent publishers.</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, 10 Nov 2016 23:45:20 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"WPTavern: bbPress 2.5.11 Adds WordPress 4.7 Compatibility\";s:7:\"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=63694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"https://wptavern.com/bbpress-2-5-11-adds-wordpress-4-7-compatibility\";s: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:2494:\"<p>The bbPress development team has <a href=\"https://bbpress.org/blog/2016/11/bbpress-2-5-11-maintenance-release/\">released 2.5.11</a> to add support <a href=\"https://make.wordpress.org/core/2016/11/07/changed-loading-order-for-current-user-in-4-7/\">for a technical change</a> in WordPress 4.7. Users are highly encouraged to update to bbPress 2.5.11 <strong>before</strong> updating to WordPress 4.7. In 4.7, the loading order for the current user in the function stack was changed to accommodate <a href=\"https://make.wordpress.org/core/2016/11/07/user-admin-languages-and-locale-switching-in-4-7/\">user locale switching</a>.</p>\n<p>Previously, BuddyPress and bbPress displayed a custom notice when a user was initialized without using WP-&gt;init(). In addition to patching the issue in <a href=\"https://buddypress.trac.wordpress.org/ticket/7305\">BuddyPress</a> and <a href=\"https://bbpress.trac.wordpress.org/ticket/2309\">bbPress</a>, a new <a href=\"https://core.trac.wordpress.org/ticket/23016\">wp_roles_init filter</a> was added to WordPress that allows plugins to add custom roles when they&#8217;re initialized.</p>\n<p>The changes mentioned above are technical in nature so I asked John James Jacoby, lead developer of bbPress, what the update really means. &#8220;bbPress loads its roles on-the-fly, in a similar way to how post-types and taxonomies are registered,&#8221; Jacoby told the Tavern.</p>\n<p>&#8220;With locales and roles now having a reversed load order, bbPress needed some code changes to work for both WordPress 4.6 and 4.7 without causing any problems for third-party bbPress plugins and non-English installations.&#8221;</p>\n<p>This particular improvement has personal historical meaning to Jacoby, &#8220;This change to WordPress core in 4.7 is a long time coming,&#8221; he said.</p>\n<p>&#8220;It was the very first bug I ever reported in WordPress&#8217; IRC channel back in 2008, when I was working on a large multi-lingual multisite installation. It&#8217;s how I met Peter Westwood and Jen Mylo, and it was their kindness that made it clear that WordPress was the platform for me.&#8221;</p>\n<p>Jacoby also notes that per-forum moderators, favorites, and subscriptions have been rewritten in bbPress 2.6. During testing, performance enhancements were discovered and submitted to WordPress core and have been implemented across the forums on WordPress.org. Work continues on bbPress 2.6 which is expected to ship in 2017.</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, 10 Nov 2016 22:33: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: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: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:81:\"WPTavern: WPWeekly Episode 253 – BuddyPress 2.8, WordCamp US, and PressNomics 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:58:\"https://wptavern.com?p=63684&preview=true&preview_id=63684\";s:7:\"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:86:\"https://wptavern.com/wpweekly-episode-253-buddypress-2-8-wordcamp-us-and-pressnomics-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3135:\"<p>In this episode of WordPress Weekly, <a href=\"http://marcuscouch.com/\">Marcus Couch</a> and I discuss the news of the week. WordCamp US live stream tickets will be free this year and development of BuddyPress 2.8 kicks off. We talk about the revamped guidelines for the WordPress plugin directory and how they should help streamline the review process.</p>\n<p>Last but not least, we discuss an important update to bbPress. Because of some recent life changes, the recording time for WordPress weekly will now be on Wednesdays at 3PM Eastern, 12PM Pacific.</p>\n<h2>Stories Discussed:</h2>\n<p><a href=\"https://wptavern.com/buddypress-2-8-development-kicks-off-2016-survey-now-open-for-developers\">BuddyPress 2.8 Development Kicks Off, 2016 Survey Now Open for Developers</a><br />\n<a href=\"https://wptavern.com/wordcamp-us-live-stream-tickets-now-available\">WordCamp US Live Stream Tickets Now Available</a><br />\n<a href=\"https://wptavern.com/take-the-2016-wordpress-user-survey\">Take the 2016 WordPress User Survey</a><br />\n<a href=\"https://wptavern.com/wordpress-plugin-team-publishes-revamped-guidelines-for-plugin-directory\">WordPress Plugin Team Publishes Revamped Guidelines for Plugin Directory</a><br />\n<a href=\"https://wptavern.com/pressnomics-5-scheduled-for-april-6-8-2017-in-phoenix-az\">PressNomics 5 Scheduled for April 6-8, 2017 in Phoenix, AZ</a><br />\n<a href=\"https://bbpress.org/blog/2016/11/bbpress-2-5-11-maintenance-release/\">bbPress 2.5.11 – Maintenance Release</a></p>\n<h2>Plugins Picked By Marcus:</h2>\n<p><a href=\"https://wordpress.org/plugins/grid-canvas-pinterest/\">Grid Canvas &#8211; Pinterest Image Creator </a>automatically detects all the images in a post and adds them to a grid layout. It comes with plenty of predefined grid layouts to choose from and there are more coming soon. You can also select the image size that is most optimal for different social networks.</p>\n<p><a href=\"https://wordpress.org/plugins/disable-password-changed-notifications/\">Disable Password Changed Notifications</a> by Pippin Williamson disables the notification email sent to site administrators when users change their passwords.</p>\n<p><a href=\"https://wordpress.org/plugins/wp-private-comment-notes/\">WP Private Comment Notes</a> allows WordPress admins and or moderators to add and manage private notes for comments. Additionally, each note can be shared with the user who left the original comment.</p>\n<h2>WPWeekly Meta:</h2>\n<p><strong>Next Episode:</strong> Wednesday, November 16th 3:00 P.M. Eastern</p>\n<p><strong>Subscribe To WPWeekly Via Itunes: </strong><a href=\"https://itunes.apple.com/us/podcast/wordpress-weekly/id694849738\" target=\"_blank\">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 #253:</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, 10 Nov 2016 20:53: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: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: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:91:\"WPTavern: WordPress Community Team Proposes New Selection Process for 2017 Summit Attendees\";s:7:\"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=63604\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:102:\"https://wptavern.com/wordpress-community-team-proposes-new-selection-process-for-2017-summit-attendees\";s: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:4890:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/07/testing.jpg?resize=960%2C474&ssl=1\" alt=\"testing\" class=\"aligncenter size-full wp-image-46092\" /></a></p>\n<p>WordCamp Europe 2017 is set to <a href=\"https://wptavern.com/wordcamp-europe-2017-will-host-the-next-wordpress-community-summit\" target=\"_blank\">host the next community summit</a> in Paris. This will be the first time the event has been held outside of the United States, a change that makes it more accessible for contributors who are unable to obtain a visa to enter the U.S.</p>\n<p>Attaching the summit to WordCamp Europe was the next logical step, as the event brings together project contributors from around the world. Europe is one of the fastest growing regions for the WordPress community in terms of events, with a <a href=\"https://wptavern.com/europe-tops-wordcamp-growth-in-2015-with-70-increase-in-events\" target=\"_blank\">70% increase in WordCamps in 2015</a>. There were 20 WordCamps held in October and 50% of those were hosted in European cities.</p>\n<p>The past three community summits have been invitation-only in order to ensure those present were active contributors to WordPress and to enable a format that facilitates face-to-face discussions on key issues facing the project and the community. This inevitably leaves many valuable contributors on the outside. In an effort to mitigate the sense of exclusivity around the event, the WordPress Community Team is <a href=\"https://make.wordpress.org/community/2016/11/03/wordpress-community-summit-2017/\" target=\"_blank\">proposing a new selection process for 2017</a>:</p>\n<blockquote><p>If we have to limit our attendance to have productive, collaborative discussions at the Summit, then choosing the participants becomes a challenge if we don’t know what the teams are going to discuss ahead of time. Therefore, this year I suggest we try something new:</p>\n<p>Let’s ask teams to decide on the challenging, controversial, or sensitive issues they want to discuss at the summit before the summit is held. Then, once the teams know what they want to talk over in person, they can nominate and select the people needed to represent all points of view in each of those discussions. This way, the event stays small, hard topics get discussed, but the selection process is more transparent and functional.</p></blockquote>\n<p>Rocio Valdivia, who posted the proposal on behalf of the team, roughly outlined how the selection process would work. She suggested each make.wordpress.org project team would create and publish a list of topics/issues for discussion at the summit and submit them by December 20th. Teams would then select representatives to attend the summit. Two members of those selected would be assigned to help with the organization and logistics of the summit, including tasks such as finding sponsors, travel assistance, and communication.</p>\n<p>&#8220;The intention of this approach is to propose a more open and team-focus Community Summit with transparent participation from all active contributors and reps of each team,&#8221; Valdivia said. &#8220;This way we can hopefully anticipate barriers and cross-team difficulties that might come up, and avoid them.&#8221;</p>\n<p>This approach is different from past events where attendees were not part of the organizational aspects but it gives contributors more ownership of the event and their teams&#8217; specific goals. Details and logistics would be worked out later in the year with the help of the WCEU organizers.</p>\n<p>The Community Team is asking for feedback on the <a href=\"https://make.wordpress.org/community/2016/11/03/wordpress-community-summit-2017/\" target=\"_blank\">proposal</a> before implementing a plan of action for the new selection process. As the open source project has grown, WordPress has hundreds of contributors spread across its three dozen core <a href=\"https://make.wordpress.org/core/components/\" target=\"_blank\">components</a>. So far contributors have weighed in on the initial proposed number of team representatives and the deadline for preparing topics.</p>\n<p>There was also some concern in the Community Team&#8217;s meeting on Slack as to whether the new selection process will perpetuate the pattern of the same people being invited to the summit every time simply because they are most active in the project. Allowing teams to nominate their representatives based on the anticipated topics will make the selection process more focused on which contributors are best suited to work on pressing issues. Moving the location to Europe will also give regional contributors the opportunity to bring fresh ideas and perspectives, especially regarding the challenges of multilingual publishing with WordPress.</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, 10 Nov 2016 06:48: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:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"bbPress: bbPress 2.5.11 – 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://bbpress.org/?p=178971\";s:7:\"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://bbpress.org/blog/2016/11/bbpress-2-5-11-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1075:\"<p>bbPress 2.5.11 is out, and is a maintenance release for all previous 2.x versions. 2.5.11 includes support for the soon to be released WordPress 4.7. If you&#8217;re planning on updating to WordPress 4.7 right away, you&#8217;ll want to update to bbPress 2.5.11 immediately.</p>\n<p>If you&#8217;re using any version of bbPress 2.x and have not yet updated, please take a moment to update your bbPress installations to 2.5.11. If you&#8217;re using WordPress&#8217;s built-in updater, it should only take a click or two. If you need help, please reach out in our <a href=\"https://bbpress.org/forums/\">support forums</a> and someone will be happy to assist you.</p>\n<p>These fixes have also been ported over to 2.6, which we continue to run here at bbPress.org and BuddyPress.org.</p>\n<hr />\n<p>Speaking of bbPress 2.6, per-forum moderators, favorites, and subscriptions are fully refactored and working pretty great. Our findings have also helped push performance improvements upstream to WordPress core, and are already employed across the forums on WordPress.org.</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, 10 Nov 2016 00:27:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";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:103:\"WPTavern: A New Way to Search, Preview, and Install Themes in the Customizer Removed From WordPress 4.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:29:\"https://wptavern.com/?p=63634\";s:7:\"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:112:\"https://wptavern.com/a-new-way-to-search-preview-and-install-themes-in-the-customizer-removed-from-wordpress-4-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:4376:\"<p>Astute testers may have noticed a new feature in WordPress 4.7 beta 1 that enabled users to search, preview, and install themes from within the customizer. This feature was part of <a href=\"https://make.wordpress.org/core/2016/10/24/customize-update-2016-10-23/\">five feature projects</a> related to the customizer that were approved for merge last month. Its goal is to <a href=\"https://make.wordpress.org/core/2016/10/03/feature-proposal-a-new-experience-for-discovering-installing-and-previewing-themes-in-the-customizer/\">unify the theme browsing and customizing experience</a>.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerThemeBrowserFlow.png?ssl=1\"><img class=\"size-full wp-image-63638\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/CustomizerThemeBrowserFlow.png?resize=1025%2C793&ssl=1\" alt=\"Customizer Theme Browser Flow\" /></a>Customizer Theme Browser Flow\n<p>It was removed in WordPress 4.7 beta 2. Helen Hou-Sandí, WordPress 4.7 release lead, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:121\">reverted the change</a> after <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:113\">collecting feedback. </a>Some of the reasons for reverting the feature include:</p>\n<ul>\n<li>Displaying on mobile devices is broken.</li>\n<li>Inability to close the feature/filter accordion.</li>\n<li>Checkmarks are overlayed on top of the search form.</li>\n<li>The full-screen plus reload experience isn&#8217;t polished.</li>\n</ul>\n<p><a href=\"https://core.trac.wordpress.org/ticket/37661#comment:121\">According to Hou-Sandí</a>, there is not enough time left in the development cycle to polish the design and make it sufficient for WordPress 4.7. Nick Halsey, who helps maintain the Customizer component, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:127\">expressed displeasure</a> with the decision.</p>\n<p>&#8220;Abruptly deciding to pull something without allowing any opportunity to improve things or even bring it up in a weekly dev chat is ridiculous,&#8221; Halsey said.</p>\n<p>&#8220;Had I been asked to provide patches for outstanding bugs (one of which never even received a ticket), I would have gladly done so sooner &#8211; this was my highest priority for core for the past 4 months.&#8221;</p>\n<p>Halsey goes on to say that the revert is disrespectful and insulting to him and that he is unlikely to further contribute to the project until it is back in trunk. Samuel Sidler, <span class=\"st\">Apollo Team Lead at Automattic</span>, <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:124\">responded to Halsey </a>supporting Hou-Sandí&#8217;s decision.</p>\n<p>&#8220;Making a decision to pull a highly visible feature is hard, but, as you know, it&#8217;s ultimately one that the release lead should make as it&#8217;s <em>their release</em> and they have the best overall view,&#8221; Sidler said.</p>\n<p>Weston Ruter, who also helps maintain the Customizer component, asked if the revert could be reversed if patches to outstanding issues were created.</p>\n<p>&#8220;No &#8211; if this were a matter of problems that have defined solutions already then the course of action would not have been a revert,&#8221; Hou-Sandí <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:130\">responded</a>. &#8220;I know that it would feel better to have something more than &#8216;my gut and the guts of others say no&#8217;, but if there was more definition to the problems then we may not have been in a position where reverting from this release was the only sane thing to do.&#8221;</p>\n<p>The <a href=\"https://core.trac.wordpress.org/ticket/37661\">feature has been punted</a> and the milestone was changed from WordPress 4.7 to a Future Release.</p>\n<h2>A Window Into How WordPress Development Works</h2>\n<p>The quotes I published above are only part of the story. I highly encourage you to start with <a href=\"https://core.trac.wordpress.org/ticket/37661#comment:113\">this post</a> and read every response in full. It&#8217;s a great opportunity to see a WordPress release lead in action and how and why certain decisions in WordPress development are made. Those interested in the feature&#8217;s progress can follow along by <a href=\"https://core.trac.wordpress.org/ticket/37661\">monitoring this ticket</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, 09 Nov 2016 23:41: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: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: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:49:\"HeroPress: Uncomfortable doesn’t mean walk away\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1466\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\";s: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:23144:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/110916-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Uncomfortable often means there is something amazing to be learnt.\" /><p>I am not a developer. Confession? It feels like it sometimes. In my mind’s eye I see a roomful of skittish WordPress marketers with dark-ringed eyes, disclosing the number of times they pretended to understand something technical when it made about as much sense to them as the moon landing. Frustrated they can’t code it themselves. Maybe it’s just me in that room.</p>\n<p>I am a words person – a creative, a copywriter, and a marketer. My heart beats faster over ancient English literature, clever mailers, alliteration, storytelling and subject lines, and the shapeshifting challenge of building an authentic brand in a world of smoke, mirrors, and shmoozing.</p>\n<p>Topher asked me to write my WordPress story and when I thought about what I’ve learnt over the past two years what came to mind was: <strong>uncomfortable doesn’t mean walk away</strong>.</p>\n<p>Far from being something to categorically flee or avoid, discomfort is a signpost to watch out for – something to embrace and step bravely towards. Obviously there are exceptions – but in my experience discomfort often means lean in, listen closely, change something.</p>\n<p>I’ve chosen to share a few of the ways I’ve encountered uncomfortable in my WordPress journey so far, and why I’m grateful.</p>\n<h3>A bit of background</h3>\n<p>Perhaps we are all creatures of habit on some level, but I really am. For example, when backpacking with my best friend in 2008 from Istanbul down to Cairo – through Syria and Jordan, including places that are now literally non-existent – she and I noticed that if we found a good restaurant I’d suggest returning the following night while she always wanted to try new spots.</p>\n<p>When I find something I like, it makes perfect sense to me to stick with it, sometimes to a fault. Until fairly recently I would have described myself as someone who didn’t thrive on change. This partly explains why by the age of twenty nine my entire life had played out in one city.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_5951-min.jpg\"><img class=\"size-large wp-image-1470\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_5951-min-1024x768.jpg\" alt=\"Marina as a child with mother\" width=\"960\" height=\"720\" /></a>My beautiful mum, brother and I. My mum is a superhuman and I miss her daily.\n<p>Birth, preschool to postgraduate studies, the first nine years of my career, family, friends, life – all in one patch.</p>\n<p>I have been privileged to do some excellent travelling to amazing places – European beach holidays and ski trips (obviously I broke my arm), teaching English for four weeks in South Korea, a cruise in Alaska, a church trip to Singapore and Malaysia, Vancouver to visit family – but my sense of home and place was unwaveringly Cape Town.</p>\n<p>At the beginning of 2014 I decided to emigrate. The delay between the idea occurring to me and resigning was less than two weeks. With a British passport through my English mum and a mild obsession with all things British, London was it. It seemed wise to secure a job first but my gut said I should have faith and move regardless so I resigned from Yuppiechef.com <a href=\"https://www.yuppiechef.com/spatula/10-thoughts-about-community-management-and-social-media/\">where I’d been for nearly five years</a>, sold my car, and booked a one way ticket.</p>\n<p>At this point, it would be fair to say WordPress was not even really on my radar. It powered Yuppiechef’s blog so I’d used it in that capacity and <a href=\"https://marinapape.com/\">my own blog</a> was on WordPress.com – but it was pretty much just a thing to do with the internet that helped people publish stuff.</p>\n<p>A week before I set off I was having sushi with friends and got chatting to a mouthy American who worked for WooThemes. Hearing of my pending departure and getting a sense of my strengths and what I loved to do, he suggested I consider applying. Less than a week later I accepted an offer to join Woo’s then-tiny marketing team. I’m still amazed at the speed with which it all happened – and will be forever amused by Mark and Warren’s confidence in me as a total WordPress n0ob (maybe they didn’t realise!).</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8001-min.jpg\"><img class=\"size-large wp-image-1471\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8001-min-1024x768.jpg\" alt=\"I love MailChimp. Freddy lives on my desk beside some Woo stickers\" width=\"960\" height=\"720\" /></a>I love MailChimp. Freddy lives on my desk beside some Woo stickers\n<p>And so my WordPress journey began in London on 1 July 2014, fresh off the boat and working remotely for the first time. I logged online from a coffee shop – specifically Timberyard, which has become a familiar friend – and dived headfirst into a world I hadn’t realised would be so technical. And digital. Marketing a digital product is a very different kettle of fish to kitchen products. And working remotely as an extrovert?</p>\n<p>In my first week I was sent to WordCamp Brighton where I innocently asked someone the difference between .org and WordPress.com. This was the first prickle of my first uncomfortable hurdle: being okay with not knowing everything.</p>\n<h3>It really is okay not to know everything.</h3>\n<p>It sounds stupid to even write that one needs to be okay with not knowing everything – of course one can’t, but at Yuppiechef.com I sure knew a lot more about a lot more. There, my lack of technical understanding wasn’t a thing, marketing was lauded, and our brand was at the forefront of what set us apart. <a href=\"http://ventureburn.com/2013/03/the-yuppiechef-cult-how-a-startup-sparked-a-religion/\">People wrote about how the following for Yuppiechef was cult-like</a>, and I’d helped create that.</p>\n<p>Joining Woo I was a tiny fish all over again, and I was swimming in a world with languages I didn’t understand.</p>\n<blockquote><p>Everyone is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid. – unknown (but attributed to Einstein)</p></blockquote>\n<p>It was a little bit terrifying to be a marketer in this tech-celebratory world. And it took me a long time to accept I have something significant to offer at WooCommerce (and now Automattic) and feel confident enough to add my voice to conversations. Why? I guess I am proud. In the early days I was constantly tempted to pretend to know more than I do (for the record this is a bad idea) and developed a hefty dose of imposter syndrome, which worsened when Automattic acquired WooCommerce. I found myself wondering if they would have hired me.</p>\n<p>For a few months, the fear I felt kept me from bringing to the table the valuable things I did know.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_7373-min.jpg\"><img class=\"size-large wp-image-1472\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_7373-min-1024x768.jpg\" alt=\"Standing by a concrete wall with a vast ocean scene behind.\" width=\"960\" height=\"720\" /></a>With my team in Cape Town earlier this year. Nicole, Aviva, me, Gareth and Kevin &lt;3.\n<p>It’s scary admitting a lack of understanding, it takes strong relationships with colleagues (which take time to build, especially remotely) to raise your hand and be vulnerable. But the problem is that not doing so ends up blocking and robbing the contribution you could make. It silences your voice. It is not possible to be a master of all trades: yes I need a working understanding of our products, but I don’t need to become a Javascript developer. One body, many parts, all valuable.</p>\n<p>This learning curve was uncomfortable for me. At various points I have wanted to bail, or take a year to learn how to code fulltime. But I am really glad I haven’t because marketing is vital and that is what I can do. And do very well (when I’m not looking over my shoulder).</p>\n<p>It’s okay to be an expert in what you love, not what other people love. It’s why we have teams. It’s what makes the world interesting.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_3576-min.jpg\"><img class=\"size-large wp-image-1473\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_3576-min-1024x768.jpg\" alt=\"Classroom filled with people\" width=\"960\" height=\"720\" /></a>The first WordPress London meetup I attended. It was pretty awesome.\n<h3>Remote relationships take longer to build but they sure run deep.</h3>\n<p>My degree was in Psychology and it remains an active interest. ENFJ is proudly in my Twitter bio, I love taking personality tests and calling out and connecting with the underbellies and depths of fellow human beings.</p>\n<blockquote><p>&#8220;<strong>My friends are my estate</strong>. Forgive me then the avarice to hoard them.&#8221; – Emily Dickinson</p></blockquote>\n<p>If you’re familiar with Gallups Strengthfinder, I’m a Relator to the bone. People often ask how I have the discipline to work from home but that’s pocket change compared to the relational challenge. Showing up to work and being productive hasn’t been the thing I’ve found difficult – it’s trying to build relationship digitally with people far away and in different timezones.</p>\n<p>Plus I find there is a certain type of rapport, creativity, and energy that is really hard to create remotely when it comes to brainstorming and collaborating. The buzz of having an idea and someone else adding to it IRL, growing it into something greater. This was not a comfortable thing, but again choosing to stay has proven invaluable.</p>\n<p><strong>Remote relationships take longer to build, but they sure run deep</strong>. The bonding that happens when you come together for meetups and WordCamps is extraordinary. I have grown to properly know and love my colleagues (not all 500+ Automatticians yet but certainly my immediate team) and a bunch of awesome WordPress people I’ve met.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8319-min.jpg\"><img class=\"size-large wp-image-1474\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_8319-min-1024x768.jpg\" alt=\"On-screen grid of faces in a google hangout\" width=\"960\" height=\"720\" /></a>Well hello Woo people. Here’s us hanging out on Air.\n<p>It’s tiring flying to meetups, and you miss home, but it’s now becoming hard to leave them. My heart sometimes feels like it is scattered in little bits: a fragment with Scotty and the Dekode crew in Norway, another few with Louise in Kwazulu Natal, Cobus and Dom in Cape Town and chunks with Nicole and Aviva stateside. It’s fragmenting, but what a privilege.</p>\n<p>To keep me grounded day to day, I’ve helped start and now am involved in running a non-profit coworking space, which has opened up a whole new web of relationships in London. If you’re ever in town, pop into <a href=\"http://www.arkcoworking.com/\">ARK Coworking</a> for a pour over coffee.</p>\n<p>Working remotely is different. But it’s a pretty niche kind of special to have a web of people around the world that you would otherwise be totally unconnected to.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4183-min.jpg\"><img class=\"size-full wp-image-1475\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4183-min.jpg\" alt=\"People standing astride bikes, flashing gang symbols.\" width=\"749\" height=\"549\" /></a>The Woo biker gang on a marketing meetup near Lake Michigan, 2015\n<p>Which brings me to another uncomfortable hurdle brought squarely to me by WordPress: the challenge of responding well to diversity and difference.</p>\n<h3>Thinking something for a long time doesn’t mean it’s true.</h3>\n<p>Part of <a href=\"https://automattic.com/creed/\">Automattic’s creed</a> is to never stop learning. Being part of WordPress has brought me into close proximity with a more varied, vocal, challenging, and diverse group than I could have made up.</p>\n<p>The thing about being a human is you only ever get to be one of them. One in over seven billion. How much about other people and parts of the world you don’t live in do you know, really? How much do I? Being part of WordPress has opened my eyes to diversity in a way that is hard to describe. Emigrating helped too, but it is very possible to live in a bubble wherever you go.</p>\n<blockquote><p>A long habit of not thinking a thing wrong gives it a superficial appearance of being right. – Thomas Paine</p></blockquote>\n<p>Just because something has always been a certain way, doesn’t make it right. Being part of WordPress, and Automattic, has helped me greatly in learning how to hold what I believe to be right and true gently, and have equal respect for other people’s right and true.</p>\n<p>I ran the WooCommerce London meetup for two years which brought me into contact with a very mixed group; I was part of Automattic’s diversity workshop at the GM which was educational to say the least; when my friend Rosie started a <a href=\"http://mouthywomen.work/\">blog</a> to highlight out how mouthy women get told they’re too masculine, I got behind her heart and soul.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-13.21.46-min.png\"><img class=\"wp-image-1476 size-full\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-13.21.46-min.png\" alt=\"Stewart Ritchie sharing at the WooCommerce London meetup. Photo: Gabor Javorsky.\" width=\"601\" height=\"447\" /></a>Stewart Ritchie sharing at the WooCommerce London meetup. Photo: Gabor Javorsky.\n<p>The most poignant example of this for me was much closer to home. I wrote some copy a while ago as the backstory of Woo’s ninja mascot, Hiro and included in it a bunch of references to Japanese culture that, though well intentioned, turned out to be not okay. It had been up for ages before someone with a different enough perspective flagged it. Ouch.</p>\n<p>I went home after a long day of tears and much Slack messaging and confided in my Malaysian flatmate about it, half expecting him to comfort me and say the whole thing really wasn’t such a big deal and that it didn’t bother him. Instead his only comment was: “<em>That’s good. It will make your company better.</em>”</p>\n<p>We live, we learn. We wound, we grow.</p>\n<p>John Maeda, who recently joined Automattic as Head of Design and Inclusion, calls such oversights in our thinking ‘lacunae’. Being part of the worldwide community of WordPress has brought a number of my own lacunae into sharp focus. It’s also made me more able to exist peacefully alongside people whose views I don’t share. I’m a human, they’re a human. Two in seven billion.</p>\n<p>Now, the idea of stepping away and retreating to a more homogenous, same-y group of people who tend to agree with me is not just unattractive, it’s scary.</p>\n<p>WordPress helps me be open-minded and it’s vehicle for doing this is individuals who are willing to speak up. Let’s help each other, as kindly and graciously as we can.</p>\n<h3>Marketing a WordPress product is difficult.</h3>\n<p>I’ve found marketing WooCommerce challenging for two reasons.</p>\n<p>First there is the classic digital marketer’s problem of how to build relationship with customers you never get to meet. All we have are words online and if we’re lucky some rituals and routines we can inject life into (I wrote about this strategy <a href=\"https://woocommerce.com/2015/11/4-customer-rituals/\">here</a>).</p>\n<p>Over the past two years there have been a number of times I have thrown my hands up in the air and wanted to market something that is just easier to sell (coffee, an awesome gadget, luxury jewelry).</p>\n<p>On top of that eCommerce is a competitive space and selling WordPress can be a little complex messaging-wise, especially for non-coders and those not familiar with WordPress:</p>\n<p><em>Friend: Do I even have WooCommerce yet?</em><br />\n<em> Me: Yes it’s there in your downloads folder.</em><br />\n<em> Friend: <span>&lt;silence&gt;</span>.</em></p>\n<p>Every time I see another seductive Squarespace ad or the daily Shopify case study lands in my inbox (<em>How person x built y and changed the destiny of the human race</em>) – part of me can only see how far we have to go.</p>\n<p>But, I am enjoying fighting the good fight to democratise eCommerce with WordPress. I believe in what we’re doing, and in open source, and even though our competitors have bigger marketing teams and 24/7 phone support I feel a fierce loyalty to Woo.</p>\n<p>I don’t believe marketing has the emphasis it deserves in the WordPress space, but it’s coming to the fore. Great products don’t market themselves. The weaker thing will win if that is what is in front of people. I’m excited to be in this space.</p>\n<h3>Saying less is more. Narrow focus is healthy.</h3>\n<p>As someone who loves to joke around, natter, and come up with ideas, something I have learnt the hard way is that volume of words and number of ideas is not no an indicator of the quality of your contribution.</p>\n<p>It feels nice to be busy, but what is the deliverable?</p>\n<p>Having another great idea is not always helpful. Sometimes what I need to do is shut up and work. The manager versus maker ratio tends to leave a lot of cooks in the kitchen. Ideas are a dime a dozen. Pushing a few strategic things over the line, with your eyes on a goal everyone has agreed on, now that’s a better way.</p>\n<p>Staying focused working remotely can be hard. Fortunately, we have a great system of setting OKRs that my team is particularly diligent at sticking to. There are so. Many. Conversations. Going on all of the time. Focus is a healthy and freeing thing.</p>\n<a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4139-min.jpg\"><img class=\"size-large wp-image-1477\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4139-min-1024x768.jpg\" alt=\"Marina and Louise, heads together, grinning\" width=\"960\" height=\"720\" /></a>My Woo bestie, Louise. Here we are in San Francisco in 2014. I went back to South Africa for her wedding this year :).\n<h3>Inclusion is a very important thing.</h3>\n<p>A final thing I am learning through WordPress, and which has made my uncomfortable for sure, is the importance of inclusion. I touched on this a little already, but it’s something that I have now got my teeth into and am not going to let go of. Inclusion is a thing.</p>\n<p>Something that is great about WordPress is that intrinsically inclusive, it’s open to all.</p>\n<p>It isn’t only about big shiny success stories where people are making thousands of dollars. It’s people all over the world, fighting to make WordPress available in all languages; it’s faithful meetup organisers sharing knowledge with those who are just starting out; it’s the GPL; it’s having childcare at WordCamps; it’s using <em>y’all</em> or <em>folks</em> not <em>guys</em> to greet an audience.</p>\n<p>WordPress is not slick, sometimes things get a bit messy and there are heated discussions on forums and in backchannels. But WordPress is also a lot like how the world should be – democratic, going out of it’s way to make room and include, and with more than just the bottom line driving decisions.</p>\n<h3>Conclusion</h3>\n<p>That’s it from me. I hope sharing just a few of the ways WordPress has made me uncomfortable– what I learnt, and why I am glad I didn’t just bail – will be encouraging.</p>\n<p>Perhaps you are facing some tough things related to work or beyond. Maybe someone has expressed an opinion or belief that has made you uncomfortable. I’d encourage you to pause and take some time to think over whatever it is before acting.</p>\n<blockquote><p>Uncomfortable often means there is something amazing to be learnt.</p></blockquote>\n<p>Let’s be brave, open, and keep on learning together through this wonderful thing called WordPress.</p>\n<p><a href=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4832-min.jpg\"><img class=\"alignnone size-large wp-image-1478\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/IMG_4832-min-1024x768.jpg\" alt=\"Pin board with hundreds of photos all over it.\" width=\"960\" height=\"720\" /></a></p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Uncomfortable doesn’t mean walk away\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Uncomfortable%20doesn%E2%80%99t%20mean%20walk%20away&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Funcomfortable-doesnt-mean-walk-away%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Uncomfortable doesn’t mean walk away\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Funcomfortable-doesnt-mean-walk-away%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Funcomfortable-doesnt-mean-walk-away%2F&title=Uncomfortable+doesn%E2%80%99t+mean+walk+away\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Uncomfortable doesn’t mean walk away\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/&media=https://heropress.com/wp-content/uploads/2016/11/110916-150x150.jpg&description=Uncomfortable doesn’t mean walk away\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Uncomfortable doesn’t mean walk away\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\" title=\"Uncomfortable doesn’t mean walk away\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/uncomfortable-doesnt-mean-walk-away/\">Uncomfortable doesn’t mean walk away</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 09 Nov 2016 12:00:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Marina Pape\";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:83:\"WPTavern: BuddyPress 2.8 Development Kicks Off, 2016 Survey Now Open for Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=63402\";s:7:\"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/buddypress-2-8-development-kicks-off-2016-survey-now-open-for-developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:3278:\"<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>Development for BuddyPress 2.8 kicked off during <a href=\"https://bpdevel.wordpress.com/2016/11/05/dev-chat-summary-for-november-2-2016/\" target=\"_blank\">last week&#8217;s meeting</a> and the target release date was set for January 25. In line with the project&#8217;s <a href=\"https://wptavern.com/buddypress-2-7-development-kicks-off-project-shifts-focus-to-developers-and-site-builders\" target=\"_blank\">recent change of course</a>, the upcoming release will be another one focused on developers and site builders.</p>\n<p>Long time contributor <a href=\"https://profiles.wordpress.org/slaFFik\" target=\"_blank\">Slava Abakumov</a> is leading 2.8 with a focus on reducing the 650+ tickets in BuddyPress Trac by 50%. He will coordinate contributors in working on a UI for developer features that were added in the 2.6 and 2.7 releases, which introduced an API for Group Types. Abakumov wants to dive deeper into security and plans to perform a security audit of the plugin.</p>\n<p>The BuddyPress core team will shape development for 2017 based on feedback from this year&#8217;s <a href=\"https://buddypress.org/2016/11/2016-buddypress-survey-site-builders-developers/\" target=\"_blank\">survey</a>, which opened November 1. It includes 36 questions aimed at site builders and developers, as opposed to previous years where the survey was <a href=\"https://buddypress.org/2014/01/2014-buddypress-survey/\" target=\"_blank\">open to users and anyone connected with the software</a>.</p>\n<p>The project&#8217;s change of direction is evident in the questions this year, which are decidedly developer-focused. According to the BuddyPress core team, these questions were prepared for the project&#8217;s primary audience of site builders and developers, &#8220;an explicit recognition of what BuddyPress has become, and how people use it.&#8221;</p>\n<p>In addition to the usual demographical questions, respondents are asked about their PHP versions, site setups, and local development environments. A new question asks when developers test their sites and extensions against upcoming releases. The survey also asks which template files developers customize when creating themes (with no option to indicate that you&#8217;re not a theme developer). Participants are asked to weigh in on BuddyPress&#8217; problem areas and to give feedback on the most frequent feature requests they receive from community members and clients.</p>\n<p>In 2013 the survey received 178 responses, 338 responses in 2014, and 211 in 2015. Given that the target audience is much narrower in 2016, the number of participants may decline again. However, the core team hopes responses will be more concentrated with the kind of information they find useful. The <a href=\"https://buddypress.org/2016/11/2016-buddypress-survey-site-builders-developers/\" target=\"_blank\">survey</a> will be open through November 20, 2016 and results will be posted before the end of the year.</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, 08 Nov 2016 18:17:40 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WPTavern: WordCamp US Live Stream Tickets Now Available\";s:7:\"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=63030\";s:7:\"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:\"https://wptavern.com/wordcamp-us-live-stream-tickets-now-available\";s: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:2838:\"<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wordcamp-us.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/wordcamp-us.png?resize=1025%2C490&ssl=1\" alt=\"wordcamp-us\" class=\"aligncenter size-full wp-image-59619\" /></a></p>\n<p><a href=\"https://2016.us.wordcamp.org\" target=\"_blank\">WordCamp US</a> is less than a month away and attendees are finalizing their travel plans. In August, organizers were <a href=\"https://wptavern.com/wordcamp-us-calls-for-volunteers-organizers-estimate-3000-attendees\" target=\"_blank\">estimating 3,000 attendees</a> on the ground but official numbers are not yet available as tickets continue to sell. A maximum capacity has not been published, because organizers have a great deal of flexibility to expand the event to thousands more if necessary.</p>\n<p>&#8220;The entire side of the PA Convention Center is ours, and we’re not using all of the spaces that they have,&#8221; WordCamp US co-organizer Alx Block said. &#8220;The sky is the limit.&#8221;</p>\n<p>Last week a world-class lineup of <a href=\"https://2016.us.wordcamp.org/speakers/\" target=\"_blank\">speakers</a> was confirmed from a record number of applicants. The team received 600 submissions (up from 231 last year) and accepted less than 10% of them, according to Block.</p>\n<p>&#8220;I think that WCUS last year really excited a lot of people, and they were interested in being a part of it,&#8221; Block said. &#8220;We also had quite a bit more time on the speaker applications, since in 2015 we planned the entire conference in just about three months.&#8221;</p>\n<p>One exciting change this year is that <a href=\"https://2016.us.wordcamp.org/2016/11/02/wordcamp-us-live-stream/\" target=\"_blank\">live stream tickets</a> will be free for those who are not able to attend the event. There&#8217;s no limit on the number of people who can watch live.</p>\n<p>&#8220;We really felt like there shouldn’t be a barrier to entry in attending WCUS,&#8221; Block said. &#8220;It’s the community’s conference, and everyone should be able to &#8216;attend&#8217; no matter where they physically are. We have some incredible sponsors, and making the live stream free felt like the best move.&#8221;</p>\n<p>Last year&#8217;s live stream tickets included swag from the event, and WCUS 2016 will have commemorative t-shirts for sale in the swag store. In addition to the live stream, all of the sessions will be recorded and uploaded to WordPress.tv. If you are joining by live stream, make sure to <a href=\"https://2016.us.wordcamp.org/tickets/\" target=\"_blank\">reserve your ticket</a> in advance. You can also <a href=\"https://2016.us.wordcamp.org/live-stream/attendee-test/\" target=\"_blank\">test your computer for compatibility</a> ahead of the event.</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:\"Mon, 07 Nov 2016 21:47: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:45:\"WPTavern: Take the 2016 WordPress User Survey\";s:7:\"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=63524\";s:7:\"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://wptavern.com/take-the-2016-wordpress-user-survey\";s: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:1483:\"<p>With <a href=\"https://2016.us.wordcamp.org/\">WordCamp US</a> a little less than a month away, it&#8217;s time to take the <a href=\"https://wordpressdotorg.polldaddy.com/s/wordpress-2016-survey\">2016 WordPress user survey</a>. The survey is quick and easy to fill out with only a few questions to answer. Results are anonymized and will be shared at this year&#8217;s State of the Word presentation.</p>\n<p>Results from last year&#8217;s survey were not shared during Matt Mullenweg&#8217;s State of the Word presentation. During the <a href=\"https://2015.us.wordcamp.org/2015/12/05/state-of-the-word-live-blog/\">question and answer</a> portion, Mullenweg was asked about the results.</p>\n<p>&#8220;Lots of data to go over, but basically more people are using WordPress, app development is growing, lots of people are making their living with WordPress, and other great trends are showing up,&#8221; Mullenweg responded. &#8220;We’ll try to do a blog post about it.&#8221;</p>\n<p>A post highlighting the results from the 2015 survey has yet to be published.</p>\n<p>In 2014, 33K people took the survey and of those 33K, 7,539 or 25% said they make their living from WordPress. Over 90% of respondents said they built more than one site.</p>\n<p>If you use WordPress, please take a few minutes to complete the survey. Also, <a href=\"https://2016.us.wordcamp.org/tickets/\">tickets are still available</a> to attend WordCamp US December 2-4.</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:\"Mon, 07 Nov 2016 17:55:03 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:31;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:23:\"HeroPress: Finally SSL!\";s:7:\"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://heropress.com/?p=1481\";s:7:\"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:34:\"https://heropress.com/finally-ssl/\";s: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:2741:\"<p>I&#8217;ve been wanting to get SSL on HeroPress for a long time, but couldn&#8217;t for a variety of reasons. Well, it&#8217;s finally there! That means the <a href=\"https://heropress.com/plugin/\">HeroPress Widget</a> will finally work properly on sites running SSL, I could someday do a Give campaign, etc.</p>\n<p>One downside is that it broke our connection to WordPress Planet. It&#8217;s fixed now, but while it was down there were two essays that didn&#8217;t make it to the News widget in WordPress, and that made a big difference.  Here they are, using WordPress&#8217; cool oembed tools. Check&#8217;em out and leave a comment if you&#8217;re willing.</p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/fell-wordpress-helped/\">I fell. WordPress helped me up.</a></p></blockquote>\n<p></p>\n<blockquote class=\"wp-embedded-content\"><p><a href=\"https://heropress.com/essays/conquering-obstacles-happiness/\">Conquering My Obstacles To Happiness</a></p></blockquote>\n<p></p>\n<p>&nbsp;</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Finally SSL!\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Finally%20SSL%21&via=heropress&url=https%3A%2F%2Fheropress.com%2Ffinally-ssl%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Finally SSL!\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Ffinally-ssl%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Ffinally-ssl%2F&title=Finally+SSL%21\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Finally SSL!\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/finally-ssl/&media=http://heropress.com/wp-content/plugins/rtsocial/images/default-pinterest.png&description=Finally SSL!\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Finally SSL!\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/finally-ssl/\" title=\"Finally SSL!\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/finally-ssl/\">Finally SSL!</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 07 Nov 2016 16:02:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}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:105:\"Post Status: Learning WordPress development and how employers should look at candidates — 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=30291\";s:7:\"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://poststatus.com/learning-wordpress-development-employers-look-candidates-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:2050:\"<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 about how they learned WordPress development, how employers should look at candidates for skill hiring, and various resources they find valuable for learning WordPress.</span></p>\n<!--[if lt IE 9]><script>document.createElement(\'audio\');</script><![endif]-->\n<a href=\"https://audio.simplecast.com/52463.mp3\">https://audio.simplecast.com/52463.mp3</a>\n<p><a href=\"http://audio.simplecast.com/52463.mp3\">Direct Download</a></p>\n<h3>Links</h3>\n<ul>\n<li><a href=\"http://justbuildwebsites.com/\">Just Build Websites</a></li>\n<li><a href=\"https://www.lynda.com/in/WordPress\">Lynda.com WordPress tutorials</a></li>\n<li><a href=\"https://wpinonemonth.com/\">WP in One Month</a></li>\n<li><a href=\"http://wordpress.stackexchange.com/\">WordPress Development Stack Exchange</a></li>\n<li><a href=\"http://wordpress.tv/2013/04/22/brian-krogsgard-going-for-it-how-to-become-a-respected-wordpress-developer/\">How to Become a Respected WordPress Developer</a></li>\n</ul>\n<h3>Sponsor: Gravity Forms</h3>\n<p>This episode is sponsored by Gravity Forms. <a href=\"http://www.gravityforms.com/\">Gravity Forms</a> makes the best web forms on the planet. Over a million WordPress sites are already using Gravity Forms. Is yours? For more information, check out their <a href=\"http://www.gravityforms.com/\">website</a> and thank you to Gravity Forms for 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:\"Mon, 07 Nov 2016 14:38:13 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s: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: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:82:\"WPTavern: WordPress Plugin Team Publishes Revamped Guidelines for Plugin Directory\";s:7:\"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=63410\";s:7:\"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/wordpress-plugin-team-publishes-revamped-guidelines-for-plugin-directory\";s: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:3100:\"<a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/writing.jpg?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/02/writing.jpg?resize=1025%2C472&ssl=1\" alt=\"photo credit: Green Chameleon\" class=\"size-full wp-image-51302\" /></a>photo credit: <a href=\"https://stocksnap.io/photo/8Y0EDX4VP9\">Green Chameleon</a>\n<p>Two months ago, revised guidelines for the WordPress Plugin Directory were <a href=\"https://wptavern.com/wordpress-plugin-team-revamps-guidelines-invites-feedback-on-github\" target=\"_blank\">opened up on GitHub for public feedback</a>. This transparent and open process of updating the guidelines resulted in more than a dozen contributors submitting pull requests with improvements to the language and content. The <a href=\"https://developer.wordpress.org/plugins/wordpress-org/detailed-plugin-guidelines/\" target=\"_blank\">revamped guidelines</a> have now replaced the previous ones with language and expectations that are clearer and easier to understand.</p>\n<p>&#8220;In addition to rewriting the guidelines, we took the time to codify the expectations of developers and cost of not abiding by the guidelines, as well as a reminder that we do remove plugins for security issues,&#8221; plugin team member Mika Epstein said in the <a href=\"https://make.wordpress.org/plugins/2016/11/01/revised-guidelines-are-live/\" target=\"_blank\">announcement</a>. &#8220;We are doing our best to be transparent of what we expect from you and, in return, what you can expect from us.&#8221;</p>\n<p>After several incidents this year where unclear guidelines contributed to confusion on issues like <a href=\"https://wptavern.com/wordpress-plugin-directory-cracks-down-on-incentivized-reviews-despite-lack-of-official-guideline\" target=\"_blank\">incentivized reviews</a> and <a href=\"https://wptavern.com/the-wordpress-plugin-directory-will-no-longer-accept-frameworks\" target=\"_blank\">developers submitting frameworks</a>, the plugin team made the jump to update the five-year-old document. Although there are not major changes, some of the guidelines were considerably expanded for clarity. This includes #9: &#8220;The plugin and its developers must not do anything illegal, dishonest, or morally offensive.&#8221; The list was updated with several more examples of infractions that would land under this category.</p>\n<p>&#8220;It’s a massive undertaking to re-write guidelines in the public eye in a way that won’t pull the rug out from anyone,&#8221; Epstein said. &#8220;Our goal was to clarify, not totally change, but also to address the needs of an ever changing technology.&#8221;</p>\n<p>Because the plugin directory was created to serve the WordPress project and its users, it doesn&#8217;t function like many other popular directories and marketplaces. Clear language and expectations are important, especially with WordPress&#8217; growing international user base. The newly updated guidelines should cut down on incidents where the plugin team has to enforce guidelines that were not explicitly documented.</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:\"Mon, 07 Nov 2016 06:03:59 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:28:\"BuddyPress: BuddyPress 2.7.2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=260750\";s:7:\"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://buddypress.org/2016/11/buddypress-2-7-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:888:\"<p>BuddyPress 2.7.2 is now available. This is a maintenance release and a recommended upgrade for all BuddyPress installations.</p>\n<p>BP 2.7.2 fixes a bug which ignored deprecated code being used in existing installations. For more information, see <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=2.7.2\">the 2.7.2 milestone</a> on <a href=\"https://buddypress.trac.wordpress.org/\">BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 2.7.2 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out <a href=\"https://codex.buddypress.org/releases/version-2-7-2/\">2.7.2 changelog</a>, or stop by <a href=\"https://buddypress.org/support/\">our support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">Trac</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 05 Nov 2016 16:30: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";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:68:\"WPTavern: PressNomics 5 Scheduled for April 6-8, 2017 in Phoenix, AZ\";s:7:\"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=63490\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://wptavern.com/pressnomics-5-scheduled-for-april-6-8-2017-in-phoenix-az\";s: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:1928:\"<p><a href=\"https://pressnomics.com/\">PressNomics</a>, an annual conference devoted to the economics of WordPress <a href=\"https://pressnomics.com/2016/11/pressnomics-5-april-6th-8th-2017/\">has announced</a> that the fifth iteration of the event will take place April 6-8, 2017 at Tempe Mission Palms Hotel, in Phoenix, AZ. The event is organized by Joshua Strebel of <a title=\"http://page.ly\" href=\"http://page.ly\">Pagely</a>, a managed WordPress hosting company that recently celebrated its <a href=\"https://pagely.com/blog/2016/09/managed-wordpress-hosting-7yrs/\">seventh birthday</a>.</p>\n<p>A hallmark of the event is its contributions to charity. Since PressNomics one, the event has raised more than $40K for various charities including, <a href=\"http://www.stjude.org\">St. Jude Children&#8217;s Research Hospital</a>, <a href=\"http://curesearch.org\">CureSearch.org</a>, <a href=\"https://bensbells.org/\">BensBells</a>, and Big Brothers and Big Sisters.</p>\n<p>In addition to the conference, there will be a social Saturday where attendees can participate in a golf tournament or go on an excursion to explore the Art&#8217;s and Culture of the area. The social activities will be available as a separate purchase of $50 when buying your tickets. To take full advantage of the event, organizers suggest that attendees fly in on Wednesday, April 5th and leave on Sunday, April 9th.</p>\n<p>Tickets have yet to go on sale and the speaker lineup is in the process of being finalized. If you want to be one of the first to know when tickets go on sale, you&#8217;re encouraged to sign up to the <a href=\"https://pressnomics.com/\">event&#8217;s email list</a>. For insight into what it&#8217;s like to attend PressNomics, check out my <a href=\"https://wptavern.com/envato-stats-tips-for-getting-things-done-and-more-at-pressnomics-3\">review of PressNomics 3 </a>held in January of 2015.</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, 04 Nov 2016 18:53:29 +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: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:30:\"Dev Blog: WordPress 4.7 Beta 2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://wordpress.org/news/?p=4552\";s:7:\"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/11/wordpress-4-7-beta-2/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4195:\"<p>WordPress 4.7 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.7, 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.7-beta2.zip\">download the beta here</a> (zip).</p>\n<p>Notable changes since WordPress 4.7 Beta 1:</p>\n<ul>\n<li><strong>Twenty Seventeen:</strong> The theme wasn&#8217;t being installed on upgrades &#8211; sorry about that! Now you should see it if you&#8217;re upgrading an existing site. There are also plenty of fixes, especially for the header and small screen views.</li>\n<li><strong>Edit shortcuts:</strong> These are always visible while editing (hide them on bigger screens by collapsing the controls) and should now work properly in Firefox. (<a href=\"https://core.trac.wordpress.org/ticket/27403\">#27403</a> and <a href=\"https://core.trac.wordpress.org/ticket/38532\">#38532</a>)</li>\n<li><strong>REST API endpoints:</strong> There have been a number of changes over the past week; your attention is requested on the following:\n<ul>\n<li>The <code>DELETE</code> response format has changed and may need to be accounted for. (<a href=\"https://core.trac.wordpress.org/ticket/38494\">#38494</a>)</li>\n<li>Enabled querying by multiple post statuses. (<a href=\"https://core.trac.wordpress.org/ticket/38420\">#38420</a>)</li>\n<li>Return an error when JSON decoding fails. (<a href=\"https://core.trac.wordpress.org/ticket/38547\">#38547</a>)</li>\n</ul>\n</li>\n<li><strong>More developer notes</strong>\n<ul>\n<li><a href=\"https://make.wordpress.org/core/2016/10/28/fine-grained-capabilities-for-taxonomy-terms-in-4-7/\">Fine grained capabilities for taxonomy terms</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/10/29/wp_taxonomy-in-4-7/\"><code>WP_Taxonomy</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/02/wp_list_sort-and-wp_list_util-in-4-7/\"><code>wp_list_sort()</code> and <code>WP_List_Util</code></a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/post-type-templates-in-4-7/\">Post type templates</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/new-post-type-labels-in-4-7/\">New post type labels</a></li>\n<li><a href=\"https://make.wordpress.org/core/2016/11/03/attributes-for-resource-hints-in-4-7/\">Attributes for resource hints</a></li>\n</ul>\n</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&mode=stop_on_copy&rev=39142&stop_rev=38995&limit=200&verbose=on&sfp_email=&sfph_mail=\">almost 150 changes</a> in the last week.</li>\n</ul>\n<p>For more of what’s new in version 4.7, <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">check out the Beta 1 blog post</a>.</p>\n<p>If you want a more in-depth view of what major changes have made it into 4.7, <a href=\"https://make.wordpress.org/core/tag/4-7/\">check out posts tagged with 4.7 on the main development blog</a>, or look at a <a href=\"https://core.trac.wordpress.org/query?status=closed&resolution=fixed&milestone=4.7&group=component&order=priority\">list of everything</a> that’s changed. There will be more developer notes to come, so keep an eye out for those as well.</p>\n<p>Do you speak a language other than English? <a href=\"https://translate.wordpress.org/projects/wp/dev\">Help us translate WordPress into more than 100 languages!</a></p>\n<p><strong>If you think you’ve found a bug</strong>, you can post to the <a href=\"https://wordpress.org/support/forum/alphabeta\">Alpha/Beta area</a> in the support forums. We’d love to hear from you! If you’re comfortable writing a reproducible bug report, <a href=\"https://make.wordpress.org/core/reports/\">file one on WordPress Trac</a>, where you can also find <a href=\"https://core.trac.wordpress.org/tickets/major\">a list of known bugs</a>.</p>\n<p>Happy testing!</p>\n<p><em>Ya es la hora</em><br />\n<em> Time for another beta</em><br />\n请您帮下忙!</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 04 Nov 2016 17:39: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:\"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:\"\";}}}}}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:85:\"WPTavern: A Preview of the Custom CSS Editor Added to the Customizer in WordPress 4.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:29:\"https://wptavern.com/?p=63481\";s:7:\"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://wptavern.com/a-preview-of-the-custom-css-editor-added-to-the-customizer-in-wordpress-4-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:3295:\"<p>WordPress 4.7 is a little more than a <a href=\"https://wordpress.org/about/roadmap/\">month away</a> and is going to be packed with new features and improvements. In particular, <a href=\"https://make.wordpress.org/core/2016/10/24/customize-update-2016-10-23/\">five feature projects</a> related to the customizer were approved for merge and will be part of the release. One of the feature projects is the custom <a href=\"https://make.wordpress.org/core/2016/10/11/feature-proposal-better-theme-customizations-via-custom-css-with-live-previews/\">CSS editor</a> that enables users to <a href=\"https://wptavern.com/the-days-of-creating-child-themes-for-simple-css-changes-may-soon-be-over\">make CSS changes to a theme</a> without having to create a <a href=\"https://codex.wordpress.org/Child_Themes\">child theme</a>.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?ssl=1\"><img class=\"size-full wp-image-63483\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/WP47CustomizerCSSEditor.png?resize=1025%2C394&ssl=1\" alt=\"CSS Editor in The WordPress 4.7 Customizer\" /></a>CSS Editor in The WordPress 4.7 Customizer\n<p>In WordPress 4.7, there&#8217;s a new section in the customizer labeled Additional CSS. Clicking the label displays a blank pane with a short description of what users can do. Clicking the help icon displays a short explanation of what CSS is with a link to a <a href=\"https://codex.wordpress.org/Know_Your_Sources#CSS\">help document</a> on the Codex. The Additional CSS pane is more like a text area than an editor.</p>\n<p>Unlike Jetpack&#8217;s Edit CSS module, the editor in the customizer lacks line numbers, colored text, and other conveniences. However, these are features that are likely to be added in future iterations.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/JetpacksEditCSSModule.png?ssl=1\"><img class=\"size-full wp-image-63484\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/JetpacksEditCSSModule.png?resize=601%2C423&ssl=1\" alt=\"Jetpack\'s Edit CSS Module\" /></a>Jetpack&#8217;s Edit CSS Module\n<p>There are a couple of things to keep in mind before using Additional CSS. First, it does not have revision support enabled. Weston Ruter, WordPress core committer, <a href=\"https://core.trac.wordpress.org/ticket/35395#comment:76\">says</a> revision support is disabled by default and requires a plugin.</p>\n<p>Second, changes are theme specific and are not global. Luke Cavanagh <a href=\"https://core.trac.wordpress.org/ticket/35395#comment:83\">has inquired</a> on whether an option will be added in the future to enable global CSS changes which could come in handy for making tweaks for active plugins.</p>\n<p>During testing, I didn&#8217;t encounter any issues with writing or pasting CSS code into the Additional CSS area. I encourage you to download and install <a href=\"https://wordpress.org/news/2016/10/wordpress-4-7-beta-1/\">WordPress 4.7 beta 1</a> and try it out for yourself and let us know your thoughts. If you think you&#8217;ve encountered a bug while using WordPress 4.7 beta 1, please report it on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta section</a> of the support forums.</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, 04 Nov 2016 08:57: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: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:28:\"BuddyPress: BuddyPress 2.7.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=260677\";s:7:\"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://buddypress.org/2016/11/buddypress-2-7-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:842:\"<p>BuddyPress 2.7.1 is now available. This is a maintenance release and a recommended upgrade for all BuddyPress installations.</p>\n<p>BP 2.7.1 fixes bugs in several components. For more information, see <a href=\"https://buddypress.trac.wordpress.org/query?group=status&milestone=2.7.1\">the 2.7.1 milestone</a> on <a href=\"https://buddypress.trac.wordpress.org/\">BuddyPress Trac</a>.</p>\n<p>Update to BuddyPress 2.7.1 today in your WordPress Dashboard, or by <a href=\"https://wordpress.org/plugins/buddypress/\">downloading from the wordpress.org plugin repository</a>.</p>\n<p>Questions or comments? Check out <a href=\"https://codex.buddypress.org/releases/version-2-7-1/\">2.7.1 changelog</a>, or stop by <a href=\"https://buddypress.org/support/\">our support forums</a> or <a href=\"https://buddypress.trac.wordpress.org/\">Trac</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, 03 Nov 2016 21:12:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"@mercime\";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:95:\"WPTavern: Fall Enrollment for Zac Gordon’s JavaScript for WordPress Course Closes This Friday\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://wptavern.com?p=63428&preview=true&preview_id=63428\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:103:\"https://wptavern.com/fall-enrollment-for-zac-gordons-javascript-for-wordpress-course-closes-this-friday\";s: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:2605:\"<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/12/js.jpg?ssl=1\"><img class=\"size-full wp-image-49672\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2015/12/js.jpg?resize=1024%2C481&ssl=1\" alt=\"photo credit: ParisJS, May 2012 - (license)\" /></a>photo credit: <a href=\"http://www.flickr.com/photos/24196940@N06/7305045236\">ParisJS, May 2012</a> &#8211; <a href=\"https://creativecommons.org/licenses/by/2.0/\">(license)</a>\n<p>Zac Gordon, a WordPress educator, has <a href=\"https://javascriptforwp.com/fall-enrollment-details-2016/\">opened enrollment</a> for the Fall for his <a href=\"https://javascriptforwp.com/\">JavaScript for WordPress</a> course. Gordon <a href=\"https://wptavern.com/zac-gordon-to-kickstart-javascript-master-course-for-wordpress\">created the course</a> after <a href=\"https://wptavern.com/treehouse-drops-support-for-wordpress-education\">Treehouse dropped WordPress</a> from its library in late 2015.</p>\n<p><a href=\"https://javascriptforwp.com/#enroll\">Open enrollment</a> began on October 25th and ends this Friday, November 4th. You can either take all four parts of the course for $397 or a single part for $199. The next open enrollment period will be in 2017.</p>\n<h2>A Four Part Course</h2>\n<p>The first part of the <a href=\"https://javascriptforwp.com/course-outline/\">course covers</a> basic and advanced JavaScript skills and development tools. Students will also learn how to create a single page web application built with JavaScript called VanillaPress.</p>\n<p>The second part of the course is dedicated to JavaScript libraries and frameworks where students will learn how to build a decoupled web application called ReactPress using React and the WordPress REST API.</p>\n<p>The third part covers the WordPress REST API. Using OAuth, students will add OAuth support for ReactPress and add Save and Edit abilities to the app via the API.</p>\n<p>The fourth and final part of the course is devoted to real world projects. Students will learn how to build single page plugins, mobile apps, and JavaScript powered themes that use the REST API.</p>\n<p>The course is geared towards those who want to &#8220;Learn JavaScript, deeply,&#8221; a task <a href=\"https://wptavern.com/state-of-the-word-2015-javascript-and-api-driven-interfaces-are-the-future-of-wordpress\">assigned to the WordPress community</a> by Matt Mullenweg in his 2015 State of the Word presentation. For more details on the course material and to enroll, visit the <a href=\"https://javascriptforwp.com/\">JavaScript for WordPress site</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, 02 Nov 2016 22:39: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: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:47:\"HeroPress: Conquering My Obstacles To Happiness\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=1461\";s:7:\"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://heropress.com/essays/conquering-obstacles-happiness/\";s: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:18206:\"<img width=\"960\" height=\"480\" src=\"http://20094-presscdn.pagely.netdna-cdn.com/wp-content/uploads/2016/11/110216-min-1024x512.jpg\" class=\"attachment-large size-large wp-post-image\" alt=\"Pull Quote: Welcome failures because they will provide you with new learning.\" /><p>The late great Superman Christopher Reeve once said “<em>a hero is someone who, in spite of weakness, doubt or not always knowing the answers, goes ahead and overcomes anyway.</em>” What if a hero instead is someone who, because of weakness, doubt or not knowing the answers, goes ahead and overcomes?</p>\n<p>To get to the happy and fulfilling place I am in life today I’ve had to learn how to overcome self-doubt and build up my strengths around it. To do that, I discovered the power of self-reflection and began a journey to understand the very core of who I am. I’m not a hero, but I know when to be one. When fear and worry appears I recognize it. And then I conquer it.</p>\n<p>If you don’t think you are good enough or smart enough to be and have what you want in life, then fear is holding you back, too. The story that follows is both inspired by and written for you.</p>\n<p>You may not believe it yet, but you’ve already got what it takes within yourself to live a happier life.</p>\n<p>Let me show you how you can discover it.</p>\n<h3>This Is Me Today.</h3>\n<p>I am a Norwegian expat in Canada. Here, I live in the heart of the world’s most multicultural city, Toronto, and lead a happy and full life with my wife and our furkid. By so many standards around our globe, my lifestyle is privileged. It hasn’t come easy, and I often am reminded of how fortunate I am.</p>\n<p>I never could have envisioned living this life when I, one and a half decades ago, trapped, lost and without hope and goals for the future, decided on a whim to learn how to code and develop websites. I read about people making a living out of it, yet didn’t believe it was something I myself could do.</p>\n<blockquote><p>After a year of trying, failing and learning I began to prove myself wrong.</p></blockquote>\n<p>Today I work at XWP, a global company powered remotely by people working from their homes around the world. Our core expertise is WordPress. Our team dreams up and engineers platforms, tools and workflows that let companies more effortlessly connect with their audience. We help our clients to sell and deliver their services and product, and grow communities that serves as an extension of their businesses.</p>\n<p>XWP’s roots date back to 2004, and I’ve been part of the journey for 10 of those years. In my current role I serve a team of 40 people. I was fully entrusted with the care of the company and the people working there by its owner in 2014. I am responsible for guiding our company vision, strategy and direction while ensuring its healthy growth and great performance. A vital area of my mandate is helping each person on our team have meaningful, impactful work in a purpose filled role they can be successful in.</p>\n<p>The workplace environment and my role allows me to connect directly with my own professional purpose &#8211; to be a catalyst and energizer in helping people discover their personal and professional strengths, and uncover the opportunities and possibilities it can bring in their life. At work, I am also able to apply my strength of bringing people together to build unity and community.</p>\n<p>At home, I am at my happiest when spending time with my wife and our senior rescue lab. The love I give and receive, our deep and our silly conversations together, and all the laughs we share are things that fills me up and re-energizes me. Cooking and serving food, especially for a small crowd, also energizes me. I’m known for preparing elaborate meals with menus that can take days to plan to get “just right”. Earlier this year I completed a Culinary Arts program at George Brown College here in Toronto to further explore my passion for food and for service.</p>\n<p>My whole life I’ve found joy in doing sports. In my youth I actively played football/soccer and volleyball and did well with it. Since moving to Toronto I’ve taken up running, and I’ve discovered a way to keep myself motivated to exercise and train is to sign up for running races. It also has become a way I get to compete against myself, measuring my improvement to pace and finishing times. In 2015 I ran my first half-marathon. My goal was to run a full marathon this year, but I pushed myself too hard and strained a muscle, so I’ll run it next year instead. I am looking forward to passing that 42.2km mark in under 4 hours.</p>\n<ul>\n<li>I lead my life guided by a set of deeply held values, principles and beliefs:</li>\n<li>I value compassion, kindness, care, integrity and authenticity.</li>\n<li>I believe in serving others before myself.</li>\n<li>I offer my trust from the very start of a relationship, choosing to believe everyone has good intent in their heart.</li>\n<li>I strive to listen to and understand others. This lets me be empathic which will help me serve others needs better.</li>\n<li>I am of the opinion that everyone deserves to live a happy, fulfilling life, regardless of any personal flaw.</li>\n<li>I recognize my flaws and build up my strengths around them.</li>\n</ul>\n<p>I am so grateful to have discovered all of this about myself at an early stage in life so I can live authentically who I am today and embrace all the opportunities it is affording me.</p>\n<h3>When I Discovered My Strengths.</h3>\n<p>I was invited to join the team at XHTMLized (today known as XFive, and a sister company of XWP), as a front-end developer in 2006. There was no shortage of work, the demand for its PSD-to-HTML service was growing rapidly. Opportunities to be part of great projects with exciting brands kept coming my way, and I continued to hone and develop my skills as a developer and project lead. Opportunities to be part of building the company surfaced, and I began investing time into helping the business grow.</p>\n<p>Trying on and wearing the hats of different areas of the business was encouraged. I served in a variety of roles that touched on most every function of the business, including project management, sales and account management, finance and HR. I would often run into new and unfamiliar territory. Through my own determination I battled my fear of failure, and figured out how to do the things that needed to be done. I was surrounded by people who believed in me and recognized my strengths and achievements even when I wasn’t able to see them myself.</p>\n<p>It was here that my belief in trust, empowerment, collaboration and autonomy in the workplace was shaped because I was experiencing how powerful it was first hand.</p>\n<p>When our WordPress-focused team came together to form XWP in 2014, the opportunity to lead the company surfaced.</p>\n<p>While faced with startup jitters and challenges of building up a brand new business, and while working with a team of enormous potential, I became uncertain of my own place in it. I questioned my ability to add value, to set us up in a way that would help us fulfill our potential. I began questioning my professional future. To deal with this uncertainty, I chose to start working with a professional coach. It was a decision that would greatly alter how I viewed myself and where I was in my career.</p>\n<p>Through the work with my coach, I was introduced to the concept of <em>unique ability</em>, a belief that at the heart of who you are lies the secret to your greatest success, best quality of life, and biggest contribution to the world. It gave me new hope. I began the work to define my own unique ability. I discovered the concept of <em>Servant Leadership</em>, the understanding that leadership is not for personal power or gain but it is in service to others. This deeply resonated with me. I had seen traits of Servant Leadership in people I worked with and I was unknowingly applying aspects of it in my own life.</p>\n<p>Within 6 months of coaching I had made the decision to pursue the role I have in the company today. I was believing in myself again and recognized that I could continue to make meaningful contribution and impact at the workplace I already had.</p>\n<p>I am reminded of a quote that has served me well over the last decade of my life and often comes to mind at times when I forget my strengths:</p>\n<p>“You must do the thing you think you cannot do”. &#8211; Eleanor Roosevelt</p>\n<h3>A Personal Sidestory.</h3>\n<p>My biggest personal transformation to date began when I found myself at rock bottom.</p>\n<p>I was at a complete and utter dead end in most areas of my life when I chose to end a personal relationship that had kept me abroad in the U.S for 12 years. I had come to the realization that in order to have the positive change I needed for myself, I had to be the change. I found the courage within to take the action needed to close an unfulfilling and unhappy chapter of life.</p>\n<blockquote><p>To do that, I needed to break with almost everything around me and start fresh &#8211; and it was <em>terrifying.</em></p></blockquote>\n<p>And exhilarating. But mostly, it was just terrifying. I had to let go of people I had grown close to and become dependent on. I didn’t have money in my own pocket nor did I have a home of my own to go back to in Oslo. I put my pride aside and asked for help from my family and the company I was working for so I could do what I needed to do for myself. I renewed an expired passport. I booked a plane ticket. I made sure I met all requirements necessary to bring my little dog with me. I began shipping the few belongings I had back to Norway. And I prepared my closest friends and extended family there for my departure by asking for their support and understanding of my decision. It was one small step at the time, and each step helped move me forward.</p>\n<blockquote><p>Letting go of what I had then was one of the best decision I have ever made for myself. I gave myself permission to create a better life for myself.</p></blockquote>\n<p>A constant during this challenging period of my life was my remote work. It offered the flexibility I needed to relocate and start my next chapter.</p>\n<p>Back in Oslo, I settled into an apartment which my sister helped me find while I still was overseas and had been unable to travel. I took a few weeks off work, still conflicted with what I wanted out of life and worried about what the future would hold for me. During my leave of absence from work I was called upon to lead an onsite kick-off of a significant multisite WordPress migration project with an important client in Canada. In my mind, I was still in need of “me-time” to get my life in order. But I chose to embrace the opportunity to be there for our team and to serve our client together. It would be another life-changing decision. During my visit to Toronto, I met and fell in love with the person who would become my significant other.</p>\n<h3>Steps To Conquer Your Own Obstacles.</h3>\n<h4>Step 1: Commit To Becoming a Better You</h4>\n<p>I’ve learned through my personal and work experiences that nothing holds you back in life more than yourself. Life has taught me that who you aspire to be and what you want to do is within your reach. It’s within you.</p>\n<p>You can start a transformation that lets you move towards a happier, more fulfilling place by making a commitment to consciously and continuously learn and grow yourself.</p>\n<p>Welcome failures because they will provide you with new learning. You have the ability to overcome them.</p>\n<blockquote><p>Take care to hone skills you have acquired. Develop new skills you aspire to have.</p></blockquote>\n<p>Discover your strengths. Apply them and find ways to develop them further. Your strengths makes up your unique ability, and your unique ability is who you are and why you are here. Use it, it will be your biggest contribution to the world.</p>\n<p>Be your own hero and get out of your own way. When you do, new and often unexpected opportunities are revealed. And you’ll discover that your possibilities in life are limitless.</p>\n<h4>Step 2: Find an Encourager</h4>\n<p>When you are ready to start your own journey of transformation, or if you are in the middle of one now, it’s important to find someone who can be your encourager and your ally on that journey.</p>\n<p>Look for someone in your circle of family or friends, or within the community. If don’t have anyone, I would welcome the opportunity to get to know you and cheer you on!</p>\n<h4>Step 3: Let Yourself Be Inspired.</h4>\n<p>Below are the key resources that helped spark my transformation in significant ways, and has lead me to where I am today. They continue to be sources of inspiration, and I hope they can be yours, too.</p>\n<p><strong>Books</strong></p>\n<ul>\n<li><a href=\"http://strengths.gallup.com/110242/about-book.aspx\">Strengths Based Leadership: Great Leaders, Teams, and Why People Follow</a><br />\n(Tom Rath)</li>\n<li><a href=\"http://uniqueability.com/\">Unique Ability: Creating the Life You Want</a><br />\n(Dan O&#8217;Sullivan, Catherine Nomura, Shannon Waller &amp; Julia Waller)</li>\n<li><a href=\"http://www.wireddifferently.coop\">Wired Differently<br />\n</a>(Vern Dosch, Wally Goulet &amp; Tracy Finneman)</li>\n<li><a href=\"http://www.amy-wallace.com/creativity-inc/\">Creativity Inc.: Overcoming the Unseen Forces That Stand in the Way of True Inspiration</a><br />\n(Ed Catmull &amp; Amy Wallace)</li>\n<li><a href=\"http://www.jimcollins.com/article_topics/articles/good-to-great.html\">Good to Great: Why Some Companies Make the Leap&#8230;And Others Don&#8217;t</a><br />\n(Jim Collins)</li>\n<li><a href=\"http://www.danpontefract.com/the-second-book/\">The Purpose Effect: Building Meaning in Yourself, Your Role and Your Organization</a><br />\n(Dan Pontefract)</li>\n</ul>\n<p><strong>Thought Leaders, Influencers &amp; Contributors to the Servant Leadership Community</strong></p>\n<ul>\n<li>Cheryl Bachelder &#8211; follow <a href=\"https://twitter.com/CABachelder\">@CABachelder</a> (Popeyes)</li>\n<li>Art Barter &#8211; follow <a href=\"https://twitter.com/Art_Barter\">@Art_Barter</a> (Servant leadership Institute)</li>\n<li>Ken Blanchard &#8211; follow <a href=\"https://twitter.com/kenblanchard\">@kenblanchard</a> (The Ken Blanchard Companies)</li>\n<li>Garry Ridge &#8211; follow <a href=\"https://twitter.com/LearningMoment\">@LearningMoment</a> (WD-40)</li>\n<li>Kevin Monroe &#8211; follow <a href=\"https://twitter.com/kevin_monroe\">@kevin_monroe</a> (X Factor Consulting)</li>\n</ul>\n<h3>Giving Thanks.</h3>\n<p>I’d like to thank Topher DeRosia here at HeroPress for giving me the opportunity to share my story. It is against my nature to talk about myself to this extent, but I do it knowing it can serve others. To write my story, I’ve also had to move past my fear of being in the spotlight and accept there may be judgement passed. The reality is that no one will ever hold me to a higher standard or judge me harder than I do myself.</p>\n<p>A very special thanks goes out to my wife, Heather, who bore with me through the, at times, difficult writing process. She has opened my eyes to life’s possibilities. In her, I found a partner I wanted to journey with. She believes in me and helps me believe in myself, and she is my greatest ally and encourager. As I write these words, I recognize they will be published the week of our 4-year wedding anniversary. Our years together have been the very best of my life so far.</p>\n<p>I also want to offer a heartfelt thank you to another big ally and encourager, my coach and friend Jeff. He’s made me believe in pink fluffy unicorns dancing on rainbows, and I am so grateful for him coming into my life and having him be part of the journey.</p>\n<p>Lastly, I’d like to express my deepest gratitude to Dave and to the team at XWP. They have had and continue to have enormous impact on my life, and they hold a very special place in my heart. I look forward to continuing my journey with them.</p>\n<div class=\"rtsocial-container rtsocial-container-align-right rtsocial-horizontal\"><div class=\"rtsocial-twitter-horizontal\"><div class=\"rtsocial-twitter-horizontal-button\"><a title=\"Tweet: Conquering My Obstacles To Happiness\" class=\"rtsocial-twitter-button\" href=\"https://twitter.com/share?text=Conquering%20My%20Obstacles%20To%20Happiness&via=heropress&url=https%3A%2F%2Fheropress.com%2Fessays%2Fconquering-obstacles-happiness%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-fb-horizontal fb-light\"><div class=\"rtsocial-fb-horizontal-button\"><a title=\"Like: Conquering My Obstacles To Happiness\" class=\"rtsocial-fb-button rtsocial-fb-like-light\" href=\"https://www.facebook.com/sharer.php?u=https%3A%2F%2Fheropress.com%2Fessays%2Fconquering-obstacles-happiness%2F\" rel=\"nofollow\" target=\"_blank\"></a></div></div><div class=\"rtsocial-linkedin-horizontal\"><div class=\"rtsocial-linkedin-horizontal-button\"><a class=\"rtsocial-linkedin-button\" href=\"https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fheropress.com%2Fessays%2Fconquering-obstacles-happiness%2F&title=Conquering+My+Obstacles+To+Happiness\" rel=\"nofollow\" target=\"_blank\" title=\"Share: Conquering My Obstacles To Happiness\"></a></div></div><div class=\"rtsocial-pinterest-horizontal\"><div class=\"rtsocial-pinterest-horizontal-button\"><a class=\"rtsocial-pinterest-button\" href=\"https://pinterest.com/pin/create/button/?url=https://heropress.com/essays/conquering-obstacles-happiness/&media=https://heropress.com/wp-content/uploads/2016/11/110216-min-150x150.jpg&description=Conquering My Obstacles To Happiness\" rel=\"nofollow\" target=\"_blank\" title=\"Pin: Conquering My Obstacles To Happiness\"></a></div></div><a rel=\"nofollow\" class=\"perma-link\" href=\"https://heropress.com/essays/conquering-obstacles-happiness/\" title=\"Conquering My Obstacles To Happiness\"></a></div><p>The post <a rel=\"nofollow\" href=\"https://heropress.com/essays/conquering-obstacles-happiness/\">Conquering My Obstacles To Happiness</a> appeared first on <a rel=\"nofollow\" href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 02 Nov 2016 11:00: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:11:\"Tine Haugen\";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:73:\"WPTavern: NaNoWriMo 2016 Kicks Off Today: Write Your Novel 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:29:\"https://wptavern.com/?p=63374\";s:7:\"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:83:\"https://wptavern.com/nanowrimo-2016-kicks-off-today-write-your-novel-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6194:\"<p><a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/nanowrimo.jpg?ssl=1\"><img src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/nanowrimo.jpg?resize=1025%2C402&ssl=1\" alt=\"nanowrimo\" class=\"aligncenter size-full wp-image-63376\" /></a></p>\n<p><a href=\"http://nanowrimo.org/\" target=\"_blank\">NaNoWriMo</a> (National Novel Writing Month) today kicks off its 18th year helping writers achieve their creative goals. The online event is organized by a 501(c)(3) nonprofit organization that encourages participants to work towards writing a 50,000-word novel. Writers commit to posting their word counts to their profiles each day during the event, which runs from November 1-30.</p>\n<p>NaNoWriMo began in 1999 in the San Francisco Bay Area with just 21 writers and grew to 5,000 participants the following year, thanks to promotion from bloggers around the web. In 2015, the project had 431,626 participants, including 80,137 students and educators in the Young Writers Program.</p>\n<h3>WordPress Tools for NaNoWriMo</h3>\n<p>The NaNoWriMo website encourages writers to use their own materials for writing their novels, such as a word-processing program, typewriter, pen and paper, or whatever inspires the most creativity. WordPress is ideally suited for capturing your writing and keeping track of your word count. There are also several plugins that make it easy to break novels up into chapters and export your work into the proper formats for <a href=\"https://wptavern.com/how-to-self-publish-a-book-with-wordpress\" target=\"_blank\">self publishing with WordPress</a>.</p>\n<p><a href=\"https://wordpress.org/plugins/nano-stats/\" target=\"_blank\">Nano Status</a> is a plugin created specifically for NaNoWriMo participants. Public accountability with word counts is one of the motivating factors for many writers who participate in the event, and Nano Stats makes it easy to display your progress in posts, pages, and sidebar widgets. It pulls in word count stats from the NaNoWriMo website for the username entered in the plugin&#8217;s settings.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nano-stats.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/nano-stats.png?resize=616%2C359&ssl=1\" alt=\"nano-stats\" class=\"aligncenter size-full wp-image-63393\" /></a></p>\n<p>The <a href=\"https://wordpress.org/plugins/mybookprogress/\" target=\"_blank\">MyBookProgress</a> plugin is another option for tracking your novel&#8217;s progress and displaying stats. The plugin&#8217;s writing goals and deadline tracking features are customizable so it can also be used for other projects besides NaNoWriMo.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/mybookprogress-widget.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/mybookprogress-widget.png?resize=283%2C156&ssl=1\" alt=\"mybookprogress-widget\" class=\"alignright size-full wp-image-63396\" /></a>MyBookProgress allows users to upload cover images for their books and displays a progress bar using a widget or a shortcode. It also includes MailChimp integration so that readers can subscribe to get progress updates on a book.</p>\n<p>In addition to the customizable goal tracking, MyBookProgress comes with preset template for NaNoWriMo participants who are working to achieve the 50,000-word goal. Progress can be recorded directly inside WordPress for display on your own website, as opposed to having to sign into the NaNoWriMo website. The backend of the plugin includes a writing statistics dashboard to give you an idea of which day of the week is your most productive, and your average percentage per day/week/month. Users can easily share their progress to Facebook or Twitter directly from the plugin&#8217;s writing dashboard.</p>\n<p><a href=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/MyBookProgress.png?ssl=1\"><img src=\"https://i0.wp.com/wptavern.com/wp-content/uploads/2016/11/MyBookProgress.png?resize=805%2C582&ssl=1\" alt=\"mybookprogress\" class=\"aligncenter size-full wp-image-63398\" /></a></p>\n<p><a href=\"https://wordpress.org/plugins/author-wordcount/\" target=\"_blank\">Author Wordcount</a> is a much simpler plugin that allows writers to display one or multiple works in progress via a widget. Current word count and expected (goal) word count can be entered in the admin on the plugin&#8217;s settings page. It also has a simple UI that fits in more seamlessly with WordPress than the MyBookProgress plugin.</p>\n<p><a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/author-wordcount.png?ssl=1\"><img src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/author-wordcount.png?resize=932%2C1198&ssl=1\" alt=\"author-wordcount\" class=\"aligncenter size-full wp-image-63404\" /></a></p>\n<p>During the NaNoWriMo event&#8217;s 18-year history, nearly <a href=\"http://nanowrimo.org/published-wrimos\" target=\"_blank\">400 novels have been published</a> via traditional publishing houses. Participants have also self-published more than 200 novels. If you achieve your goal of finishing a novel and want to look into <a href=\"https://wptavern.com/how-to-self-publish-a-book-with-wordpress\" target=\"_blank\">self-publishing</a>, there are many tools that make it easy to export content hosted on both WordPress.com and self-hosted sites.</p>\n<p>The <a href=\"http://wordpress.org/plugins/anthologize/\" target=\"_blank\">Anthologize</a> plugin allows authors to publish their works in several ebook formats, including PDF, EPUB and TEI. <a href=\"http://wordpress.org/plugins/bookpress-client/\" target=\"_blank\">BookPress Client</a> is another free plugin  that organizes your writing into a custom post type so book posts won’t show up mixed with normal blog posts on your site. It supports both ePub and Kindle mobi formats. WordPress.com users can take advantage of services like <a href=\"http://www.fastpencil.com/\" target=\"_blank\">FastPencil</a> or <a href=\"http://blog2print.sharedbook.com/blogworld/printmyblog/index.html\" target=\"_blank\">Blog2Print</a> for importing their posts into different book reader and print formats.</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, 01 Nov 2016 21:03:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:48:\"Mark Jaquith: The 4 best WordPress hosts of 2016\";s:7:\"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:\"http://markjaquith.wordpress.com/?p=5235\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://markjaquith.wordpress.com/2016/11/01/best-wordpress-hosts-in-2016/\";s: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:6421:\"<p>As a seasoned WordPress developer, I am frequently asked what WordPress web hosts I recommend. There are so many solid choices now! The WordPress ecosystem is truly a bounty of choice in 2016. I could write an exhaustive comparison of all of the options, but these are called &#8220;exhaustive comparisons&#8221; for a reason. Let&#8217;s skip that, and I&#8217;ll just tell you the four WordPress hosts I recommend in five&nbsp;distinct tiers.</p>\n<p>Note that many of these hosts target a range of sites, from starter sites to enterprise sites, so I am picking the hosts that I think fit each tier of site&nbsp;<em>best</em>, even though they might also work for other kinds of sites.</p>\n<h2>Starter Site</h2>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm?afcode=d3f3dc4c98ccbebf43909e7d7971eca7&campaign=WordPress\">SiteGround</a> is one of my favorite WordPress hosting companies. They offer a range of hosting solutions, but their WordPress-tailored plans are a tremendously good value and have many WordPress-specific perks. Ask around the WordPress community — SiteGround&nbsp;is a well-respected company that works hard to win and retain the business of WordPress customers. Their plans start as low as $3.95 a month, which is an incredibly good deal. If you aren&#8217;t sure what you need, SiteGround is what I would choose.</p>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm?afcode=d3f3dc4c98ccbebf43909e7d7971eca7&campaign=WordPress\">Take a look at SiteGround&#8217;s WordPress hosting plans</a>.</p>\n<h2>Developer-Friendly Site</h2>\n<p>What if you know your way around WordPress, want things like Git and <a href=\"https://wp-cli.org/\">WP-CLI </a>access, or want advanced WordPress-friendly caching for your site? <a href=\"https://www.siteground.com/wordpress-hosting.htm?afcode=d3f3dc4c98ccbebf43909e7d7971eca7&campaign=WordPress\">SiteGround has you covered</a> there, too. Their GoGeek plan (currently $14.95 a month) offers all of these perks, unlimited sites, WordPress staging sites, and so much more. I love working with GoGeek-level SiteGround sites, because they work really well and give me access to all the tools that I need as a developer. Or, if you&#8217;re not a developer, but have hired one to work on your site, you may want to upgrade to GoGeek hosting so she can work at maximum efficiency.</p>\n<p><a href=\"https://www.siteground.com/wordpress-hosting.htm?afcode=d3f3dc4c98ccbebf43909e7d7971eca7&campaign=WordPress\">Go sign up for SiteGround&#8217;s GoGeek WordPress hosting</a>.</p>\n<h2>Intermediate&nbsp;Site</h2>\n<p><a href=\"http://shareasale.com/r.cfm?b=917225&u=1391570&m=41388&urllink=&afftrack=\">WP Engine</a>&nbsp;has been around since 2010, focuses entirely on WordPress hosting, and has established themself as a solid choice in the intermediate range. Their plans start at $29/month and include a 60-day money-back guarantee and free automated migration of your existing WordPress site. WP Engine&nbsp;also has more advanced hosting options, so they&#8217;re an option that could grow with you.</p>\n<p><a href=\"http://shareasale.com/r.cfm?b=917225&u=1391570&m=41388&urllink=&afftrack=\">Sign up for WP Engine using this link</a> and you&#8217;ll save 20% off your first payment.</p>\n<h2>Professional Site</h2>\n<p><a href=\"https://pantheon.io/pricing\">Pantheon</a> got their start as a Drupal host, but have taken their innovative container-based hosting technology to the WordPress market. As a developer, I appreciate their Git-based development flow, their powerful &#8220;Terminus&#8221; command line client, and their built-in and dead-simple dev/test/live environments. On the higher level plans, you get &#8220;Multidev&#8221; which lets you spin up a sandboxed development environment for a specific Git branch. This means you can send clients and testers URLs for testing new features in isolation, before they are merged back into the main code branch. Awesome.</p>\n<p>Their professional tier starts at $100/month, which isn&#8217;t cheap, but your developers will love their deployment tools, their dev/test/live code staging flows, and their Git-based deploys to the development environment. Pantheon is a great choice for professional WordPress sites that have a developer on staff or on retainer.</p>\n<p><a href=\"https://pantheon.io/pricing\">Check out Pantheon&#8217;s professional WordPress hosting plans</a>.</p>\n<h2>Enterprise Site</h2>\n<p><a href=\"http://pagely.7eer.net/c/335029/141222/2787\">Pagely</a> has been around since 2006! They started the whole WordPress-dedicated hosting marketplace. When they started, they targeted a range of WordPress sites, but now they focus on enterprise hosting. This is where big brands go for custom WordPress hosting solutions. The folks at Pagely know WordPress well, and will be an excellent hosting partner for your enterprise WordPress site. Their VPS solutions start at $499/month, but they also have a shared server plan called Neutrino for $99/month.</p>\n<p><a href=\"http://pagely.7eer.net/c/335029/141222/2787\">Get started with Pagely enterprise hosting</a>.</p>\n<h2>How I Picked</h2>\n<p>My method here was simple. I thought about how I answer if a friend or a client asks me for hosting advice. I found that I regarded sites as fitting in one of five categories. Then, I considered which hosts offer the best service and value in those categories, and picked these four hosts. After I had made my picks and written about their benefits, I went to see which of my picks had affiliate programs. Three of them did, and one did not. I used affiliate links for those that offered them, and a direct link for the one that did not. Using affiliate links to sign up for their service will earn me some money, but you can of course just go directly to their sites if you like. I stand by these recommendations, either way. I&#8217;ll write a new post in 2017 with my new picks. Let me know <a href=\"https://twitter.com/markjaquith/status/793562226305146880\">on Twitter</a> what hosts are your favorites, and why!</p><br />  <a rel=\"nofollow\" href=\"http://feeds.wordpress.com/1.0/gocomments/markjaquith.wordpress.com/5235/\"><img alt=\"\" border=\"0\" src=\"http://feeds.wordpress.com/1.0/comments/markjaquith.wordpress.com/5235/\" /></a> <img alt=\"\" border=\"0\" src=\"https://pixel.wp.com/b.gif?host=markjaquith.wordpress.com&blog=316&post=5235&subd=markjaquith&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:\"Tue, 01 Nov 2016 20:27: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:12:\"Mark Jaquith\";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:52:\"WPTavern: Beware of Links to Baidu in Skype Messages\";s:7:\"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=63378\";s:7:\"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://wptavern.com/beware-of-links-to-baidu-in-skype-messages\";s: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:4741:\"<p>I recently logged into Skype and received two messages from people who I haven&#8217;t spoken too in years. Both messages contained a URL to <a href=\"http://www.baidu.com/\">Baidu</a> with my Skype username at the end. I immediately became suspicious and after a cursory search of Google, I discovered that I <a href=\"https://community.skype.com/t5/Security-Privacy-Trust-and/Link-to-quot-baidu-quot-website-sent-to-all-of-my-contacts/td-p/4461728/page/15\">wasn&#8217;t the only one</a> receiving these messages.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/SkypeBaiduLink.png?ssl=1\"><img class=\"size-full wp-image-63380\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/SkypeBaiduLink.png?resize=378%2C229&ssl=1\" alt=\"Baidu Links in Skype Messages\" /></a>Baidu Links in Skype Messages\n<p>According to a <a href=\"https://community.skype.com/t5/Security-Privacy-Trust-and/Spam-messages-amp-links-sent-from-your-account/td-p/4511001\">support document</a> published by Claudius, Community Manager at Skype, the accounts sending the messages are most likely compromised. The document offers a list of steps that includes, checking your computer for malware, changing passwords, and increasing the security of your Skype account.</p>\n<h2>Tips to Strengthen the Security of Your Skype Account</h2>\n<p>Microsoft recently made changes so that Skype, Office, Xbox, and other Microsoft services can be managed with a single account. If you haven&#8217;t <a href=\"https://support.skype.com/en/faq/FA34657/one-account-for-skype-and-your-other-microsoft-services\">upgraded your Skype account</a> to a Microsoft account, visit <a href=\"https://account.microsoft.com/\">Microsoft&#8217;s account</a> page and enter your Skype username and password. You&#8217;ll be prompted to upgrade which can only be done once.</p>\n<p>Once upgraded, click on the Security and Privacy settings link. This is where you can change your password, add security information, and enable two-step verification.</p>\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/TwoStepAuthentication.png?ssl=1\"><img class=\"size-full wp-image-63384\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/11/TwoStepAuthentication.png?resize=445%2C171&ssl=1\" alt=\"Two Factor Authentication Enabled\" /></a>Two-Step Verification Enabled\n<p>It&#8217;s important to note that in recent years, there have been major data leaks where the login credentials of millions of people have been exposed to the public. If you use the same password on multiple sites, visit <a href=\"https://haveibeenpwned.com/\">Have I Been Pwned</a> and check to see if your password was leaked. If you see the Oh no — pwned! message, you should update your password immediately.</p>\n<h3>Create a New Primary Alias</h3>\n<p>In addition to changing passwords and turning on two-step verification, you should limit the aliases that are allowed to login to your account. By default, your Skype username is the primary alias. You should change this to an email address or a phone number and disable your Skype username. Allowing only one alias that&#8217;s different from your Skype username limits the amount of entry points into your account.</p>\n<h2>Keeping Tabs On Your Skype Account</h2>\n<p>One of the major benefits of upgrading a Skype account to a Microsoft account is the ability to view recent activity. To view the most recent activity, click the Security and Privacy link and click on the <strong>see my recent activity</strong> link.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/SeeRecentActivity.png?ssl=1\"><img class=\"size-full wp-image-63387\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/11/SeeRecentActivity.png?resize=1025%2C395&ssl=1\" alt=\"How to View Recent Activity\" /></a>How to View Recent Activity\n<p>This will inform you of successful and unsuccessful login attempts. Some users who have unwillingly sent spam messages with links to Baidu <a href=\"https://community.skype.com/t5/Security-Privacy-Trust-and/Link-to-quot-baidu-quot-website-sent-to-all-of-my-contacts/m-p/4513254#M64691\">confirmed</a> through the recent activity page that their login credentials were compromised. In addition to the recent activity page, users are encouraged to enable and create alerts to be notified of suspicious activity.</p>\n<p>If you receive messages out of the blue on Skype with links to Baidu or LinkedIn, do not click them. Delete the message, <a href=\"https://community.skype.com/t5/Security-Privacy-Trust-and/Spam-messages-amp-links-sent-from-your-account/td-p/4511001\">send the user a link to this page</a>, and inform them that their account may be compromised.</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, 01 Nov 2016 19:28:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"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:80:\"BuddyPress: 2016 BuddyPress Survey for Site Builders and Theme/Plugin Developers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=260614\";s:7:\"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://buddypress.org/2016/11/2016-buddypress-survey-site-builders-developers/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1197:\"<p>Earlier this year, Project leads <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/johnjamesjacoby/\" rel=\"nofollow\">@johnjamesjacoby</a>, <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/boonebgorges/\" rel=\"nofollow\">@boonebgorges</a>, and <a class=\"bp-suggestions-mention\" href=\"https://buddypress.org/members/djpaul/\" rel=\"nofollow\">@djpaul</a> presented a number of strategic priorities which included defining the primary intended audience for BuddyPress: Site Builders and WordPress Developers, an explicit recognition of what BuddyPress has become, and how people use it.</p>\n<p>Help us start the year right in 2017. Your feedback is important to help us improve BuddyPress  by ensuring that we’re still building what you want to use and help us determine if any course corrections are necessary. </p>\n<p>This survey will run from November 1 &#8211; 30, 2016. It has 36 questions and could take around 15 &#8211; 20 minutes to complete.</p>\n<p>Thank you  for your participation !</p>\n<p><strong>=&gt; <a href=\"http://mercime.polldaddy.com/s/2016-buddypress-survey-site-builders-developers\">Take the 2016 BuddyPress Survey now</a>.</strong></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, 01 Nov 2016 18:51: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:8:\"@mercime\";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:99:\"WPTavern: Mullenweg Takes Aim at Wix over GPL Abuses, Wix Response Fails to Address Licensing Issue\";s:7:\"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=63325\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:109:\"https://wptavern.com/mullenweg-takes-aim-at-wix-over-gpl-abuses-wix-response-fails-to-address-licensing-issue\";s: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:12008:\"<p>Over the weekend WordPress co-creator and Automattic CEO Matt Mullenweg <a href=\"https://ma.tt/2016/10/wix-and-the-gpl/\" target=\"_blank\">called out Wix for copying GPL code</a> from the WordPress mobile app and distributing it in its <a href=\"http://www.prnewswire.com/news-releases/wixcom-launches-wix-app-providing-a-powerful-mobile-operating-system-for-small-business-owners-store-owners-hoteliers-and-bloggers-around-the-world-300339448.html\" target=\"_blank\">proprietary app</a>. He identified <a href=\"https://github.com/wix/WordPress-Editor-Android\" target=\"_blank\">two</a> <a href=\"https://github.com/wix/react-native-wordpress-editor\" target=\"_blank\">repositories</a> that Wix forked in order to bring the GPL-licensed WordPress Rich Text Editor into its app.</p>\n<p>&#8220;If I were being charitable, I’d say, &#8216;The app’s editor is based on the WordPress mobile app’s editor.&#8217; Mullenweg said. &#8220;If I were being honest, I’d say that Wix copied WordPress without attribution, credit, or following the license.&#8221;</p>\n<p>Even though the Wix app is made up of different modules and libraries, the GPL requires that the entire application be GPL-licensed since Wix is distributing the app with GPL code in it. Open sourcing the entire app&#8217;s code under the GPL is the only way to resolve the license violation, according to Mullenweg.</p>\n<p>&#8220;Your app’s editor is built with stolen code, so your whole app is now in violation of the license,&#8221; Mullenweg said. Some took issue with use of the term &#8220;stolen code&#8221; in connection with public, open source repositories, but the effect is the same regardless of Wix&#8217;s intention. Wix distributed GPL code without respecting its license, putting new limitations on it instead of preserving its freedoms. That code was not legally available to be repurposed without following its license.</p>\n<p>&#8220;You’d probably be in the clear if you had used just the original editor we started with (ZSSRichTextEditor, MIT licensed),&#8221; Automattic&#8217;s General Counsel Paul Sieminski commented on the issue. &#8220;Instead, Wix took our version of the editor which has 1000+ original commits on top of the original MIT editor, that took more than a year to write. We improved it. A lot. And Wix took those improvements, used them in their app but then stripped out all of the important rights that they’re not legally allowed to take away.&#8221;</p>\n<p>Mullenweg called for Wix to release its entire mobile app under the GPL, as required by the license, and make the source code available so that others can build on it and learn from it.</p>\n<p>&#8220;If you want to close the door on innovation, Wix, that’s your decision to make — just write your own code,&#8221; Mullenweg said. &#8220;If you’re going to join the open source community, play by the open source rules.&#8221;</p>\n<h3>Wix CEO Responds, Neglects to Address GPL Licensing Issues</h3>\n<p>Mullenweg&#8217;s open letter to Wix took the company by surprise. Wix CEO Avishai Abrahami <a href=\"http://www.wix.com/blog/2016/10/dear-matt-mullenweg-an-open-letter-from-wix-coms-ceo-avishai-abrahami/\" target=\"_blank\">responded</a> the next day on the company&#8217;s blog with a tone that imposed an artificial sense of fraternity in order to make the original allegation appear to be an over reaction. &#8220;Wow, dude I did not even know we were fighting,&#8221; Abrahami said. He cited Wix&#8217;s manifold contributions to open source software on the company&#8217;s GitHub account and their admiration of WordPress&#8217; commitment to giving back.</p>\n<p>His artful deflection avoids the licensing issue completely and demonstrates a lack of understanding of the GPL:</p>\n<blockquote><p>Yes, we did use the WordPress open source library for a minor part of the application (that is the concept of open source right?), and everything we improved there or modified, we submitted back as open source, see here in this <a href=\"https://github.com/wix/react-native-wordpress-editor\" target=\"_blank\">link</a> – you should check it out, pretty cool way of using it on mobile native. I really think you guys can use it with your app (and it is open source, so you are welcome to use it for free). And, by the way, the part that we used was in fact developed by another and modified by you.</p></blockquote>\n<p>GPL compliance, however, requires more than a show of open source spirit. Abrahami did not address the requirement that the entire mobile app be released as GPL but offered a vague statement about sharing code.</p>\n<p>&#8220;If you need source code that we have, and we have not yet released, then, most likely we will be happy to share, you only need to ask,&#8221; Abrahami said. It is still unclear as to whether his statement means the company will release the entire mobile app under the GPL or not. However, the company indicated on Twitter that they will release the app on GitHub.</p>\n<blockquote class=\"twitter-tweet\"><p lang=\"en\" dir=\"ltr\"><a href=\"https://twitter.com/yairwein\">@yairwein</a> We\'ll release the code on Github, where we also shared our previous projects: <a href=\"https://t.co/FBhp2Kd5wn\">https://t.co/FBhp2Kd5wn</a></p>\n<p>&mdash; Wix.com (@Wix) <a href=\"https://twitter.com/Wix/status/792656290854174721\">October 30, 2016</a></p></blockquote>\n<p></p>\n<p>The other option would be for the company to completely remove any GPL code from its app and use the original MIT-licensed library for the editor.</p>\n<p>&#8220;The WordPress GPL Rich Text component in question, is actually a wrapper around another Rich Text component named ZSSRichTextEditor which is licensed MIT,&#8221; Wix lead engineer Tal Kol said in the article he <a href=\"https://medium.com/@talkol/how-i-found-myself-accused-of-stealing-code-from-wordpress-a7350da9f9f2#.h5zgf9lnc\" target=\"_blank\">published</a> over the weekend. &#8220;In retrospect it would have been easier to use it directly.&#8221;</p>\n<p>Using the original library would stop the current GPL infringement but does not erase the fact that the company has already violated the license by distributing the code.</p>\n<p>Wix has not yet officially announced what it plans to do, but at the time of publishing the company continues to distribute GPL code inside its proprietary app.</p>\n<h3>Mullenweg Is Willing to Go to Court to Protect the GPL</h3>\n<p>According to the GNU.org GPL FAQ, the <a href=\"https://www.gnu.org/licenses/gpl-faq.en.html#WhoHasThePower\" target=\"_blank\">copyright holders of the software have the power to enforce the GPL</a>, as the license is a copyright license. Copyright holders are advised to inform developers of the GPL-covered software if they see a violation. With the GPLv2, the only way for license violators to receive back their rights after violation is to <a href=\"https://www.gnu.org/licenses/quick-guide-gplv3.en.html\" target=\"_blank\">petition the copyright holder</a>. Mullenweg has already identified a path to compliance for Wix.</p>\n<p>Although many in the open source community are itching for a definitive court case involving the GPL, Mullenweg said his preferred outcome is to see Wix open source its mobile app.</p>\n<p>&#8220;I would much rather they just release their app as GPL rather than have to get into a legal fight,&#8221; he <a href=\"https://ma.tt/2016/10/wix-and-the-gpl/#comment-586279\" target=\"_blank\">replied</a> to commenters on his blog.</p>\n<p>When I asked if he is willing to take the matter to court if Wix does not comply, Mullenweg said, &#8220;We would of course go to court to protect the GPL.&#8221; He also said that if Wix decides to pursue the other avenue, &#8220;removing the library would fix it going forward, but not for things that already infringed.&#8221; Mullenweg could not say what Automattic will or won&#8217;t do in a legal context regarding the past infringement, as the situation is still developing.</p>\n<p>This weekend&#8217;s debate between Mullenweg and Wix sparked discussions across social media platforms as well as blog post responses about how the the GPL affects the industry. It also shows how divisive the license can be even among open source software proponents. Mullenweg, who is known inside the WordPress community as a zealous defender of the GPL, has demonstrated a willingness to go to battle over <a href=\"https://wptavern.com/mullenweg-and-pearson-square-off-on-patents-gpl-and-trademarks\" target=\"_blank\">violations of the license in the past</a>.</p>\n<p>Many in the WordPress and Wix communities took issue with the public handling of the matter, but ultimately the controversy is not a personal matter between Mullenweg and Wix. The proprietary mobile app distributes GPL code that was the work of many contributors. WordPress&#8217; open source code was built from the hard work of people who were willing to give that time and energy because they believe in the project and the freedoms that its license guarantees. Wix&#8217;s disrespect of that license illegally co-opts those contributions for the company&#8217;s closed source app.</p>\n<h3>&#8220;My program will have liberty, or never be born.&#8221;</h3>\n<p>The GPL license is holistic in the sense that all parts of an application are connected &#8211; if one part bears the freedoms of the GPL, the entire app benefits from the GPL and must be therefore be open for all. The GPL is the reason WordPress exists and the reason why Mullenweg is so passionate about it. If b2/cafelog had not been GPL-licensed, Matt Mullenweg and Mike Little would not have been able to <a href=\"https://ma.tt/2003/01/the-blogging-software-dilemma/\" target=\"_blank\">build on it</a>.</p>\n<p>One of the questions in the GNU GPL FAQ asks, &#8220;<a href=\"https://www.gnu.org/licenses/gpl-faq.en.html#WhatIfSchool\" target=\"_blank\">What if my school might want to make my program into its own proprietary software product?</a>&#8221; This question addresses how many universities try to restrict the use of the knowledge and information they (and their students) develop, a problem that also exists in commercial businesses. The GNU recommendation for developers wanting to ensure their software is allowed to be GPL licensed is to raise the issue at the earliest possible stage for the most leverage:</p>\n<blockquote><p>So we recommend that you approach them when the program is only half-done, saying, &#8216;If you will agree to releasing this as free software, I will finish it.&#8217; Don&#8217;t think of this as a bluff. To prevail, you must have the courage to say, <strong>&#8216;My program will have liberty, or never be born.&#8217;</strong></p></blockquote>\n<p>This powerful sentiment is one that many GPL software contributors have adopted as a way of life. They contribute code on the basis that it will be passed on with all its freedoms. Taking GPL-licensed code and putting it in a proprietary app is an affront to their contributions.</p>\n<p>Wix CEO Avishai Abrahami&#8217;s casual response identifies both parties as open source proponents who are working to make the web a better place. This response misses the mark because it fails to recognize WordPress&#8217; 13-year history with the GPL and how deeply it has impacted the software&#8217;s trajectory and ability to make the web a better, more open place. This license and WordPress&#8217; commitment to user freedoms has been the project&#8217;s true north from its inception.</p>\n<p>When a project is given the GPL license, it makes that code and the license&#8217;s freedoms inseparable. Essentially, that code isn&#8217;t legally available to anyone without those freedoms in place. Regardless of whether Wix&#8217;s deflection of the issue is motivated by ignorance of the GPL or malicious intent, the company has to answer for its misuse of the software. The ball is now in Wix&#8217;s court &#8211; to comply with what the GPL license requires or take its own interpretation to court.</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:\"Mon, 31 Oct 2016 21:23: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:\"Sarah Gooding\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:13:\"\n	\n	\n	\n	\n	\n	\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"Matt: Apples TV’s Struggles\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46916\";s:7:\"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:43:\"https://ma.tt/2016/10/apples-tvs-struggles/\";s: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:983:\"<p><a href=\"http://joe-steel.com/2016-10-28-Apples-October-TV-Surprise.html\"><img class=\"  wp-image-46924 alignright\" src=\"https://i0.wp.com/ma.tt/files/2016/10/apple-tv.jpg?resize=231%2C201&ssl=1\" alt=\"apple-tv.jpg\" /></a>Joseph Rosensteel has <a href=\"http://joe-steel.com/2016-10-28-Apples-October-TV-Surprise.html\">an outsider but savvy perspective on the updates and technology around Apple TV</a>. Definitely a worthwhile read. I&#8217;ve experienced a lot of this frustration myself &#8212; I have a large library of things bought through iTunes, I like the interface of the Apple TV (though I liked the old one a little better), and Airplay is handy, so I want to love the Apple TV. The market is so bad right now that <a href=\"http://thewirecutter.com/reviews/best-media-streamers/\">most review sites like Wirecutter recommend Roku</a>, which for me came with a branded remote button for a service that is out of business (Rdio) and has an interface that feels DOS-like.</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, 31 Oct 2016 14: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:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:43:\"Matt: The Wix Mobile App, a WordPress Joint\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46879\";s:7:\"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:\"https://ma.tt/2016/10/wix-and-the-gpl/\";s: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:12333:\"<p>Anyone who knows me knows that I like to try new things &#8212; phones, gadgets, apps. Last week I downloaded the <a href=\"http://www.prnewswire.com/news-releases/wixcom-launches-wix-app-providing-a-powerful-mobile-operating-system-for-small-business-owners-store-owners-hoteliers-and-bloggers-around-the-world-300339448.html\">new Wix (closed, proprietary, non-open-sourced, non-GPL) mobile app</a>. I’m always interested to see how others tackle the challenge of building and editing websites from a mobile device.</p>\n<p>I started playing around with the editor, and felt… déjà vu. It was familiar. Like I had used it before.</p>\n<p>Turns out I had. Because it’s WordPress.</p>\n<p>If I were being charitable, I’d say, &#8220;The app&#8217;s editor is based on the WordPress mobile app&#8217;s editor.&#8221; If I were being honest, I&#8217;d say that Wix copied WordPress without attribution, credit, or following the license. The custom icons, the class names, even the bugs. You can see the <a href=\"https://github.com/wix/WordPress-Editor-Android\">forked</a><a href=\"https://github.com/wix/react-native-wordpress-editor\"> repositories</a> on GitHub complete with original commits from Alex and Maxime, two developers on Automattic’s mobile team. Wix has always borrowed liberally from WordPress &#8212; including their company name, which used to be Wixpress Ltd. &#8212; but this blatant rip-off and code theft is beyond anything I&#8217;ve seen before from a competitor.</p>\n<h3>Dear Wix,</h3>\n<p>This explicitly contravenes the GPL, which requires attribution and a corresponding GPL license on whatever you release publicly built on top of GPL code. The GPL is what has allowed WordPress to flourish, and that let us create this code. Your app&#8217;s editor is built with stolen code, so your whole app is now in violation of the license.</p>\n<p>I suppose we’ll take this as a compliment &#8212; I’m sure the hundreds of people who have contributed to WordPress Core and our mobile apps are flattered that you chose to build one of your company’s core features using our code. We’re also excited to see what great things you create with all the time you saved not having to write your own mobile editor.</p>\n<p>You know what’d be even more exciting? To see you abide by the GPL and release your source code back to the community that gave you that jump start.</p>\n<p>I’ve always said that <a href=\"https://ma.tt/2014/01/four-freedoms/\">the GPL isn’t about limits, it’s about possibilities</a>. In open source software, you trade some of your control as a developer to better serve the developer community and the people using your sites and products. I don’t think that’s a limit, I think it’s a way to make sure we encourage innovation and momentum. If you want to close the door on innovation, Wix, that’s your decision to make &#8212; just write your own code. If you’re going to join the open source community, play by the open source rules.</p>\n<p>Release your app under the GPL, and put the source code for your app up on GitHub so that we can all build on it, improve it, and learn from it.</p>\n<p>Love,<br />\nMatt and the open source community</p>\n<h3>An Update</h3>\n<p>The <a href=\"http://www.wix.com/blog/2016/10/dear-matt-mullenweg-an-open-letter-from-wix-coms-ceo-avishai-abrahami/\">CEO of Wix has posted a response on their blog</a>. I&#8217;ll also try to post my response it to the comments there. <a href=\"http://wpgarage.com/news-views/weak-wix-response-wordpress-gpl/\">Miriam Schwab also has a very good response</a>.</p>\n<blockquote><p>We were all very surprised by your post, as you have so many claims against us.</p>\n<p>Wow, dude I did not even know we were fighting.</p></blockquote>\n<p>It&#8217;s not a fight: the claim is that the Wix mobile apps distribute GPL code and aren&#8217;t themselves GPL, so they violate the license.</p>\n<blockquote><p>First, you say we have been taking from the open source community without giving back, well, of course, that isn’t true. Here is a list of 224 projects on our public <a href=\"https://github.com/wix\" target=\"_blank\">GitHub page</a>, and as you can see they are all dated before your post. We have not checked if WordPress is using them, but you are more than welcome to do so, some of them are pretty good.</p></blockquote>\n<p>Very glad your company has projects on GitHub! Thank you for the offer to use them; if we do, we&#8217;ll make sure to follow the license you&#8217;ve put on the code very carefully.</p>\n<p>Releasing other open source projects doesn&#8217;t mean that you can violate the license of the editor code you distributed in your mobile apps. To repeat my earlier points: since you distributed GPL code with your apps, the entire apps need to be released at GPL, not just your modifications to that one library.</p>\n<p>As <a href=\"https://news.ycombinator.com/item?id=12828814\">this Hacker News comment put it</a>, &#8220;Open source is not a swap meet; you can&#8217;t violate a license if you voluntarily release some other code to make up for it.&#8221;</p>\n<blockquote><p>We always shared and admired your commitment to give back, which is exactly why we have those 224 open source projects, and thousands more bugs/improvements available to the open source community and we will release the app you saw as well.</p></blockquote>\n<p>If you were to release the entire source code of the apps under GPL that would bring you back into compliance with the license you violated. I <em>think</em> you&#8217;re saying you will do that here, but can you clarify? When should we look for the app code to be released, and where? That would resolve this issue completely.</p>\n<blockquote><p>Next, you talk about the Wix App being stolen from WordPress. There are more than 3 million lines of code in the Wix application, notably the hotels/blogs/chat/eCommerce/scheduling/booking is all our code.</p></blockquote>\n<p>I said the app includes stolen code. It doesn&#8217;t matter if it&#8217;s 30 lines or 30 million lines: because it includes GPL code and you distributed the app, the entire thing needs to be GPL. If you release the entire app&#8217;s code, as I think you said you would, then that resolves the license violation.</p>\n<blockquote><p>Yes, we did use the WordPress open source library for a minor part of the application (that is the concept of open source right?), and everything we improved there or modified, we submitted back as open source, see here in this <a href=\"https://github.com/wix/react-native-wordpress-editor\" target=\"_blank\">link</a> – you should check it out, pretty cool way of using it on mobile native. I really think you guys can use it with your app (and it is open source, so you are welcome to use it for free). And, by the way, the part that we used was in fact developed by another and modified by you.</p></blockquote>\n<p>Thank you for admitting you used the code and not trying to hide it. The issue isn&#8217;t the changes you made, it&#8217;s that including the editor means you need to submit the entire app as open source, which you have not yet &#8212; it&#8217;s completely proprietary.</p>\n<blockquote><p>If you want to read the account from Tal Kol, one of the leading engineers on this project, <a href=\"https://medium.com/@talkol/how-i-found-myself-accused-of-stealing-code-from-wordpress-a7350da9f9f2#.7yyylkagl\" target=\"_blank\">here it is</a>. He was really happy to share his side of the story.</p></blockquote>\n<p>I have seen it, and it <a href=\"https://medium.com/@csu/can-you-address-this-point-made-in-matts-post-this-explicitly-contravenes-the-gpl-which-7b6460b5b3e1\">already has a number of good comments on it, including this one</a>: &#8220;Can you address this point made in Matt’s post: &#8216;This explicitly contravenes the GPL, which requires attribution and a corresponding GPL license on whatever you release publicly built on top of GPL code&#8217;.&#8221; It appears you and Tal might share a misunderstanding of how the GPL works &#8212; software licensing can be tricky and many people make honest mistakes. (If you want to get into serious detail, <a href=\"https://ma.tt/2016/10/wix-and-the-gpl/#comment-586319\">this comment</a> lays the licensing requirements out clearly.) It is easy to rectify this one: release your apps as open source under the GPL.</p>\n<blockquote><p>Now, what is this thing about us stealing your branding? Our product was always called Wix and our website Wix.com, we never borrowed from your marketing or brand.</p></blockquote>\n<p>Sorry for including this distraction; I was referring specifically to the fact that Wix used to go by &#8220;Wixpress.&#8221; You can see this <a href=\"http://files.shareholder.com/downloads/AMDA-29IDMU/0x0xS1193125-13-387285/1576789/filing.pdf\">in your Form F-1</a>, and there used to be a support page about this on your site:</p>\n<p><img class=\"aligncenter size-full wp-image-46910\" src=\"https://i0.wp.com/ma.tt/files/2016/10/Screen-Shot-2016-10-30-at-3.12.19-AM.png?resize=604%2C94&ssl=1\" alt=\"\" /></p>\n<p>Although that is still in Google, the <a href=\"https://www.wix.com/support/html5/ugc/62ae9410-79d0-4198-8ff1-4a37966e1e94/0d1a19e1-c862-44e4-a9d6-bc813f8a9207\">page</a> it links to <a href=\"https://cloudup.com/cu5miENIoLl\">now mysteriously returns a 404 error</a>, which you may want to look into.</p>\n<blockquote><p>In fact, if I remember correctly, until recently the Automattic home page was all about blogs and only recently it has become “websites.” Also, your business model changed to almost exactly the one we had for years. Can it be that you guys are borrowing from us? If so, again, you are welcome to it.</p></blockquote>\n<p>The <a href=\"http://automattic.com/\">Automattic home page</a> has been a series of haiku about our products <a href=\"http://web.archive.org/web/20121218130226/http://wordpress.com/\">since 2009</a>, pretty much unchanged &#8212; I think you mean the WordPress.com home page here. WordPress has been used for creating websites, not just blogs, since <a href=\"https://wordpress.org/news/2005/02/strayhorn/\">our 1.5 release in 2005 added themes and pages</a>. In my <a href=\"https://ma.tt/2014/10/sotw-2014/\">2014 State of the Word address</a> I talked about how 87% of WordPress sites use it as a CMS. We regularly test dozens of variations of the WP.com homepage and some of them definitely emphasize website creation. I will say we look to Wix, Weebly, and Squarespace as innovators in the space with products that reach many small businesses, and Wix especially should be commended for its success and growth as a public company.</p>\n<blockquote><p>If you believe that we need to give you credit, that you deserve credit, I must say, absolutely yes. You guys deserve a lot of credit, but not because of a few lines of source code, you deserve credit because you guys have been making the internet dramatically better, and for that we at Wix are big fans. We love what you have been trying to do, and are working very hard to add our own contribution to make the internet better.</p></blockquote>\n<p>Thank you very much, that is kind. I do think there are a lot of values we share in common and would love to see this one issue resolved.</p>\n<blockquote><p>If you need source code that we have, and we have not yet released, then, most likely we will be happy to share, you only need to ask. We share your belief that making the internet better, is best for everyone.</p></blockquote>\n<p>That&#8217;s what my post was asking, for you to release the code. To quote my original letter: &#8220;Release your app under the GPL, and put the source code for your app up on GitHub so that we can all build on it, improve it, and learn from it.&#8221;</p>\n<blockquote><p>Finally, during the last couple of years, I reached out a couple of times trying to meet with you. Could I do that again here? I believe in friendly competition, and as much fun as it is to chat over the blogosphere, maybe we can also do it over a cup of coffee?</p></blockquote>\n<p>Once this is resolved I&#8217;d be happy to meet up. I believe when we exchanged emails in 2014 there was trouble finding overlap in our travel schedules.</p>\n<p>I hope the above clarifies where we think Wix made a mistake, and how to fix it.</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, 28 Oct 2016 19:45: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:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:29:\"Matt: Kanye McDonald’s Poem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:22:\"https://ma.tt/?p=46881\";s:7:\"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:43:\"https://ma.tt/2016/10/kanye-mcdonalds-poem/\";s: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:302:\"<p>You might need a reason to smile today. If so, <a href=\"http://www.theverge.com/tldr/2016/8/22/12586016/kanye-west-mcdonalds-poem-frank-ocean-boys-dont-cry-zine\">Kanye&#8217;s poem for Frank Ocean&#8217;s Boys Don&#8217;t Cry zine, illustrated by Dami Lee at the Verge</a>, might be that reason.</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, 28 Oct 2016 19:30:29 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i: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:81:\"WPTavern: WordPress 4.7 Removes the Underline and Justify Buttons From the 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:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://wptavern.com/?p=63314\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://wptavern.com/wordpress-4-7-removes-the-underline-and-justify-buttons-from-the-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:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2298:\"<p>Back in August, we highlighted <a href=\"https://wptavern.com/improving-the-user-experience-by-rearranging-the-wordpress-post-editor\">potential changes</a> to the WordPress editor that would improve the user experience. The team has since <a href=\"https://make.wordpress.org/core/2016/10/28/editor-changes-in-4-7/\">implemented</a> some of the suggestions outlined in <a href=\"https://core.trac.wordpress.org/ticket/27159\">ticket #27159</a> into WordPress 4.7, including rearranging some of the toolbar buttons. The headers drop-down menu is now in the top row of buttons while the strikethrough and horizontal rule buttons are on the second row.</p>\n<p>The underline and justify buttons are no longer available. According to Andrew Ozz, who primarily works on the TinyMCE editor in WordPress, underlining text causes confusion as readers may interpret it as a link. The justify button was removed because it has uneven browser implementation and often makes text less readable. However, keyboard shortcuts for both buttons will continue to work in 4.7.</p>\n<a href=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/WP46FreshInstallPostEditor.png?ssl=1\"><img class=\"size-full wp-image-60457\" src=\"https://i2.wp.com/wptavern.com/wp-content/uploads/2016/08/WP46FreshInstallPostEditor.png?resize=573%2C396&ssl=1\" alt=\"WordPress 4.6 Post Editor\" /></a>WordPress 4.6 Post Editor\n<a href=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/10/WordPress47PostEditor.png?ssl=1\"><img class=\"size-full wp-image-63316\" src=\"https://i1.wp.com/wptavern.com/wp-content/uploads/2016/10/WordPress47PostEditor.png?resize=637%2C248&ssl=1\" alt=\"WordPress 4.7 Post Editor\" /></a>WordPress 4.7 Post Editor\n<p>In addition to these changes, tooltips that appear when hovering over a button will display the keyboard shortcut making them easier to discover.</p>\n<p>Since WordPress does not track which buttons are used most often the team can not accurately measure the impact these changes will have. Users are encouraged to test <a href=\"https://wptavern.com/wordpress-4-7-beta-1-now-available-for-testing\">WordPress 4.7 beta 1</a> and share your feedback on the <a href=\"https://wordpress.org/support/forum/alphabeta/\">Alpha/Beta</a> section of the support forums.</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, 28 Oct 2016 17:12: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:\"Jeff Chandler\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";O:42:\"Requests_Utility_CaseInsensitiveDictionary\":1:{s:7:\"\0*\0data\";a:8:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 28 Nov 2016 18:11:14 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:13:\"last-modified\";s:29:\"Mon, 28 Nov 2016 18:00:12 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'),(20194,'_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1480399875','no'),(20195,'_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1480356675','no'),(20196,'_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109','1480399875','no'),(20197,'_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, 28 Nov 2016 17:41: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: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: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:35:\"5790@https://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: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: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:34:\"132@https://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: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: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:35:\"6743@https://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: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: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:35:\"2141@https://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: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: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:35:\"2316@https://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: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:\"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:36:\"12073@https://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:144:\"Search Engine (SEO) &#38; Performance Optimization (WPO) via caching. Integrated caching: CDN, Minify, Page, Object, Fragment, Database 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: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: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:36:\"51888@https://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: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: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:36:\"29860@https://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: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: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:35:\"8321@https://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: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:34:\"753@https://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:\"One of the most downloaded plugins for WordPress (over 30 million downloads since 2007). Use All in One SEO Pack to automatically optimize your site f\";s: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: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:35:\"2646@https://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: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: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:35:\"9542@https://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: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: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:36:\"23862@https://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: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:36:\"18101@https://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: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:36:\"29832@https://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:149:\"Secure your website with the most comprehensive WordPress security plugin. Firewall, malware scan, blocking, live traffic, login security &#38; more.\";s: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: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: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:35:\"2572@https://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: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: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:35:\"2082@https://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: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: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:36:\"25254@https://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: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: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:33:\"15@https://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: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:34:\"363@https://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:42:\"NextGEN Gallery - WordPress Gallery 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: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:35:\"1169@https://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 16 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: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: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:36:\"47509@https://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: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: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:36:\"38058@https://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: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:36:\"50539@https://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: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:36:\"26907@https://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: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: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:36:\"28395@https://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: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:36:\"31973@https://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:36:\"26607@https://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:36:\"21738@https://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:36:\"49521@https://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:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Mon, 28 Nov 2016 18:11:15 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:7:\"expires\";s:29:\"Mon, 28 Nov 2016 18:16:56 GMT\";s:13:\"cache-control\";s:0:\"\";s:6:\"pragma\";s:0:\"\";s:13:\"last-modified\";s:31:\"Mon, 28 Nov 2016 17:41:56 +0000\";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'),(20198,'_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109','1480399875','no'),(20199,'_transient_feed_mod_b9388c83948825c1edaef0d856b7b109','1480356675','no'),(20200,'_transient_timeout_plugin_slugs','1480443817','no'),(20201,'_transient_plugin_slugs','a:6:{i:0;s:19:\"akismet/akismet.php\";i:1;s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";i:2;s:36:\"elegant-themes-icons/eticonfonts.php\";i:3;s:49:\"elegant-themes-updater/elegant-themes-updater.php\";i:4;s:27:\"updraftplus/updraftplus.php\";i:5;s:23:\"wordfence/wordfence.php\";}','no'),(20202,'_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b','1480399875','no'),(20203,'_transient_dash_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\'>WordPress 4.7 Release Candidate</a> <span class=\"rss-date\">November 24, 2016</span><div class=\"rssSummary\">The release candidate for WordPress 4.7 is now available. 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.7 on Tuesday, December 6, but we need your help to get there. If you haven’t tested 4.7 yet, [&hellip;]</div></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2016/11/wordpress-4-7-release-candidate/\'>Dev Blog: WordPress 4.7 Release Candidate</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/why-are-you-thankful-for-wordpress\'>WPTavern: Why Are You Thankful for WordPress?</a></li><li><a class=\'rsswidget\' href=\'https://heropress.com/essays/building-confidence/\'>HeroPress: Building Confidence</a></li></ul></div><div class=\"rss-widget\"><ul><li class=\"dashboard-news-plugin\"><span>Popular Plugin:</span> Page Builder by SiteOrigin&nbsp;<a href=\"plugin-install.php?tab=plugin-information&amp;plugin=siteorigin-panels&amp;_wpnonce=596dd527d4&amp;TB_iframe=true&amp;width=600&amp;height=800\" class=\"thickbox open-plugin-details-modal\" aria-label=\"Install Page Builder by SiteOrigin\">(Install)</a></li></ul></div>','no'),(20208,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1480357384;s:7:\"checked\";a:6:{s:19:\"akismet/akismet.php\";s:3:\"3.2\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:5:\"2.3.1\";s:36:\"elegant-themes-icons/eticonfonts.php\";s:3:\"1.3\";s:49:\"elegant-themes-updater/elegant-themes-updater.php\";s:3:\"1.1\";s:27:\"updraftplus/updraftplus.php\";s:7:\"1.12.29\";s:23:\"wordfence/wordfence.php\";s:5:\"6.2.6\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:5:{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:3:\"3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/akismet.3.2.zip\";}s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"27008\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:6:\"plugin\";s:59:\"black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:11:\"new_version\";s:5:\"2.3.1\";s:3:\"url\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"package\";s:76:\"https://downloads.wordpress.org/plugin/black-studio-tinymce-widget.2.3.1.zip\";s:14:\"upgrade_notice\";s:124:\"Version 2.x is a major update. If you are upgrading from version 1.x please ensure to backup your database before upgrading.\";}s:36:\"elegant-themes-icons/eticonfonts.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"48123\";s:4:\"slug\";s:20:\"elegant-themes-icons\";s:6:\"plugin\";s:36:\"elegant-themes-icons/eticonfonts.php\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:51:\"https://wordpress.org/plugins/elegant-themes-icons/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/elegant-themes-icons.zip\";}s:27:\"updraftplus/updraftplus.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"31679\";s:4:\"slug\";s:11:\"updraftplus\";s:6:\"plugin\";s:27:\"updraftplus/updraftplus.php\";s:11:\"new_version\";s:7:\"1.12.29\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/updraftplus/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/updraftplus.1.12.29.zip\";}s:23:\"wordfence/wordfence.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"25305\";s:4:\"slug\";s:9:\"wordfence\";s:6:\"plugin\";s:23:\"wordfence/wordfence.php\";s:11:\"new_version\";s:5:\"6.2.6\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/wordfence/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wordfence.6.2.6.zip\";}}}','no'),(20212,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1480357383;s:7:\"checked\";a:1:{s:4:\"Divi\";s:6:\"3.0.21\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(20214,'dismissed_season_notices_until','1511979853','yes'),(20215,'_transient_timeout_feed_3a39ef5d0240c40133252ada9b3c6e81','1480400733','no'),(20216,'_transient_feed_3a39ef5d0240c40133252ada9b3c6e81','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:11:\"UpdraftPlus\";s:7:\"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:\"https://updraftplus.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:77:\"WordPress\'s leading backup plugin - backup, restore and clone WordPress sites\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 26 Nov 2016 23:02: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: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.6.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:10:{i:0;a:6:{s:4:\"data\";s:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"Black Friday UpdraftPlus Discount!\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/5jitYE2udBc/\";s: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:66:\"https://updraftplus.com/black-friday-updraftplus-discount/#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:\"Wed, 23 Nov 2016 13:19: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Special Offer\";s:7:\"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:\"https://updraftplus.com/?p=181443\";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:712:\"<p>Happy Thanksgiving! We&#8217;re very thankful that our users now backup a total of almost 1 million WordPress sites, and that a thousand more do so every day! So today we&#8217;re launching an exclusive Black Friday 20% Discount off our users &#8230; <a href=\"https://updraftplus.com/black-friday-updraftplus-discount/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/black-friday-updraftplus-discount/\">Black Friday UpdraftPlus Discount!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:\"Joe Miles\";s: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:921:\"<p>Happy Thanksgiving!</p>\n<p>We&#8217;re very thankful that our users now backup a total of almost 1 million WordPress sites, and that a thousand more do so every day!</p>\n<p>So today we&#8217;re launching an exclusive Black Friday 20% Discount off our users who upgrade to UpdraftPlus Premium.  Just add this discount code at the checkout: <strong>blackfridaysale2016</strong></p>\n<p>PS &#8211; there are 20 features and benefits of upgrading to Premium.  Compare the capabilities <a href=\"http://www.updraftplus.com\">here</a></p>\n<p>&nbsp;</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/black-friday-updraftplus-discount/\">Black Friday UpdraftPlus Discount!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:63:\"https://updraftplus.com/black-friday-updraftplus-discount/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://updraftplus.com/black-friday-updraftplus-discount/\";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: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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"UpdraftPlus 1.12.25 (free version) / 2.12.25 (paid versions)\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/dF3SBDNRdRM/\";s: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:87:\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/#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:\"Sat, 12 Nov 2016 21:19:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;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:1;a:5:{s:4:\"data\";s:9:\"amazon s3\";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:7:\"dropbox\";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:\"new 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=179999\";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:792:\"<p>UpdraftPlus 1.12.25 (free version) / 2.12.25 (paid versions) is in the process of being released. The biggest thing is this release is that it now uses Dropbox&#8217;s newer interface (APIv2) for all communications. This does not require Dropbox users to &#8230; <a href=\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/\">UpdraftPlus 1.12.25 (free version) / 2.12.25 (paid versions)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:7:\"udadmin\";s: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:3784:\"<p>UpdraftPlus 1.12.25 (free version) / 2.12.25 (paid versions) is in the process of being released. The biggest thing is this release is that it now uses Dropbox&#8217;s newer interface (APIv2) for all communications. This does not require Dropbox users to take any action &#8211; it should all be seamless. Dropbox will be turning off their older interface (APIv1) in July 2017, so this gives you plenty of time to upgrade! There are also faster database backups for users on some Windows webservers. Beyond that, there are a number of tweaks and improvements (particularly internal ones, laying a foundation for future advances). As ever, it is a recommended update for all!</p>\n<p>The full changelog since 1.12.23 / 2.12.23 follows:</p>\n<ul>\n<li><strong>Fix:</strong> When importing a single site into a multisite install as a new site (experimental feature), the main multisite URL was being incorrectly adjusted</li>\n<li><strong>Fix:</strong> Fix a bug with remote scans not returning more database archives correctly</li>\n<li><strong>Compatibility:</strong> Add Dropbox APIv2 capability (see: <a href=\"https://updraftplus.com/dropbox-api-version-1-deprecation/\">https://updraftplus.com/dropbox-api-version-1-deprecation/</a>)</li>\n<li><strong>Feature:</strong> Look for mysqldump.exe in likely locations on Windows, for faster database backups</li>\n<li><strong>Tweak:</strong> UpdraftVault, Amazon S3 and DreamObjects downloaders have been rewritten without race conditions</li>\n<li><strong>Tweak:</strong> The &#8216;site information&#8217; advanced tool now contains information on loaded Apache modules.</li>\n<li><strong>Tweak:</strong> Introduce an abstraction layer for reporting on the status of restore operations</li>\n<li><strong>Tweak:</strong> Deleting remote backup sets from the dashboard is now batched for sets with many archives, to avoid potential PHP timeouts on slow remote services</li>\n<li><strong>Tweak:</strong> Updated bundled phpseclib library to version 1.0.4</li>\n<li><strong>Tweak:</strong> Introduce an internal templating layer, for improved long-term maintainability</li>\n<li><strong>Tweak:</strong> When importing a single site into a multisite install as a new site, remove any cron entries for backup runs on the new site</li>\n<li><strong>Tweak:</strong> Fix an inconsequential off-by-one in the chunked downloading algorithm so that the behaviour is as documented</li>\n<li><strong>Tweak:</strong> Improve accessibility of Labelauty components with keyboard navigation</li>\n<li><strong>Tweak:</strong> Tweak the algorithm for scheduling resumptions, to improve efficiency in the (once) seen corner-case of PHP usually having a predictable run-time, but with an instance of a much longer run-time</li>\n<li><strong>Tweak:</strong> Slightly more logging when an S3 error condition occurs, allowing easier diagnosis</li>\n<li><strong>Tweak:</strong> Add support for the new US East (Ohio) region to S3</li>\n<li><strong>Tweak:</strong> OneDrive authentication can now detect a block by CloudFlare, and direct the user accordingly</li>\n<li><strong>Tweak:</strong> If there are remote storage methods needing authentication, then pop up a box showing this to the user &#8211; so that it does not rely on them spotting the dashboard notice or having read the instructions</li>\n</ul>\n<p>David Anderson (lead developer, UpdraftPlus)</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/\">UpdraftPlus 1.12.25 (free version) / 2.12.25 (paid versions)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:84:\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/updraftplus-1-12-25-free-version-2-12-25-paid-versions/\";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: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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"Dropbox API version 1 deprecation\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/LyECr6w7tPQ/\";s: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:66:\"https://updraftplus.com/dropbox-api-version-1-deprecation/#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:\"Wed, 19 Oct 2016 14:42:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:28:\"UpdraftPlus development 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:\"\";}i:1;a:5:{s:4:\"data\";s:21:\"cloud storage methods\";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:7:\"dropbox\";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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=177090\";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:715:\"<p>At the end of last year, Dropbox announced a new interface (called an &#8220;API&#8221;) for coders (like the people who create UpdraftPlus) to use. Following this successful launch, in June of this year, they announced a deprecation plan for the &#8230; <a href=\"https://updraftplus.com/dropbox-api-version-1-deprecation/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/dropbox-api-version-1-deprecation/\">Dropbox API version 1 deprecation</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:7:\"udadmin\";s: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:1512:\"<p>At the end of last year, <a href=\"https://blogs.dropbox.com/developers/2015/11/dropbox-api-v2-launches-today/\">Dropbox announced a new interface</a> (called an &#8220;API&#8221;) for coders (like the people who create UpdraftPlus) to use. Following this successful launch, in June of this year,<a href=\"https://blogs.dropbox.com/developers/2016/06/api-v1-deprecated/\"> they announced a deprecation plan for the former API</a>.</p>\n<p>The long-and-short is this: the previous way of accessing Dropbox will stop working on 28th of June 2017, and you will need to update to a compatible version of UpdraftPlus before 28th of June 2017 comes, if you want to continuing sending backups to Dropbox. That gives you plenty of time to update &#8211; just don&#8217;t forget!</p>\n<p>Which versions are compatible, you ask? This will be our next release onwards, scheduled for the end of this month (October 2016, in case you Googled and found this some time later). This should mean version 1.12.24 (free version) or 2.12.24 (paid versions) or later. I repeat &#8211; these aren&#8217;t yet released. But they&#8217;re coming soon!</p>\n<p>David</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/dropbox-api-version-1-deprecation/\">Dropbox API version 1 deprecation</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:63:\"https://updraftplus.com/dropbox-api-version-1-deprecation/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"https://updraftplus.com/dropbox-api-version-1-deprecation/\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Major New Feature for UpdraftCentral – Manage Users on All Your Sites Remotely!\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/pkomLo__Ff8/\";s: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:93:\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/#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:\"Mon, 17 Oct 2016 11:16:02 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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:\"https://updraftplus.com/?p=176709\";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:844:\"<p>We&#8217;ve just launched a new feature for UpdraftCentral. For those of you who’ve managed to avoid knowing about, UpdraftCentral is a brilliantly-designed multiple website management tool. It enables you to back up, restore, migrate and update the core, plugins and &#8230; <a href=\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/\">Major New Feature for UpdraftCentral &#8211; Manage Users on All Your Sites Remotely!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:\"Joe Miles\";s: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:2687:\"<p>We&#8217;ve just launched a new feature for UpdraftCentral.</p>\n<p>For those of you who’ve managed to avoid knowing about, UpdraftCentral is a brilliantly-designed multiple website management tool. It enables you to back up, restore, migrate and update the core, plugins and themes of any number of websites from a <strong>single dashboard.</strong> It’s a genius product with everything you could possibly want to optimise the efficiency of managing multiple websites at a time, and because it’s built in the front end, it’s seamless, efficient and ultimately user-friendly.</p>\n<p>Anyway, we can now announce the <a href=\"https://updraftplus.com/updraftcentral/\">Premium and Cloud versions of UpdraftCentral </a>have acquired a new feature that makes them super team-friendly. This feature basically enables you to invite other users to contribute to the sites you look after, allowing you to manage exactly what they’re allowed to see and do.</p>\n<p>This saves time and hassle by cutting out the number of hoops users have to jump through in order to view and contribute to a website. Say for example you manage websites for several different companies; if a person from the company wants to update some vital information, they can do so directly, via their unique UpdraftCentral login. Maybe someone has a blog or video they want to post; if it’s approved, they can just go ahead and post it. Or if a graphic designer wants to tweak the layout, they can easily access the website and get the job done.</p>\n<p>The applications of this feature are great. By giving other users easy and direct access, you increase the sense of ownership and participation. Obviously, you always manage users’ permission levels, so you can be sure that all edits are legitimate- and there are plenty of inbuilt safeguards that ensure no one ends up where they shouldn’t be. But with you in total remote control of the team, individual users can more quickly and easily enhance the websites you manage by adding valuable new content, make vital changes or removing things that aren’t working.</p>\n<p>Do you have a story about UpdraftCentral’s new team-friendly feature? If so, please get in touch! We’d love to hear from you.</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/\">Major New Feature for UpdraftCentral &#8211; Manage Users on All Your Sites Remotely!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:90:\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"https://updraftplus.com/major-new-feature-updraftcentral-manage-users-sites-remotely/\";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:33:\"\n		\n		\n		\n		\n				\n\n		\n		\n				\n			\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"On new installs (or re-authentications), your Dropbox folder is now “Apps/UpdraftPlus.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:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/kUNX-6cbtBo/\";s: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, 13 Oct 2016 11:18: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:\"Uncategorized\";s:7:\"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:\"https://updraftplus.com/?p=176273\";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:850:\"<p>On new installs of the current release of UpdraftPlus, or old installs if you de-authorise and re-authorise the connection to your Dropbox, the Dropbox folder used to store your backups is now in the folder Apps / UpdraftPlus.Com. This is &#8230; <a href=\"https://updraftplus.com/new-installs-re-authentications-dropbox-folder-now-appsupdraftplus-com/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/new-installs-re-authentications-dropbox-folder-now-appsupdraftplus-com/\">On new installs (or re-authentications), your Dropbox folder is now &#8220;Apps/UpdraftPlus.Com&#8221;</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:7:\"udadmin\";s: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:987:\"<p>On new installs of the current release of UpdraftPlus, or old installs if you de-authorise and re-authorise the connection to your Dropbox, the Dropbox folder used to store your backups is now in the folder Apps / UpdraftPlus.Com. This is a change from the previous Apps / UpdraftPlus. If you want to learn more about this change, then <a href=\"https://updraftplus.com/faqs/dropbox-updraftplus-folder-changed-updraftplus-com/\">please see this FAQ</a>.</p>\n<p>David Anderson (lead developer, UpdraftPlus)</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/new-installs-re-authentications-dropbox-folder-now-appsupdraftplus-com/\">On new installs (or re-authentications), your Dropbox folder is now &#8220;Apps/UpdraftPlus.Com&#8221;</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:95:\"https://updraftplus.com/new-installs-re-authentications-dropbox-folder-now-appsupdraftplus-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:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:52:\"UpdraftPlus has just registered 6 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:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/8t1buPuHFFY/\";s: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:\"https://updraftplus.com/updraftplus-just-registered-6-millions-downloads/#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:\"Tue, 11 Oct 2016 12:35: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:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"UpdraftPlus growth\";s:7:\"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:\"https://updraftplus.com/?p=175974\";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:789:\"<p>Today UpdraftPlus are celebrating another milestone &#8211; UpdraftPlus has now registered over 6 million downloads on WordPress.org. Thank you to all our UpdraftPlus users for your continued support and to everyone that has left a review, feedback, or simply have given &#8230; <a href=\"https://updraftplus.com/updraftplus-just-registered-6-millions-downloads/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-just-registered-6-millions-downloads/\">UpdraftPlus has just registered 6 million downloads!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:22:\"Abigail Walters-Davies\";s: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:1390:\"<p>Today UpdraftPlus are celebrating another milestone &#8211; UpdraftPlus has now registered over 6 million downloads on <a href=\"https://wordpress.org/plugins/updraftplus/\">WordPress.org.</a></p>\n<p>Thank you to all our UpdraftPlus users for your continued support and to everyone that has left a review, feedback, or simply have given us a try.</p>\n<p>This huge number is also down to the continued hard work of our expert developer team, who work tirelessly to add and improve features to UpdraftPlus.</p>\n<p>This milestone comes as we prepare to launch our next development project, Updraft Central Premium. If you haven’t already tried UpdraftCentral, our remote, single-dashboard management for WordPress sites, you can do so<a href=\"https://wordpress.org/plugins/updraftcentral/installation/\"> here for free</a>. Keep an eye out in the next coming days for updates on the launch of the full premium version in our<a href=\"https://updraftplus.com/news/\"> newsletter</a>.</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-just-registered-6-millions-downloads/\">UpdraftPlus has just registered 6 million downloads!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:78:\"https://updraftplus.com/updraftplus-just-registered-6-millions-downloads/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"https://updraftplus.com/updraftplus-just-registered-6-millions-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:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"UpdraftPlus is Hiring! WordPress Plugin Developer Wanted\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/IE5iim41saA/\";s: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:85:\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/#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:\"Mon, 10 Oct 2016 15:22:25 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Uncategorized\";s:7:\"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:\"https://updraftplus.com/?p=175845\";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:829:\"<p>Wanted: WordPress plugin developer who uses UpraftPlus and has experience of both PHP and JavaScript. This is a permanent position to help develop UpdraftCentral and UpdraftPlus further.  So ideally it&#8217;s full time (or almost full time).  We&#8217;ll consider employment or freelance basis. &#8230; <a href=\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/\">UpdraftPlus is Hiring! WordPress Plugin Developer Wanted</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:\"Joe Miles\";s: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:3282:\"<p><strong>Wanted: WordPress plugin developer who uses UpraftPlus and has experience of both PHP and JavaScript.</strong></p>\n<p>This is a permanent position to help develop UpdraftCentral and UpdraftPlus further.  So ideally it&#8217;s full time (or almost full time).  We&#8217;ll consider employment or freelance basis.</p>\n<p>Whilst we have a team in Cardiff UK, you can work anywhere in the world!</p>\n<p>Pay is competitive and will depend on your experience.</p>\n<p>If you&#8217;re interested, email me with questions or to apply, send me an example of your code: business-management@updraftplus.com</p>\n<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>\n<p><span style=\"text-decoration: underline;\"><strong>Job Description</strong></span></p>\n<p><strong><u>PHP and JavaScript WordPress Plugin Developer </u></strong></p>\n<p><strong>Salary: competitive and depends on experience </strong></p>\n<p><strong>Location: St Marys St, Cardiff</strong></p>\n<p><strong>Start date: ASAP </strong></p>\n<p>We have an exciting opportunity for a Senior Web Developer with excellent PHP and/or JS and ideally WordPress experience to join a small team to help develop further one of the world’s fastest growing and most-installed WordPress plugins, UpdraftPlus (see <a href=\"http://www.updraftplus.com\">www.updraftplus.com</a>) .</p>\n<p>Having been downloaded 6 million times and used to backup almost 1 Million live websites, the company’s product is also the highest rated of its kind, and also the most installed plugin to come from the UK.</p>\n<p>You will play a leading role in the company’s aim to continue to be the dominant player in WP backup plugins (with PHP) and also to help develop our new JavaScript-based WordPress remote site management plugin called UpdraftCentral.</p>\n<p>You’d be working together with the company director who is also the software architect together with a small team of others involved in development and marketing.</p>\n<p><u>Responsibilities breakdown</u></p>\n<p>Our needs divide into the following areas, and your exact responsibilities will depend on your experience, how this fits with other members of the team and subject to discussion and agreement!</p>\n<p>Experience with any of the below would be very useful, but if not then a willingness to learn is essential:</p>\n<ol>\n<li>PHP &#8211; coding UpdraftPlus, plus fragments for managing the website, plus UpdraftCentral</li>\n<li>JavaScript &#8211; a smaller part of UpdraftPlus, but much bigger part of UpdraftCentral.</li>\n<li>Support – a minority of time but it&#8217;s there every day, so it&#8217;s no good if you hate support. Most support you’ll be speaking to other developers with real technical issues</li>\n</ol>\n<p>Architecture and strategic planning</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/\">UpdraftPlus is Hiring! WordPress Plugin Developer Wanted</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:82:\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"https://updraftplus.com/updraftplus-hiring-wordpress-plugin-developer-wanted/\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"UpdraftPlus 1.12.23 (free version) / 2.12.23 (paid versions)\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/ALNxHfoFW4Q/\";s: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:87:\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/#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:\"Mon, 10 Oct 2016 13:28: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:8:\"category\";a:1:{i:0;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:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=175825\";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:790:\"<p>The next release of UpdraftPlus is out, and is a recommended update for all. It contains a mix of various small improvements, and minor fixes. The most significant long-term change is that it is now using Dropbox&#8217;s newest authentication interface &#8230; <a href=\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/\">UpdraftPlus 1.12.23 (free version) / 2.12.23 (paid versions)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:7:\"udadmin\";s: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:3614:\"<p>The next release of UpdraftPlus is out, and is a recommended update for all. It contains a mix of various small improvements, and minor fixes. The most significant long-term change is that it is now using Dropbox&#8217;s newest authentication interface &#8211; this was a necessary change, as Dropbox plan to drop the older interface in summer 2017. There is nothing to do for existing users &#8211; UpdraftPlus will upgrade its Dropbox access token in the background without needing any intervention. Users of the free version will also inherit a change that paid users have enjoyed for a few weeks &#8211; a re-arranged, prettier and easier-to-navigate, &#8220;Advanced Tools&#8221; tab.</p>\n<p>All being well, our next release announcement will be a significant announcement of new capabilities in <a href=\"https://updraftplus.com/updraftcentral/\">UpdraftCentral</a>, our remote multiple-site WordPress management dashboard. Stay tuned</p>\n<p>The full UpdraftPlus changelog for this relea follows:</p>\n<ul>\n<li><strong>Fix:</strong> Fix a bug in URL replacement when cloning from a flat configuration to a WP-in-own-directory configuration</li>\n<li><strong>Fix:</strong> The button for testing connections to extra databases added to the backup was not working</li>\n<li><strong>Fix:</strong> Direct dashboard logins from UpdraftCentral were not working on WP 3.2 &#8211; 3.4 sites</li>\n<li><strong>Compatibility:</strong> Will upgrade Dropbox OAuthv1 tokens to OAuthv2 (to handle Dropbox API v1 deprecation in summer 2017)</li>\n<li><strong>Tweak:</strong> Deleting an already-deleted backup set from UpdraftCentral now produces a more informative error message</li>\n<li><strong>Tweak:</strong> When restoring only a single site out of a multisite install, store less data in memory on irrelevant tables, and do less logging when skipping tables</li>\n<li><strong>Tweak:</strong> Update bundled UDRPC library to version 1.4.9 &#8211; fixes a bug with the admin URL used for contact via UpdraftCentral on multisite</li>\n<li><strong>Tweak:</strong> Explicitly store the UpdraftPlus object as a global</li>\n<li><strong>Tweak:</strong> Prevent a pointless &#8220;unsaved settings&#8221; warning if settings were changed then the &#8216;wipe&#8217; button used</li>\n<li><strong>Tweak:</strong> When using the Importer add-on, allow backups from WordPress Backup to Dropbox to be wrapped in an extra &#8216;wpb2d&#8217; folder</li>\n<li><strong>Tweak:</strong> Strengthen protections against resuming an already-complete backup after migration on servers with misbehaving WP schedulers</li>\n<li><strong>Tweak:</strong> Touch already-existing but incomplete files being downloaded, to reduce possibility of two processes downloading at once</li>\n<li><strong>Tweak:</strong> Add a link to more information about UpdraftCentral in the advanced tool</li>\n<li><strong>Tweak:</strong> The UPDRAFTPLUS_MYSQLDUMP_EXECUTABLE define can now be used on Windows (you will need to define a path to take advantage of it)</li>\n<li><strong>Tweak:</strong> Introduce the UPDRAFTPLUS_SKIP_CPANEL_QUOTA_CHECK constant to allow skipping of trying to check cPanel quota</li>\n</ul>\n<p>David Anderson (lead developer)</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/\">UpdraftPlus 1.12.23 (free version) / 2.12.23 (paid versions)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:84:\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://updraftplus.com/updraftplus-1-12-23-free-version-2-12-23-paid-versions/\";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:42:\"\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:6:{s:0:\"\";a:7:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:65:\"UpdraftPlus is now the 24th most popular plugin on 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:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:58:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/r89OTPL71FE/\";s: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:83:\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-wordpress-org/#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, 26 Sep 2016 13:47: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:1:{i:0;a:5:{s:4:\"data\";s:18:\"UpdraftPlus growth\";s:7:\"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:\"https://updraftplus.com/?p=173996\";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:787:\"<p>We seem to be writing these milestone updates more and more frequently which is great news for our UpdraftPlus community. Over the weekend UpdraftPlus (free version) surpassed 900K active installs recorded on wordpress.org, boosting us to the #24 mark in &#8230; <a href=\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-wordpress-org/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-wordpress-org/\">UpdraftPlus is now the 24th most popular plugin on WordPress.org!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:22:\"Abigail Walters-Davies\";s: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:1142:\"<p>We seem to be writing these milestone updates more and more frequently which is great news for our UpdraftPlus community.</p>\n<p>Over the weekend UpdraftPlus (free version) surpassed <strong>900K active installs </strong>recorded on <a href=\"https://wordpress.org/plugins/updraftplus/\">wordpress.org</a>, boosting us to the <a href=\"https://wordpress.org/plugins/browse/popular/\">#24 mark in the list of most popular plugins.</a> This means we are on track for 1 million users by our next birthday.</p>\n<p>Thank you to all our UpdraftPlus users for continuing to support the development of our plugin. We’re proud to be a contributor to the growing WordPress community and look forward to the exciting times ahead.</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-wordpress-org/\">UpdraftPlus is now the 24th most popular plugin on WordPress.org!</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:79:\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-wordpress-org/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:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://updraftplus.com/updraftplus-now-24th-popular-plugin-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:\"\";}}}}}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:34:\"UpdraftPlus 2.12.21 (paid version)\";s:7:\"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:\"http://feedproxy.google.com/~r/UpdraftPlus/~3/6PuXsSCyr_w/\";s: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, 10 Sep 2016 21:07: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:8:\"category\";a:2:{i:0;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:1;a:5:{s:4:\"data\";s:11:\"new 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:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:33:\"https://updraftplus.com/?p=172128\";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:728:\"<p>UpdraftPlus 2.12.21, for paying customers, has been released, with the following changes: Fix: Fix a bug in the updater code that caused updates checks to be run more often than intended Tweak: Improve/tidy layout of the &#8220;Advanced Tools&#8221; tab Tweak: &#8230; <a href=\"https://updraftplus.com/updraftplus-2-12-21-paid-version/\">Continue reading <span class=\"meta-nav\">&#8594;</span></a></p>\n<p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-2-12-21-paid-version/\">UpdraftPlus 2.12.21 (paid version)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:7:\"udadmin\";s: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:2075:\"<p>UpdraftPlus 2.12.21, for paying customers, has been released, with the following changes:</p>\n<ul>\n<li><strong>Fix:</strong> Fix a bug in the updater code that caused updates checks to be run more often than intended</li>\n<li><strong>Tweak:</strong> Improve/tidy layout of the &#8220;Advanced Tools&#8221; tab</li>\n<li><strong>Tweak:</strong> Make it more obvious in the file uploading widget when an upload is 100% complete</li>\n<li><strong>Tweak:</strong> Prevent spurious OneDrive message being shown when re-scanning remote storage and not using OneDrive</li>\n<li><strong>Tweak:</strong> OneDrive storage now uses the refresh token yes frequently (less HTTP calls)</li>\n</ul>\n<p>And here is a screenshot of the re-organised &#8220;Advanced Tools&#8221; tab, now with much easier/more elegant navigation of available tools, down the left-hand side. This change will also be included in future releases of the free plugin:</p>\n<p><img class=\"aligncenter size-full wp-image-172129\" src=\"https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319.png\" alt=\"Advanced Tools\" width=\"920\" height=\"424\" srcset=\"https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319.png 920w, https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319-300x138.png 300w, https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319-768x354.png 768w, https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319-510x235.png 510w, https://updraftplus.com/wp-content/uploads/2016/09/Simply-bandwidth-usage-2319-610x281.png 610w\" sizes=\"(max-width: 920px) 100vw, 920px\" /></p>\n<p>David Anderson (lead developer, UpdraftPlus)</p>\n<span class=\"et_bloom_bottom_trigger\"></span><p>The post <a rel=\"nofollow\" href=\"https://updraftplus.com/updraftplus-2-12-21-paid-version/\">UpdraftPlus 2.12.21 (paid version)</a> appeared first on <a rel=\"nofollow\" href=\"https://updraftplus.com\">UpdraftPlus</a>. <a href=\"http://updraftplus.com\">UpdraftPlus - Backup, restore and migration plugin for WordPress.</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:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:8:\"origLink\";a:1:{i:0;a:5:{s:4:\"data\";s:57:\"https://updraftplus.com/updraftplus-2-12-21-paid-version/\";s:7:\"attribs\";a:0:{}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:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:2:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";s:4:\"href\";s:39:\"http://feeds.feedburner.com/UpdraftPlus\";}}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:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:2:{s:3:\"rel\";s:3:\"hub\";s:4:\"href\";s:32:\"http://pubsubhubbub.appspot.com/\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:42:\"http://rssnamespace.org/feedburner/ext/1.0\";a:1:{s:4:\"info\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:3:\"uri\";s:11:\"updraftplus\";}}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:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"etag\";s:27:\"bkvk0NPO7KV+Z/TBWaMMYJOA/UQ\";s:13:\"last-modified\";s:29:\"Mon, 28 Nov 2016 18:05:05 GMT\";s:16:\"content-encoding\";s:4:\"gzip\";s:4:\"date\";s:29:\"Mon, 28 Nov 2016 18:25:33 GMT\";s:7:\"expires\";s:29:\"Mon, 28 Nov 2016 18:25:33 GMT\";s:13:\"cache-control\";s:18:\"private, max-age=0\";s:22:\"x-content-type-options\";s:7:\"nosniff\";s:16:\"x-xss-protection\";s:13:\"1; mode=block\";s:6:\"server\";s:3:\"GSE\";}}s:5:\"build\";s:14:\"20130911080210\";}','no'),(20217,'_transient_timeout_feed_mod_3a39ef5d0240c40133252ada9b3c6e81','1480400734','no'),(20218,'_transient_feed_mod_3a39ef5d0240c40133252ada9b3c6e81','1480357534','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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=1138 DEFAULT CHARSET=utf8;
/*!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 (4,5,'_wp_attached_file','2015/12/FIE-Stingrays-2015x400.png'),(5,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:244;s:4:\"file\";s:34:\"2015/12/FIE-Stingrays-2015x400.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"FIE-Stingrays-2015x400-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"FIE-Stingrays-2015x400-300x183.png\";s:5:\"width\";i:300;s:6:\"height\";i:183;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6,5,'_wp_attachment_image_alt','FIE Stingray'),(7,6,'_wp_attached_file','2015/12/Landscaping-fun-200w.jpg'),(8,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:150;s:4:\"file\";s:32:\"2015/12/Landscaping-fun-200w.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Landscaping-fun-200w-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(9,6,'_wp_attachment_image_alt','Landscaping face'),(10,7,'_wp_attached_file','2015/12/Stingrays-Reef-1200x805.jpg'),(11,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:805;s:4:\"file\";s:35:\"2015/12/Stingrays-Reef-1200x805.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1200x805-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1200x805-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Stingrays-Reef-1200x805-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1200x805-825x510.jpg\";s:5:\"width\";i:825;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:25:\"stockphoto-graf - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(12,7,'_wp_attachment_image_alt','Stingray reef'),(13,8,'_wp_attached_file','2015/12/News-Icon-e1449613322417.png'),(14,8,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:105;s:4:\"file\";s:36:\"2015/12/News-Icon-e1449613322417.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"News-Icon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"News-Icon-300x210.png\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(15,8,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:400;s:6:\"height\";i:280;s:4:\"file\";s:13:\"News-Icon.png\";}}'),(16,8,'_wp_attachment_image_alt','News icon'),(53,43,'_wp_attached_file','2015/12/PFA-BD-Announcement.docx'),(54,44,'_wp_attached_file','2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf'),(87,45,'_et_pb_predefined_layout','on'),(88,45,'_et_pb_built_for_post_type','page'),(89,46,'_et_pb_predefined_layout','on'),(90,46,'_et_pb_built_for_post_type','page'),(91,47,'_et_pb_predefined_layout','on'),(92,47,'_et_pb_built_for_post_type','page'),(93,48,'_et_pb_predefined_layout','on'),(94,48,'_et_pb_built_for_post_type','page'),(95,49,'_et_pb_predefined_layout','on'),(96,49,'_et_pb_built_for_post_type','page'),(97,50,'_et_pb_predefined_layout','on'),(98,50,'_et_pb_built_for_post_type','page'),(99,51,'_et_pb_predefined_layout','on'),(100,51,'_et_pb_built_for_post_type','page'),(101,52,'_et_pb_predefined_layout','on'),(102,52,'_et_pb_built_for_post_type','page'),(103,53,'_et_pb_predefined_layout','on'),(104,53,'_et_pb_built_for_post_type','page'),(105,54,'_et_pb_predefined_layout','on'),(106,54,'_et_pb_built_for_post_type','page'),(107,55,'_et_pb_predefined_layout','on'),(108,55,'_et_pb_built_for_post_type','page'),(109,56,'_et_pb_predefined_layout','on'),(110,56,'_et_pb_built_for_post_type','page'),(111,57,'_et_pb_predefined_layout','on'),(112,57,'_et_pb_built_for_post_type','page'),(113,58,'_et_pb_predefined_layout','on'),(114,58,'_et_pb_built_for_post_type','page'),(115,59,'_et_pb_predefined_layout','on'),(116,59,'_et_pb_built_for_post_type','page'),(117,60,'_et_pb_predefined_layout','on'),(118,60,'_et_pb_built_for_post_type','page'),(119,61,'_et_pb_predefined_layout','on'),(120,61,'_et_pb_built_for_post_type','page'),(121,62,'_et_pb_predefined_layout','on'),(122,62,'_et_pb_built_for_post_type','page'),(123,63,'_et_pb_predefined_layout','on'),(124,63,'_et_pb_built_for_post_type','page'),(125,64,'_et_pb_predefined_layout','on'),(126,64,'_et_pb_built_for_post_type','page'),(127,65,'_et_pb_predefined_layout','on'),(128,65,'_et_pb_built_for_post_type','page'),(129,66,'_et_pb_predefined_layout','on'),(130,66,'_et_pb_built_for_post_type','page'),(131,67,'_et_pb_predefined_layout','on'),(132,67,'_et_pb_built_for_post_type','page'),(133,68,'_et_pb_predefined_layout','on'),(134,68,'_et_pb_built_for_post_type','page'),(135,69,'_et_pb_predefined_layout','on'),(136,69,'_et_pb_built_for_post_type','page'),(137,70,'_et_pb_predefined_layout','on'),(138,70,'_et_pb_built_for_post_type','page'),(139,71,'_et_pb_predefined_layout','on'),(140,71,'_et_pb_built_for_post_type','page'),(141,72,'_et_pb_predefined_layout','on'),(142,72,'_et_pb_built_for_post_type','page'),(143,73,'_et_pb_predefined_layout','on'),(144,73,'_et_pb_built_for_post_type','page'),(145,74,'_et_pb_predefined_layout','on'),(146,74,'_et_pb_built_for_post_type','page'),(147,75,'_et_pb_predefined_layout','on'),(148,75,'_et_pb_built_for_post_type','page'),(149,76,'_et_pb_predefined_layout','on'),(150,76,'_et_pb_built_for_post_type','page'),(157,79,'_wp_attached_file','2016/01/FIE-Stingrays-2015-PFA-Site-Image.png'),(158,79,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:45:\"2016/01/FIE-Stingrays-2015-PFA-Site-Image.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"FIE-Stingrays-2015-PFA-Site-Image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"FIE-Stingrays-2015-PFA-Site-Image-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:45:\"FIE-Stingrays-2015-PFA-Site-Image-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:45:\"FIE-Stingrays-2015-PFA-Site-Image-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(159,79,'_wp_attachment_image_alt','Fleming Island Elementary PFA'),(160,80,'_wp_attached_file','2016/01/cropped-FIE-Stingrays-2015-PFA-Site-Image.png'),(161,80,'_wp_attachment_context','site-icon'),(162,80,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:53:\"2016/01/cropped-FIE-Stingrays-2015-PFA-Site-Image.png\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-400x250.png\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-400x284.png\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:53:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:51:\"cropped-FIE-Stingrays-2015-PFA-Site-Image-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(163,81,'_wp_attached_file','2016/01/favicon-FIE-2015-2.jpg'),(164,81,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:30:\"2016/01/favicon-FIE-2015-2.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(165,81,'_wp_attachment_image_alt','FIE favicon'),(166,82,'_wp_attached_file','2016/01/favicon-FIE-2015-3.jpg'),(167,82,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:32;s:6:\"height\";i:32;s:4:\"file\";s:30:\"2016/01/favicon-FIE-2015-3.jpg\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(168,82,'_wp_attachment_image_alt','FIE favicon'),(169,83,'_edit_last','1'),(170,83,'_edit_lock','1471260646:1'),(171,83,'_wp_page_template','default'),(172,83,'_et_pb_post_hide_nav','default'),(173,83,'_et_pb_page_layout','et_right_sidebar'),(174,83,'_et_pb_side_nav','off'),(175,83,'_et_pb_use_builder','on'),(176,83,'_et_pb_old_content',''),(177,88,'_edit_last','1'),(178,88,'_edit_lock','1471556768:1'),(179,88,'_wp_page_template','default'),(180,88,'_et_pb_post_hide_nav','default'),(181,88,'_et_pb_page_layout','et_right_sidebar'),(182,88,'_et_pb_side_nav','off'),(183,88,'_et_pb_use_builder','on'),(184,88,'_et_pb_old_content',''),(206,103,'_edit_last','1'),(207,103,'_edit_lock','1471258230:1'),(208,103,'_wp_page_template','default'),(209,103,'_et_pb_post_hide_nav','default'),(210,103,'_et_pb_page_layout','et_right_sidebar'),(211,103,'_et_pb_side_nav','off'),(212,103,'_et_pb_use_builder','on'),(213,103,'_et_pb_old_content',''),(214,111,'_edit_last','1'),(215,111,'_edit_lock','1462913670:1'),(216,111,'_wp_page_template','default'),(217,111,'_et_pb_post_hide_nav','default'),(218,111,'_et_pb_page_layout','et_right_sidebar'),(219,111,'_et_pb_side_nav','off'),(220,111,'_et_pb_use_builder','on'),(221,111,'_et_pb_old_content',''),(222,115,'_edit_last','1'),(223,115,'_edit_lock','1471258485:1'),(224,117,'_menu_item_type','post_type'),(225,117,'_menu_item_menu_item_parent','0'),(226,117,'_menu_item_object_id','111'),(227,117,'_menu_item_object','page'),(228,117,'_menu_item_target',''),(229,117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(230,117,'_menu_item_xfn',''),(231,117,'_menu_item_url',''),(233,118,'_menu_item_type','post_type'),(234,118,'_menu_item_menu_item_parent','174'),(235,118,'_menu_item_object_id','103'),(236,118,'_menu_item_object','page'),(237,118,'_menu_item_target',''),(238,118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(239,118,'_menu_item_xfn',''),(240,118,'_menu_item_url',''),(242,119,'_menu_item_type','post_type'),(243,119,'_menu_item_menu_item_parent','0'),(244,119,'_menu_item_object_id','88'),(245,119,'_menu_item_object','page'),(246,119,'_menu_item_target',''),(247,119,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(248,119,'_menu_item_xfn',''),(249,119,'_menu_item_url',''),(260,121,'_menu_item_type','custom'),(261,121,'_menu_item_menu_item_parent','0'),(262,121,'_menu_item_object_id','121'),(263,121,'_menu_item_object','custom'),(264,121,'_menu_item_target',''),(265,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(266,121,'_menu_item_xfn',''),(267,121,'_menu_item_url','http://www.fiepfa.org/team/'),(269,123,'_wp_attached_file','2016/01/Playground-1790-600.jpg'),(270,123,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1790;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2016/01/Playground-1790-600.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Playground-1790-600-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:\"Playground-1790-600-300x101.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:101;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"Playground-1790-600-768x257.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:257;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"Playground-1790-600-1024x343.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:343;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Playground-1790-600-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:32:\"Playground-1790-600-1080x600.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Playground-1790-600-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:32:\"Playground-1790-600-1080x362.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:362;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:27:\"BillionPhotos.com - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(271,123,'_wp_attachment_image_alt','Girl on swing'),(272,135,'_wp_attached_file','2016/01/Before-Overview-1-510.jpg'),(273,135,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:33:\"2016/01/Before-Overview-1-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Before-Overview-1-510-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:\"Before-Overview-1-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Before-Overview-1-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Before-Overview-1-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(274,135,'_wp_attachment_image_alt','Playground before'),(275,137,'_wp_attached_file','2016/01/Before-Overview-2-510.jpg'),(276,137,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:337;s:4:\"file\";s:33:\"2016/01/Before-Overview-2-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Before-Overview-2-510-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:\"Before-Overview-2-510-300x198.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:198;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Before-Overview-2-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Before-Overview-2-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(277,138,'_wp_attached_file','2016/01/Playground-progress-510.jpg'),(278,138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:35:\"2016/01/Playground-progress-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Playground-progress-510-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Playground-progress-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Playground-progress-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Playground-progress-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(279,139,'_wp_attached_file','2016/01/Swing-cover-during.jpg'),(280,139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/01/Swing-cover-during.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Swing-cover-during-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Swing-cover-during-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Swing-cover-during-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Swing-cover-during-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(281,140,'_wp_attached_file','2016/01/Swing-cover-during-2-510.jpg'),(282,140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:36:\"2016/01/Swing-cover-during-2-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Swing-cover-during-2-510-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:36:\"Swing-cover-during-2-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Swing-cover-during-2-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Swing-cover-during-2-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(283,141,'_wp_attached_file','2016/01/Swings-before-510.jpg'),(284,141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:29:\"2016/01/Swings-before-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Swings-before-510-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:\"Swings-before-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Swings-before-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Swings-before-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(285,142,'_wp_attached_file','2016/01/Swingset-after-2-510.jpg'),(286,142,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:32:\"2016/01/Swingset-after-2-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Swingset-after-2-510-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:\"Swingset-after-2-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Swingset-after-2-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Swingset-after-2-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(287,143,'_wp_attached_file','2016/01/Swingset-after-510.jpg'),(288,143,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:500;s:4:\"file\";s:30:\"2016/01/Swingset-after-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Swingset-after-510-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Swingset-after-510-300x294.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Swingset-after-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Swingset-after-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(289,137,'_wp_attachment_image_alt','Playground before'),(290,141,'_wp_attachment_image_alt','Swings before'),(291,153,'_wp_attached_file','2016/01/News-events-banner-1790.jpg'),(292,153,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1790;s:6:\"height\";i:550;s:4:\"file\";s:35:\"2016/01/News-events-banner-1790.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"News-events-banner-1790-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:\"News-events-banner-1790-300x92.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:92;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"News-events-banner-1790-768x236.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:236;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"News-events-banner-1790-1024x315.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:315;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"News-events-banner-1790-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"News-events-banner-1790-1080x550.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"News-events-banner-1790-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"News-events-banner-1790-1080x332.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:332;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(293,153,'_wp_attachment_image_alt','News events kids reporting'),(294,165,'_et_pb_built_for_post_type','page'),(295,166,'_wp_attached_file','2016/02/Bake-sale-510.jpg'),(296,166,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:376;s:4:\"file\";s:25:\"2016/02/Bake-sale-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Bake-sale-510-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:\"Bake-sale-510-300x221.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:221;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:25:\"Bake-sale-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:25:\"Bake-sale-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:25:\"Monkey Business - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(297,166,'_wp_attachment_image_alt','Bake sale kids'),(298,115,'_wp_page_template','default'),(299,115,'_et_pb_post_hide_nav','default'),(300,115,'_et_pb_page_layout','et_right_sidebar'),(301,115,'_et_pb_side_nav','off'),(302,115,'_et_pb_use_builder','on'),(303,115,'_et_pb_old_content','<p>[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][/et_pb_row][/et_pb_section]</p>'),(304,174,'_menu_item_type','post_type'),(305,174,'_menu_item_menu_item_parent','0'),(306,174,'_menu_item_object_id','115'),(307,174,'_menu_item_object','page'),(308,174,'_menu_item_target',''),(309,174,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(310,174,'_menu_item_xfn',''),(311,174,'_menu_item_url',''),(313,190,'_wp_attached_file','2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf'),(314,115,'_oembed_35307a2473d540fbcf7b2bf5a47e52a2','{{unknown}}'),(315,197,'_wp_attached_file','2016/02/2016-Box-Tops-Education-Items.pdf'),(316,198,'_wp_attached_file','2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf'),(317,199,'_wp_attached_file','2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf'),(318,200,'_wp_attached_file','2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf'),(319,201,'_wp_attached_file','2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf'),(320,207,'_wp_attached_file','2016/02/Box-Tops-for-Education-320.jpg'),(321,207,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:317;s:4:\"file\";s:38:\"2016/02/Box-Tops-for-Education-320.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Box-Tops-for-Education-320-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:\"Box-Tops-for-Education-320-300x297.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:297;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Box-Tops-for-Education-320-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Box-Tops-for-Education-320-320x284.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(322,208,'_wp_attached_file','2016/02/Chip-in-for-youth-2016-logo-320.jpg'),(323,208,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:321;s:4:\"file\";s:43:\"2016/02/Chip-in-for-youth-2016-logo-320.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Chip-in-for-youth-2016-logo-320-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:43:\"Chip-in-for-youth-2016-logo-320-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:43:\"Chip-in-for-youth-2016-logo-320-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:43:\"Chip-in-for-youth-2016-logo-320-320x284.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(324,209,'_wp_attached_file','2016/02/Coke-Rewards-Help-School-320.jpg'),(325,209,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:267;s:4:\"file\";s:40:\"2016/02/Coke-Rewards-Help-School-320.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Coke-Rewards-Help-School-320-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Coke-Rewards-Help-School-320-300x250.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Coke-Rewards-Help-School-320-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(328,211,'_wp_attached_file','2016/02/Go-Green-Logo-320.jpg'),(329,211,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:318;s:4:\"file\";s:29:\"2016/02/Go-Green-Logo-320.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Go-Green-Logo-320-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:\"Go-Green-Logo-320-300x298.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:298;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Go-Green-Logo-320-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Go-Green-Logo-320-320x284.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(330,212,'_wp_attached_file','2016/02/Kids-Eat-310.jpg'),(331,212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:285;s:4:\"file\";s:24:\"2016/02/Kids-Eat-310.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Kids-Eat-310-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Kids-Eat-310-300x267.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:24:\"Kids-Eat-310-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:24:\"Kids-Eat-310-320x284.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:18:\"Ptrouche - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(332,213,'_wp_attached_file','2016/02/Kids-Hula-AS-320.jpg'),(333,213,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:385;s:4:\"file\";s:28:\"2016/02/Kids-Hula-AS-320.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Kids-Hula-AS-320-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:\"Kids-Hula-AS-320-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Kids-Hula-AS-320-320x250.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Kids-Hula-AS-320-320x284.jpg\";s:5:\"width\";i:320;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(338,207,'_wp_attachment_image_alt','Box tops'),(339,208,'_wp_attachment_image_alt','Chip in for Youth FIE'),(340,213,'_wp_attachment_image_alt','Hula Dance FIE'),(342,212,'_wp_attachment_image_alt','Kids eat Spirit Night'),(343,216,'_wp_attached_file','2016/02/Receipts-320.jpg'),(344,216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:24:\"2016/02/Receipts-320.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Receipts-320-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Receipts-320-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:22:\"Elenathewise - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(345,216,'_wp_attachment_image_alt','Receipts Shoparoo FIE'),(347,209,'_wp_attachment_image_alt','My Coke Rewards for School'),(348,211,'_wp_attachment_image_alt','GO GREEN Charity Recyclers'),(352,220,'_wp_attached_file','2016/02/Read-a-thon-FIE-510.jpg'),(353,220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:377;s:4:\"file\";s:31:\"2016/02/Read-a-thon-FIE-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Read-a-thon-FIE-510-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:\"Read-a-thon-FIE-510-300x222.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:31:\"Read-a-thon-FIE-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:31:\"Read-a-thon-FIE-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(354,220,'_wp_attachment_image_alt','Read-a-thon FIE'),(355,221,'_wp_attached_file','2016/02/Happy-Birthday-Marquee-510.jpg'),(356,221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:291;s:4:\"file\";s:38:\"2016/02/Happy-Birthday-Marquee-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Happy-Birthday-Marquee-510-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:\"Happy-Birthday-Marquee-510-300x171.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:171;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Happy-Birthday-Marquee-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Happy-Birthday-Marquee-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:15:\"Nelos - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(357,221,'_wp_attachment_image_alt',''),(358,228,'_wp_attached_file','2016/02/Labels-for-Education-UPC-trans.png'),(359,228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:278;s:4:\"file\";s:42:\"2016/02/Labels-for-Education-UPC-trans.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"Labels-for-Education-UPC-trans-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"Labels-for-Education-UPC-trans-300x261.png\";s:5:\"width\";i:300;s:6:\"height\";i:261;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:42:\"Labels-for-Education-UPC-trans-320x250.png\";s:5:\"width\";i:320;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(360,228,'_wp_attachment_image_alt','Labels for Education'),(362,231,'_wp_attached_file','2016/02/coke-rewards-product-list-320-trans.png'),(363,231,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:238;s:4:\"file\";s:47:\"2016/02/coke-rewards-product-list-320-trans.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"coke-rewards-product-list-320-trans-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:47:\"coke-rewards-product-list-320-trans-300x223.png\";s:5:\"width\";i:300;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(364,231,'_wp_attachment_image_alt','My Coke Rewards'),(365,237,'_et_pb_built_for_post_type','page'),(366,238,'_edit_last','1'),(367,238,'_edit_lock','1474336905:1'),(371,238,'_wp_page_template','default'),(372,238,'_et_pb_post_hide_nav','default'),(373,238,'_et_pb_page_layout','et_right_sidebar'),(374,238,'_et_pb_side_nav','off'),(375,238,'_et_pb_use_builder','on'),(376,238,'_et_pb_old_content',''),(389,247,'_menu_item_type','post_type'),(390,247,'_menu_item_menu_item_parent','0'),(391,247,'_menu_item_object_id','238'),(392,247,'_menu_item_object','page'),(393,247,'_menu_item_target',''),(394,247,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(395,247,'_menu_item_xfn',''),(396,247,'_menu_item_url',''),(401,250,'_wp_attached_file','2016/02/FIE-Volunteer-Reg-Form.pdf'),(405,253,'_wp_attached_file','2016/02/Volunteer-hands-1790-500.jpg'),(406,253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1790;s:6:\"height\";i:503;s:4:\"file\";s:36:\"2016/02/Volunteer-hands-1790-500.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Volunteer-hands-1790-500-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Volunteer-hands-1790-500-300x84.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:84;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Volunteer-hands-1790-500-768x216.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:216;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Volunteer-hands-1790-500-1024x288.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Volunteer-hands-1790-500-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Volunteer-hands-1790-500-1080x503.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:503;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Volunteer-hands-1790-500-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"Volunteer-hands-1790-500-1080x303.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:303;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:21:\"fotomaximum - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(407,253,'_wp_attachment_image_alt','Volunteer hands'),(408,258,'_wp_attached_file','2016/02/FIE-Volunteer-Log.pdf'),(423,270,'_wp_attached_file','2016/02/Boy-camera-320-225.jpg'),(424,270,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:30:\"2016/02/Boy-camera-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Boy-camera-320-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Boy-camera-320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:24:\"Mikolaj Klimek - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(425,271,'_wp_attached_file','2016/02/brownies-cookies-320-225.jpg'),(426,271,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:36:\"2016/02/brownies-cookies-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"brownies-cookies-320-225-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:36:\"brownies-cookies-320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(427,272,'_wp_attached_file','2016/02/children-running-silhouettex320-225.jpg'),(428,272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:47:\"2016/02/children-running-silhouettex320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"children-running-silhouettex320-225-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:\"children-running-silhouettex320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:30:\"(c) Srnicholl | Dreamstime.com\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(429,272,'_wp_attachment_image_alt','Kids running'),(430,270,'_wp_attachment_image_alt','Boy camera'),(431,271,'_wp_attachment_image_alt','Cookies brownies'),(432,276,'_wp_attached_file','2016/02/Kid-compuer-Money-FIE-320-225.jpg'),(433,276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:225;s:4:\"file\";s:41:\"2016/02/Kid-compuer-Money-FIE-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"Kid-compuer-Money-FIE-320-225-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:41:\"Kid-compuer-Money-FIE-320-225-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:26:\"Copyright: Paulus Rusyanto\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(434,276,'_wp_attachment_image_alt','Boy computer rewards'),(435,278,'_wp_attached_file','2016/02/Reading-imagination-boy-320-225.jpg'),(436,278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:43:\"2016/02/Reading-imagination-boy-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"Reading-imagination-boy-320-225-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:43:\"Reading-imagination-boy-320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:22:\"HaywireMedia - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(437,278,'_wp_attachment_image_alt','Boy reading imagination'),(438,279,'_wp_attached_file','2016/02/Pizza-girls-320-225.jpg'),(439,279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2016/02/Pizza-girls-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Pizza-girls-320-225-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:\"Pizza-girls-320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:15:\"Shmel - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(440,279,'_wp_attachment_image_alt',''),(444,288,'_wp_attached_file','2016/01/Stingrays-Reef-1790-488.jpg'),(445,288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1790;s:6:\"height\";i:488;s:4:\"file\";s:35:\"2016/01/Stingrays-Reef-1790-488.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1790-488-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:\"Stingrays-Reef-1790-488-300x82.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1790-488-768x209.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Stingrays-Reef-1790-488-1024x279.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:279;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1790-488-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:36:\"Stingrays-Reef-1790-488-1080x488.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:488;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Stingrays-Reef-1790-488-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:36:\"Stingrays-Reef-1790-488-1080x294.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:25:\"stockphoto-graf - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(446,288,'_wp_attachment_image_alt','Stingrays cove'),(447,297,'_edit_last','1'),(448,297,'_edit_lock','1463445764:1'),(449,297,'_wp_page_template','default'),(450,297,'_et_pb_post_hide_nav','default'),(451,297,'_et_pb_page_layout','et_right_sidebar'),(452,297,'_et_pb_side_nav','off'),(453,297,'_et_pb_use_builder','on'),(454,297,'_et_pb_old_content',''),(455,299,'_wp_attached_file','2016/02/Kids-Thumbs-up-520.jpg'),(456,299,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:341;s:4:\"file\";s:30:\"2016/02/Kids-Thumbs-up-520.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Kids-Thumbs-up-520-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Kids-Thumbs-up-520-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Kids-Thumbs-up-520-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Kids-Thumbs-up-520-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:16:\"godfer - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(457,299,'_wp_attachment_image_alt','Kids thumbs up'),(458,302,'_wp_attached_file','2016/02/FIE-PFA-Minutes-201509.docx'),(459,303,'_wp_attached_file','2016/02/FIE-PFA-Minutes-201510.docx'),(460,304,'_wp_attached_file','2016/02/FIE-PFA-Minutes-201511.docx'),(461,310,'_edit_last','1'),(462,310,'_edit_lock','1454875108:1'),(463,310,'_wp_page_template','default'),(464,310,'_et_pb_post_hide_nav','default'),(465,310,'_et_pb_page_layout','et_right_sidebar'),(466,310,'_et_pb_side_nav','off'),(467,310,'_et_pb_use_builder','on'),(468,310,'_et_pb_old_content',''),(469,314,'_menu_item_type','post_type'),(470,314,'_menu_item_menu_item_parent','0'),(471,314,'_menu_item_object_id','310'),(472,314,'_menu_item_object','page'),(473,314,'_menu_item_target',''),(474,314,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(475,314,'_menu_item_xfn',''),(476,314,'_menu_item_url',''),(478,315,'_menu_item_type','post_type'),(479,315,'_menu_item_menu_item_parent','0'),(480,315,'_menu_item_object_id','297'),(481,315,'_menu_item_object','page'),(482,315,'_menu_item_target',''),(483,315,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(484,315,'_menu_item_xfn',''),(485,315,'_menu_item_url',''),(487,316,'_et_pb_built_for_post_type','page'),(488,330,'_edit_last','1'),(489,330,'_edit_lock','1454661614:1'),(490,331,'_wp_attached_file','2016/02/FIE-BARB-201511.pdf'),(491,332,'_wp_attached_file','2016/02/FIE-BARB-201512-201601.pdf'),(492,333,'_wp_attached_file','2016/02/FIE-BARB-201602.pdf'),(495,330,'_et_post_bg_color','#ffffff'),(496,330,'_et_post_bg_layout','light'),(497,330,'_et_pb_show_title','on'),(498,330,'_et_pb_post_hide_nav','default'),(499,330,'_et_pb_page_layout','et_right_sidebar'),(500,330,'_et_pb_side_nav','off'),(501,330,'_et_pb_use_builder',''),(502,330,'_et_pb_old_content',''),(507,337,'_edit_last','1'),(508,337,'_edit_lock','1454661651:1'),(511,337,'_et_post_bg_color','#ffffff'),(512,337,'_et_post_bg_layout','light'),(513,337,'_et_pb_show_title','on'),(514,337,'_et_pb_post_hide_nav','default'),(515,337,'_et_pb_page_layout','et_right_sidebar'),(516,337,'_et_pb_side_nav','off'),(517,337,'_et_pb_use_builder',''),(518,337,'_et_pb_old_content',''),(521,340,'_edit_last','1'),(522,340,'_edit_lock','1454661690:1'),(525,340,'_et_post_bg_color','#ffffff'),(526,340,'_et_post_bg_layout','light'),(527,340,'_et_pb_show_title','on'),(528,340,'_et_pb_post_hide_nav','default'),(529,340,'_et_pb_page_layout','et_right_sidebar'),(530,340,'_et_pb_side_nav','off'),(531,340,'_et_pb_use_builder',''),(532,340,'_et_pb_old_content',''),(546,344,'_edit_lock','1461271090:1'),(547,344,'_edit_last','1'),(548,344,'_wp_page_template','default'),(549,344,'_et_pb_post_hide_nav','default'),(550,344,'_et_pb_page_layout','et_right_sidebar'),(551,344,'_et_pb_side_nav','off'),(552,344,'_et_pb_use_builder','on'),(553,344,'_et_pb_old_content',''),(554,355,'_et_pb_built_for_post_type','page'),(555,356,'_edit_lock','1456932168:1'),(556,356,'_edit_last','1'),(557,356,'_wp_page_template','default'),(558,356,'_et_pb_post_hide_nav','default'),(559,356,'_et_pb_page_layout','et_right_sidebar'),(560,356,'_et_pb_side_nav','off'),(561,356,'_et_pb_use_builder','on'),(562,356,'_et_pb_old_content',''),(572,371,'_et_pb_module_type','et_pb_blurb'),(573,371,'_et_pb_built_for_post_type','page'),(574,374,'_et_pb_module_type','et_pb_text'),(575,374,'_et_pb_built_for_post_type','page'),(579,385,'_wp_attached_file','2016/02/FIE-Logo-2015-400.png'),(580,385,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:85;s:4:\"file\";s:29:\"2016/02/FIE-Logo-2015-400.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"FIE-Logo-2015-400-150x85.png\";s:5:\"width\";i:150;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"FIE-Logo-2015-400-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"FIE-Logo-2015-400-400x85.png\";s:5:\"width\";i:400;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"FIE-Logo-2015-400-400x85.png\";s:5:\"width\";i:400;s:6:\"height\";i:85;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(581,385,'_wp_attachment_image_alt','FIE PFA logo'),(582,386,'_edit_lock','1454432137:2'),(583,386,'_edit_last','2'),(586,386,'_et_post_bg_color','#ffffff'),(587,386,'_et_post_bg_layout','light'),(588,386,'_et_pb_show_title','on'),(589,386,'_et_pb_post_hide_nav','default'),(590,386,'_et_pb_page_layout','et_right_sidebar'),(591,386,'_et_pb_side_nav','off'),(592,386,'_et_pb_use_builder',''),(593,386,'_et_pb_old_content',''),(594,388,'_wp_attached_file','2016/02/Thank-you-510-jpg.jpg'),(595,388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:383;s:4:\"file\";s:29:\"2016/02/Thank-you-510-jpg.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Thank-you-510-jpg-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:\"Thank-you-510-jpg-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Thank-you-510-jpg-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Thank-you-510-jpg-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(596,388,'_wp_attachment_image_alt','Thank you'),(597,310,'_oembed_7506f7f7c49614b089102aaab0d825ae','{{unknown}}'),(598,390,'_wp_attached_file','2016/02/Borland-Groover-Clinic-logo-225-225.jpg'),(599,390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:47:\"2016/02/Borland-Groover-Clinic-logo-225-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Borland-Groover-Clinic-logo-225-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(600,391,'_wp_attached_file','2016/02/cfa-new-225.jpg'),(601,391,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:23:\"2016/02/cfa-new-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"cfa-new-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(604,393,'_wp_attached_file','2016/02/Island-Pediatrics-Logo-225.jpg'),(605,393,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:38:\"2016/02/Island-Pediatrics-Logo-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Island-Pediatrics-Logo-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(606,394,'_wp_attached_file','2016/02/moes-sw-grill-logo-225.jpg'),(607,394,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:34:\"2016/02/moes-sw-grill-logo-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"moes-sw-grill-logo-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(608,395,'_wp_attached_file','2016/02/rpm_logo-225jpg.jpg'),(609,395,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:27:\"2016/02/rpm_logo-225jpg.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"rpm_logo-225jpg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(610,396,'_wp_attached_file','2016/02/Select-Health-and-Wellness-Logo-225.jpg'),(611,396,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:47:\"2016/02/Select-Health-and-Wellness-Logo-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Select-Health-and-Wellness-Logo-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(612,397,'_wp_attached_file','2016/02/Tree-amigo-logo-225.jpg'),(613,397,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2016/02/Tree-amigo-logo-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Tree-amigo-logo-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(614,398,'_wp_attached_file','2016/02/Saigon-Tokyo-225.jpg'),(615,398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:28:\"2016/02/Saigon-Tokyo-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Saigon-Tokyo-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(616,401,'_wp_attached_file','2016/01/Photo-Coming-Soon-225.jpg'),(617,401,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2016/01/Photo-Coming-Soon-225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Photo-Coming-Soon-225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:27:\"Ingus Evertovskis - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;s:8:\"keywords\";a:0:{}}}'),(618,404,'_et_pb_module_type','et_pb_team_member'),(619,404,'_et_pb_built_for_post_type','page'),(620,405,'_et_pb_module_type','et_pb_team_member'),(621,405,'_et_pb_built_for_post_type','page'),(622,408,'_et_pb_module_type','et_pb_blurb'),(623,408,'_et_pb_built_for_post_type','page'),(624,411,'_wp_attached_file','2016/02/Boy-Valentine-320-225.jpg'),(625,411,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:225;s:4:\"file\";s:33:\"2016/02/Boy-Valentine-320-225.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Boy-Valentine-320-225-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:\"Boy-Valentine-320-225-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:24:\"chasingmoments - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(626,411,'_wp_attachment_image_alt','Boy hearts'),(633,424,'_menu_item_type','post_type'),(634,424,'_menu_item_menu_item_parent','315'),(635,424,'_menu_item_object_id','356'),(636,424,'_menu_item_object','page'),(637,424,'_menu_item_target',''),(638,424,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(639,424,'_menu_item_xfn',''),(640,424,'_menu_item_url',''),(642,425,'_menu_item_type','post_type'),(643,425,'_menu_item_menu_item_parent','315'),(644,425,'_menu_item_object_id','344'),(645,425,'_menu_item_object','page'),(646,425,'_menu_item_target',''),(647,425,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(648,425,'_menu_item_xfn',''),(649,425,'_menu_item_url',''),(651,426,'_menu_item_type','post_type'),(652,426,'_menu_item_menu_item_parent','315'),(653,426,'_menu_item_object_id','297'),(654,426,'_menu_item_object','page'),(655,426,'_menu_item_target',''),(656,426,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(657,426,'_menu_item_xfn',''),(658,426,'_menu_item_url',''),(660,428,'_menu_item_type','custom'),(661,428,'_menu_item_menu_item_parent','315'),(662,428,'_menu_item_object_id','428'),(663,428,'_menu_item_object','custom'),(664,428,'_menu_item_target',''),(665,428,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(666,428,'_menu_item_xfn',''),(667,428,'_menu_item_url','http://fie.oneclay.net'),(669,429,'_wp_attached_file','2016/01/Arlene-Manalo-225x300.png'),(670,429,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:33:\"2016/01/Arlene-Manalo-225x300.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Arlene-Manalo-225x300-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Arlene-Manalo-225x300-225x300.png\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:33:\"Arlene-Manalo-225x300-225x250.png\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:33:\"Arlene-Manalo-225x300-225x284.png\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(671,430,'_wp_attached_file','2016/01/Christine-Leon-Vorst-225x300.jpg'),(672,430,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2016/01/Christine-Leon-Vorst-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Christine-Leon-Vorst-225x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Christine-Leon-Vorst-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Christine-Leon-Vorst-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Christine-Leon-Vorst-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(673,431,'_wp_attached_file','2016/01/Dana-Archibald-225x300.jpg'),(674,431,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2016/01/Dana-Archibald-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"Dana-Archibald-225x300-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:\"Dana-Archibald-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:34:\"Dana-Archibald-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:34:\"Dana-Archibald-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(675,432,'_wp_attached_file','2016/01/Kim-Marks-Photo-225x300.jpg'),(676,432,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:35:\"2016/01/Kim-Marks-Photo-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Kim-Marks-Photo-225x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Kim-Marks-Photo-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:35:\"Kim-Marks-Photo-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:35:\"Kim-Marks-Photo-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(677,433,'_wp_attached_file','2016/01/Linda-Kupfer-Photo-225x300.jpg'),(678,433,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2016/01/Linda-Kupfer-Photo-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Linda-Kupfer-Photo-225x300-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:\"Linda-Kupfer-Photo-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Linda-Kupfer-Photo-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Linda-Kupfer-Photo-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(679,434,'_wp_attached_file','2016/01/Meredith-Hoffmann-225x300.jpg'),(680,434,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2016/01/Meredith-Hoffmann-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Meredith-Hoffmann-225x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Meredith-Hoffmann-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Meredith-Hoffmann-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Meredith-Hoffmann-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(681,435,'_wp_attached_file','2016/01/Stephanie-Boccieri-Headshot-225x300.jpg'),(682,435,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:47:\"2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"Stephanie-Boccieri-Headshot-225x300-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:\"Stephanie-Boccieri-Headshot-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:47:\"Stephanie-Boccieri-Headshot-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:47:\"Stephanie-Boccieri-Headshot-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(683,431,'_wp_attachment_image_alt','Dana Archibald'),(684,432,'_wp_attachment_image_alt','Kim Marks'),(685,429,'_wp_attachment_image_alt','Arlene Manalo'),(686,433,'_wp_attachment_image_alt','Linda Kupfer'),(687,430,'_wp_attachment_image_alt','Christine Leon Vorst'),(688,434,'_wp_attachment_image_alt','Meredith Hoffman'),(689,435,'_wp_attachment_image_alt','Stephanie Boccieri'),(690,440,'_wp_attached_file','2016/01/Photo-Coming-Soon-225x300.jpg'),(691,440,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2016/01/Photo-Coming-Soon-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Photo-Coming-Soon-225x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Photo-Coming-Soon-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Photo-Coming-Soon-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Photo-Coming-Soon-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"Ingus Evertovskis - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(692,440,'_wp_attachment_image_alt','Coming soon'),(693,446,'_wp_attached_file','2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg'),(694,446,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:52:\"2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"tropical-smoothie-cafe-logo-2015-225x225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(695,446,'_wp_attachment_image_alt','Tropical Smoothie logo'),(696,448,'_wp_attached_file','2016/02/CFCUFL-Logo-225x225.jpg'),(697,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:31:\"2016/02/CFCUFL-Logo-225x225.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"CFCUFL-Logo-225x225-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(698,448,'_wp_attachment_image_alt',''),(699,449,'_wp_attached_file','2016/02/island-life-grill-logo-225-1.jpg'),(700,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:225;s:4:\"file\";s:40:\"2016/02/island-life-grill-logo-225-1.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"island-life-grill-logo-225-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(701,449,'_wp_attachment_image_alt','Island Life Grill'),(703,452,'_et_pb_row_layout','1_3,2_3'),(704,452,'_et_pb_built_for_post_type','page'),(705,460,'_edit_lock','1458501054:1'),(706,460,'_edit_last','1'),(707,460,'_wp_page_template','default'),(708,460,'_et_pb_post_hide_nav','default'),(709,460,'_et_pb_page_layout','et_right_sidebar'),(710,460,'_et_pb_side_nav','off'),(711,460,'_et_pb_use_builder','on'),(712,460,'_et_pb_old_content',''),(713,462,'_wp_attached_file','2016/01/Get-registered-get-movin-510.jpg'),(714,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:520;s:4:\"file\";s:40:\"2016/01/Get-registered-get-movin-510.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Get-registered-get-movin-510-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Get-registered-get-movin-510-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:40:\"Get-registered-get-movin-510-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:40:\"Get-registered-get-movin-510-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(715,462,'_wp_attachment_image_alt','Read-a-thon'),(716,472,'_et_pb_built_for_post_type','page'),(717,473,'_et_pb_built_for_post_type','page'),(718,479,'_menu_item_type','post_type'),(719,479,'_menu_item_menu_item_parent','174'),(720,479,'_menu_item_object_id','460'),(721,479,'_menu_item_object','page'),(722,479,'_menu_item_target',''),(723,479,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(724,479,'_menu_item_xfn',''),(725,479,'_menu_item_url',''),(727,480,'_et_pb_built_for_post_type','page'),(728,492,'_et_pb_built_for_post_type','page'),(729,507,'_et_pb_module_type','et_pb_blurb'),(730,507,'_et_pb_built_for_post_type','page'),(731,508,'_et_pb_module_type','et_pb_blurb'),(732,508,'_et_pb_built_for_post_type','page'),(733,511,'_wp_attached_file','2016/02/FIE-PFA-Minutes-201512.docx'),(734,512,'_wp_attached_file','2016/02/FIE-PFA-Minutes-201601.docx'),(735,516,'_wp_attached_file','2016/01/Susan-Mabry-Photo-225x300.jpg'),(736,516,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2016/01/Susan-Mabry-Photo-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"Susan-Mabry-Photo-225x300-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"Susan-Mabry-Photo-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:37:\"Susan-Mabry-Photo-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:37:\"Susan-Mabry-Photo-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(737,516,'_wp_attachment_image_alt','Susan Mabry'),(738,523,'_edit_lock','1461865492:1'),(739,523,'_edit_last','1'),(740,524,'_wp_attached_file','2016/03/FIE-BARB-201603.pdf'),(743,523,'_et_post_bg_color','#ffffff'),(744,523,'_et_post_bg_layout','light'),(745,523,'_et_pb_show_title','on'),(746,523,'_et_pb_post_hide_nav','default'),(747,523,'_et_pb_page_layout','et_right_sidebar'),(748,523,'_et_pb_side_nav','off'),(749,523,'_et_pb_use_builder',''),(750,523,'_et_pb_old_content',''),(757,528,'_et_pb_module_type','et_pb_text'),(758,528,'_et_pb_built_for_post_type','page'),(759,529,'_et_pb_row_layout','1_2,1_2'),(760,529,'_et_pb_built_for_post_type','page'),(761,532,'_et_pb_row_layout','1_2,1_2'),(762,532,'_et_pb_built_for_post_type','page'),(763,533,'_et_pb_row_layout','1_2,1_2'),(764,533,'_et_pb_built_for_post_type','page'),(765,534,'_et_pb_built_for_post_type','page'),(766,549,'_wp_attached_file','2016/02/FIE-PFA-Minutes-20160202.docx'),(767,552,'_edit_lock','1459045787:1'),(768,552,'_edit_last','1'),(771,552,'_et_post_bg_color','#ffffff'),(772,552,'_et_post_bg_layout','light'),(773,552,'_et_pb_show_title','on'),(774,552,'_et_pb_post_hide_nav','default'),(775,552,'_et_pb_page_layout','et_right_sidebar'),(776,552,'_et_pb_side_nav','off'),(777,552,'_et_pb_use_builder',''),(778,552,'_et_pb_old_content',''),(785,555,'_wp_attached_file','2016/01/Computer-Kids-320w.jpg'),(786,555,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:30:\"2016/01/Computer-Kids-320w.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Computer-Kids-320w-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Computer-Kids-320w-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:23:\"Lisa F. Young - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(787,555,'_wp_attachment_image_alt','Kids computer'),(790,558,'_wp_attached_file','2016/01/Thank-you-library-kid-510w.jpg'),(791,558,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:340;s:4:\"file\";s:38:\"2016/01/Thank-you-library-kid-510w.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Thank-you-library-kid-510w-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:\"Thank-you-library-kid-510w-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:38:\"Thank-you-library-kid-510w-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:38:\"Thank-you-library-kid-510w-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"BillionPhotos.com - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(792,558,'_wp_attachment_image_alt','Thank you library'),(798,564,'_wp_attached_file','2016/02/Thank-you-library-kid-320w.jpg'),(799,564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:320;s:6:\"height\";i:213;s:4:\"file\";s:38:\"2016/02/Thank-you-library-kid-320w.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"Thank-you-library-kid-320w-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:\"Thank-you-library-kid-320w-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:27:\"BillionPhotos.com - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(800,566,'_wp_attached_file','2016/02/FIE-RAT-Overview-201603-14309-LR.jpg'),(801,566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1152;s:6:\"height\";i:1820;s:4:\"file\";s:44:\"2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"FIE-RAT-Overview-201603-14309-LR-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:\"FIE-RAT-Overview-201603-14309-LR-190x300.jpg\";s:5:\"width\";i:190;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:45:\"FIE-RAT-Overview-201603-14309-LR-768x1213.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1213;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:45:\"FIE-RAT-Overview-201603-14309-LR-648x1024.jpg\";s:5:\"width\";i:648;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:44:\"FIE-RAT-Overview-201603-14309-LR-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:45:\"FIE-RAT-Overview-201603-14309-LR-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:44:\"FIE-RAT-Overview-201603-14309-LR-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:46:\"FIE-RAT-Overview-201603-14309-LR-1080x1706.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:1706;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,566,'_wp_attachment_image_alt','Read-a-Thon 2016'),(803,576,'_et_pb_row_layout','1_3,2_3'),(804,576,'_et_pb_built_for_post_type','page'),(807,582,'_et_pb_module_type','et_pb_blurb'),(808,582,'_et_pb_built_for_post_type','page'),(809,585,'_et_pb_module_type','et_pb_blurb'),(810,585,'_et_pb_built_for_post_type','page'),(811,238,'_et_pb_ab_bounce_rate_limit','5'),(812,238,'_et_pb_ab_stats_refresh_interval','hourly'),(813,238,'_et_pb_enable_shortcode_tracking',''),(814,238,'_et_pb_custom_css',''),(815,238,'_et_pb_light_text_color','#FFFFFF'),(816,238,'_et_pb_dark_text_color','#666666'),(817,238,'_et_pb_content_area_background_color','rgba(255,255,255,0)'),(818,238,'_et_pb_section_background_color','#FFFFFF'),(819,587,'_edit_lock','1461865764:1'),(820,587,'_edit_last','1'),(821,588,'_wp_attached_file','2016/04/FIE-BARB-201604.pdf'),(824,587,'_et_post_bg_color','#ffffff'),(825,587,'_et_post_bg_layout','light'),(826,587,'_et_pb_show_title','on'),(827,587,'_et_pb_post_hide_nav','default'),(828,587,'_et_pb_page_layout','et_right_sidebar'),(829,587,'_et_pb_side_nav','off'),(830,587,'_et_pb_use_builder',''),(831,587,'_et_pb_ab_bounce_rate_limit','5'),(832,587,'_et_pb_ab_stats_refresh_interval','hourly'),(833,587,'_et_pb_old_content',''),(834,587,'_et_pb_enable_shortcode_tracking',''),(835,587,'_et_pb_custom_css',''),(836,587,'_et_pb_light_text_color','#FFFFFF'),(837,587,'_et_pb_dark_text_color','#666666'),(838,587,'_et_pb_content_area_background_color',''),(839,587,'_et_pb_section_background_color','#FFFFFF'),(842,590,'_edit_lock','1464896437:1'),(843,590,'_edit_last','1'),(844,591,'_wp_attached_file','2016/04/FIE-PFA-Nomination-Form-2016.pdf'),(845,592,'_wp_attached_file','2016/04/FIE-PFA-Positions-2016-LR.pdf'),(848,590,'_et_post_bg_color','#ffffff'),(849,590,'_et_post_bg_layout','light'),(850,590,'_et_pb_show_title','on'),(851,590,'_et_pb_post_hide_nav','default'),(852,590,'_et_pb_page_layout','et_right_sidebar'),(853,590,'_et_pb_side_nav','off'),(854,590,'_et_pb_use_builder',''),(855,590,'_et_pb_ab_bounce_rate_limit','5'),(856,590,'_et_pb_ab_stats_refresh_interval','hourly'),(857,590,'_et_pb_old_content',''),(858,590,'_et_pb_enable_shortcode_tracking',''),(859,590,'_et_pb_custom_css',''),(860,590,'_et_pb_light_text_color','#FFFFFF'),(861,590,'_et_pb_dark_text_color','#666666'),(862,590,'_et_pb_content_area_background_color',''),(863,590,'_et_pb_section_background_color','#FFFFFF'),(868,83,'_et_pb_ab_bounce_rate_limit','5'),(869,83,'_et_pb_ab_stats_refresh_interval','hourly'),(870,83,'_et_pb_enable_shortcode_tracking',''),(871,83,'_et_pb_custom_css',''),(872,83,'_et_pb_light_text_color','#FFFFFF'),(873,83,'_et_pb_dark_text_color','#666666'),(874,83,'_et_pb_content_area_background_color',''),(875,83,'_et_pb_section_background_color','#FFFFFF'),(876,596,'_wp_attached_file','2016/01/Leader-puzzle-520.jpg'),(877,596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:520;s:6:\"height\";i:400;s:4:\"file\";s:29:\"2016/01/Leader-puzzle-520.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"Leader-puzzle-520-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:\"Leader-puzzle-520-300x231.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:231;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:29:\"Leader-puzzle-520-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:29:\"Leader-puzzle-520-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:24:\"DOC RABE Media - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(878,596,'_wp_attachment_image_alt','leader puzzle'),(879,597,'_et_pb_built_for_post_type','page'),(882,600,'_et_pb_row_layout','4_4'),(883,600,'_et_pb_built_for_post_type','page'),(886,297,'_et_pb_ab_bounce_rate_limit','5'),(887,297,'_et_pb_ab_stats_refresh_interval','hourly'),(888,297,'_et_pb_enable_shortcode_tracking',''),(889,297,'_et_pb_custom_css',''),(890,297,'_et_pb_light_text_color','#FFFFFF'),(891,297,'_et_pb_dark_text_color','#666666'),(892,297,'_et_pb_content_area_background_color',''),(893,297,'_et_pb_section_background_color','#FFFFFF'),(894,606,'_et_pb_built_for_post_type','page'),(895,608,'_et_pb_built_for_post_type','page'),(896,610,'_et_pb_built_for_post_type','page'),(897,612,'_wp_attached_file','2016/02/FIE-PFA-Minutes-20160301.pdf'),(898,615,'_edit_lock','1471258104:1'),(899,615,'_edit_last','1'),(900,615,'_wp_page_template','default'),(901,615,'_et_pb_post_hide_nav','default'),(902,615,'_et_pb_page_layout','et_right_sidebar'),(903,615,'_et_pb_side_nav','off'),(904,615,'_et_pb_use_builder','on'),(905,615,'_et_pb_ab_bounce_rate_limit','5'),(906,615,'_et_pb_ab_stats_refresh_interval','hourly'),(907,615,'_et_pb_old_content',''),(908,615,'_et_pb_enable_shortcode_tracking',''),(909,615,'_et_pb_custom_css',''),(910,615,'_et_pb_light_text_color','#FFFFFF'),(911,615,'_et_pb_dark_text_color','#666666'),(912,615,'_et_pb_content_area_background_color',''),(913,615,'_et_pb_section_background_color','#FFFFFF'),(914,618,'_menu_item_type','post_type'),(915,618,'_menu_item_menu_item_parent','247'),(916,618,'_menu_item_object_id','615'),(917,618,'_menu_item_object','page'),(918,618,'_menu_item_target',''),(919,618,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(920,618,'_menu_item_xfn',''),(921,618,'_menu_item_url',''),(923,621,'_wp_attached_file','2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf'),(924,622,'_wp_attached_file','2016/04/FIE-Volunteer-Log-20160421.pdf'),(925,629,'_edit_lock','1464903781:1'),(926,629,'_edit_last','1'),(927,630,'_wp_attached_file','2016/04/Chalk-kids-gears-AS-310w.jpg'),(928,630,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:310;s:6:\"height\";i:284;s:4:\"file\";s:36:\"2016/04/Chalk-kids-gears-AS-310w.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Chalk-kids-gears-AS-310w-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:36:\"Chalk-kids-gears-AS-310w-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Chalk-kids-gears-AS-310w-310x250.jpg\";s:5:\"width\";i:310;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Chalk-kids-gears-AS-310w-310x284.jpg\";s:5:\"width\";i:310;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:19:\"freshidea - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(929,629,'_et_post_bg_color','#ffffff'),(930,629,'_et_post_bg_layout','light'),(931,629,'_et_pb_show_title','on'),(932,629,'_et_pb_post_hide_nav','default'),(933,629,'_et_pb_page_layout','et_right_sidebar'),(934,629,'_et_pb_side_nav','off'),(935,629,'_et_pb_use_builder','on'),(936,629,'_et_pb_ab_bounce_rate_limit','5'),(937,629,'_et_pb_ab_stats_refresh_interval','hourly'),(938,629,'_et_pb_old_content','<p>We are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.</p><p>The success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.</p><p>This year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.</p><div><p><span style=\"font-size: 13px;\"><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\"><img class=\"alignleft wp-image-630 size-medium\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"300\" height=\"275\" /></a>The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.</span></p><p>Some of our officers are boots-on-the-ground and contribute outside of their official PFA post.  For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.</p></div><ul><li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Vice President, Arlene Manalo, </strong></span>heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.  </span></li><li><span style=\"font-size: 13px;\">The <span style=\"color: #4b0082;\"><strong>PFA Secretary, Cheri Johnson,</strong></span> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</span></li><li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Treasurer, Michel DeRousse,</strong> </span>plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.  </span></li><li><span style=\"font-size: 13px;\"><strong><span style=\"color: #4b0082;\">Volunteer Officer, Christine Leon Vors</span>t,</strong> has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up. </span></li><li><span style=\"font-size: 13px;\">A valuable asset to the team includes our <span style=\"color: #4b0082;\"><strong>Home Room Parent Officer, Amanda Vernon</strong></span>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.  </span></li><li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Fundraising Officer, Laura Minervini,</strong></span> has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.   </span></li><li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Susan Mabry, our Publicity Officer, </strong></span>is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.  </span></li><li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Stephanie Boccieri is our Communications Officer</strong></span>, who without fail coordinates and publishes our BARB. </span></li><li><span style=\"font-size: 13px;\">PFA’s <span style=\"color: #4b0082;\"><strong>School Programs Liaison Officer, Meredith Hoffman, </strong></span>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event. </span></li><li><span style=\"font-size: 13px;\">Our school <span style=\"color: #4b0082;\"><strong>Principal, Dana Archibald,</strong></span> plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.  </span></li><li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Kim Marks, FIE Vice Principal,</strong></span> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.  </span></li><li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Linda Kupfer, FIE School Counselor,</strong></span> volunteers her time to attend PFA meetings and voices concerns for faculty.</span></li></ul><div><p><span style=\"font-size: 13px;\">We greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.</span></p><p>To those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.</p><p>To the future, </p><p>Dan Webb<br />PFA President</p></div>'),(939,629,'_et_pb_enable_shortcode_tracking',''),(940,629,'_et_pb_custom_css',''),(941,629,'_et_pb_light_text_color','#FFFFFF'),(942,629,'_et_pb_dark_text_color','#666666'),(943,629,'_et_pb_content_area_background_color',''),(944,629,'_et_pb_section_background_color','#FFFFFF'),(968,644,'_wp_attached_file','2016/04/Welcome-hands-kids-1080w.jpg'),(969,644,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:523;s:4:\"file\";s:36:\"2016/04/Welcome-hands-kids-1080w.jpg\";s:5:\"sizes\";a:8:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"Welcome-hands-kids-1080w-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:36:\"Welcome-hands-kids-1080w-300x145.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"Welcome-hands-kids-1080w-768x372.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:372;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Welcome-hands-kids-1080w-1024x496.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:496;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:36:\"Welcome-hands-kids-1080w-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:37:\"Welcome-hands-kids-1080w-1080x523.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:36:\"Welcome-hands-kids-1080w-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:37:\"Welcome-hands-kids-1080w-1080x523.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:22:\"PHOTOMORPHIC PTE. LTD.\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(970,644,'_wp_attachment_image_alt','welcome hands'),(980,645,'_wp_attached_file','2016/02/FIE-PFA-Bylaws-2015-2016.pdf'),(991,652,'_wp_attached_file','2016/02/FIE-PFA-Bylaws-2012.pdf'),(992,661,'_edit_lock','1462031452:1'),(993,661,'_edit_last','1'),(994,661,'_thumbnail_id','208'),(995,661,'_et_post_bg_color','#ffffff'),(996,661,'_et_post_bg_layout','light'),(997,661,'_et_pb_show_title','on'),(998,661,'_et_pb_post_hide_nav','default'),(999,661,'_et_pb_page_layout','et_right_sidebar'),(1000,661,'_et_pb_side_nav','off'),(1001,661,'_et_pb_use_builder',''),(1002,661,'_et_pb_ab_bounce_rate_limit','5'),(1003,661,'_et_pb_ab_stats_refresh_interval','hourly'),(1004,661,'_et_pb_old_content',''),(1005,661,'_et_pb_enable_shortcode_tracking',''),(1006,661,'_et_pb_custom_css',''),(1007,661,'_et_pb_light_text_color','#FFFFFF'),(1008,661,'_et_pb_dark_text_color','#666666'),(1009,661,'_et_pb_content_area_background_color',''),(1010,661,'_et_pb_section_background_color','#FFFFFF'),(1013,663,'_et_pb_built_for_post_type','page'),(1014,115,'_et_pb_ab_bounce_rate_limit','5'),(1015,115,'_et_pb_ab_stats_refresh_interval','hourly'),(1016,115,'_et_pb_enable_shortcode_tracking',''),(1017,115,'_et_pb_custom_css',''),(1018,115,'_et_pb_light_text_color','#FFFFFF'),(1019,115,'_et_pb_dark_text_color','#666666'),(1020,115,'_et_pb_content_area_background_color',''),(1021,115,'_et_pb_section_background_color','#FFFFFF'),(1022,670,'_et_pb_built_for_post_type','page'),(1023,673,'_edit_lock','1462289018:1'),(1024,673,'_edit_last','1'),(1025,673,'_wp_page_template','default'),(1026,673,'_et_pb_post_hide_nav','default'),(1027,673,'_et_pb_page_layout','et_full_width_page'),(1028,673,'_et_pb_side_nav','off'),(1029,673,'_et_pb_use_builder',''),(1030,673,'_et_pb_ab_bounce_rate_limit','5'),(1031,673,'_et_pb_ab_stats_refresh_interval','hourly'),(1032,673,'_et_pb_old_content',''),(1033,673,'_et_pb_enable_shortcode_tracking',''),(1034,673,'_et_pb_custom_css',''),(1035,673,'_et_pb_light_text_color','#FFFFFF'),(1036,673,'_et_pb_dark_text_color','#666666'),(1037,673,'_et_pb_content_area_background_color',''),(1038,673,'_et_pb_section_background_color','#FFFFFF'),(1039,111,'_et_pb_ab_bounce_rate_limit','5'),(1040,111,'_et_pb_ab_stats_refresh_interval','hourly'),(1041,111,'_et_pb_enable_shortcode_tracking',''),(1042,111,'_et_pb_custom_css',''),(1043,111,'_et_pb_light_text_color','#FFFFFF'),(1044,111,'_et_pb_dark_text_color','#666666'),(1045,111,'_et_pb_content_area_background_color',''),(1046,111,'_et_pb_section_background_color','#FFFFFF'),(1052,690,'_wp_attached_file','2016/01/Boy-thank-you-510w.jpg'),(1053,690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:265;s:4:\"file\";s:30:\"2016/01/Boy-thank-you-510w.jpg\";s:5:\"sizes\";a:5:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"Boy-thank-you-510w-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"Boy-thank-you-510w-300x156.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:30:\"Boy-thank-you-510w-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:30:\"Boy-thank-you-510w-400x265.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:30:\"Boy-thank-you-510w-510x265.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:265;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:25:\"Robert Kneschke - Fotolia\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1054,690,'_wp_attachment_image_alt',''),(1055,693,'_et_pb_built_for_post_type','page'),(1056,698,'_et_pb_built_for_post_type','page'),(1057,700,'_edit_lock','1463172666:1'),(1058,700,'_edit_last','1'),(1059,701,'_wp_attached_file','2016/05/FIE-BARB-201605.pdf'),(1062,700,'_et_post_bg_color','#ffffff'),(1063,700,'_et_post_bg_layout','light'),(1064,700,'_et_pb_show_title','on'),(1065,700,'_et_pb_post_hide_nav','default'),(1066,700,'_et_pb_page_layout','et_right_sidebar'),(1067,700,'_et_pb_side_nav','off'),(1068,700,'_et_pb_use_builder',''),(1069,700,'_et_pb_ab_bounce_rate_limit','5'),(1070,700,'_et_pb_ab_stats_refresh_interval','hourly'),(1071,700,'_et_pb_old_content',''),(1072,700,'_et_pb_enable_shortcode_tracking',''),(1073,700,'_et_pb_custom_css',''),(1074,700,'_et_pb_light_text_color','#FFFFFF'),(1075,700,'_et_pb_dark_text_color','#666666'),(1076,700,'_et_pb_content_area_background_color',''),(1077,700,'_et_pb_section_background_color','#FFFFFF'),(1080,703,'_wp_attached_file','2016/02/FIE-PFA-Nomination-Form-20160507-1PP.pdf'),(1081,704,'_wp_attached_file','2016/02/FIE-PFA-Positions-20160507-1PP.pdf'),(1082,707,'_wp_attached_file','2016/01/Dan-Webb-225x300.jpg'),(1083,707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:300;s:4:\"file\";s:28:\"2016/01/Dan-Webb-225x300.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"Dan-Webb-225x300-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:\"Dan-Webb-225x300-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:28:\"Dan-Webb-225x300-225x250.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:28:\"Dan-Webb-225x300-225x284.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1084,707,'_wp_attachment_image_alt','Dan Webb'),(1085,88,'_et_pb_ab_bounce_rate_limit','5'),(1086,88,'_et_pb_ab_stats_refresh_interval','hourly'),(1087,88,'_et_pb_enable_shortcode_tracking',''),(1088,88,'_et_pb_custom_css',''),(1089,88,'_et_pb_light_text_color','#FFFFFF'),(1090,88,'_et_pb_dark_text_color','#666666'),(1091,88,'_et_pb_content_area_background_color',''),(1092,88,'_et_pb_section_background_color','#FFFFFF'),(1097,629,'_thumbnail_id','630'),(1113,718,'_et_pb_built_for_post_type','page'),(1114,731,'_et_pb_module_type','et_pb_blurb'),(1115,731,'_et_pb_built_for_post_type','page'),(1116,732,'_et_pb_module_type','et_pb_blurb'),(1117,732,'_et_pb_built_for_post_type','page'),(1118,733,'_et_pb_module_type','et_pb_blurb'),(1119,733,'_et_pb_built_for_post_type','page'),(1120,734,'_et_pb_module_type','et_pb_blurb'),(1121,734,'_et_pb_built_for_post_type','page'),(1122,735,'_et_pb_module_type','et_pb_blurb'),(1123,735,'_et_pb_built_for_post_type','page'),(1124,736,'_et_pb_built_for_post_type','page'),(1125,737,'_et_pb_built_for_post_type','page'),(1126,739,'_wp_attached_file','2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf'),(1127,103,'_et_pb_ab_bounce_rate_limit','5'),(1128,103,'_et_pb_ab_stats_refresh_interval','hourly'),(1129,103,'_et_pb_enable_shortcode_tracking',''),(1130,103,'_et_pb_custom_css',''),(1131,103,'_et_pb_light_text_color','#FFFFFF'),(1132,103,'_et_pb_dark_text_color','#666666'),(1133,103,'_et_pb_content_area_background_color',''),(1134,103,'_et_pb_section_background_color','#FFFFFF'),(1135,753,'_wp_attached_file','2016/02/Little-boy-listening.jpg'),(1136,753,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1067;s:4:\"file\";s:32:\"2016/02/Little-boy-listening.jpg\";s:5:\"sizes\";a:9:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Little-boy-listening-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:\"Little-boy-listening-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:32:\"Little-boy-listening-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:33:\"Little-boy-listening-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-post-main-image\";a:4:{s:4:\"file\";s:32:\"Little-boy-listening-400x250.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:250;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:31:\"et-pb-post-main-image-fullwidth\";a:4:{s:4:\"file\";s:33:\"Little-boy-listening-1080x675.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:675;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"et-pb-portfolio-image\";a:4:{s:4:\"file\";s:32:\"Little-boy-listening-400x284.jpg\";s:5:\"width\";i:400;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-module-image\";a:4:{s:4:\"file\";s:32:\"Little-boy-listening-510x382.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:382;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:28:\"et-pb-portfolio-image-single\";a:4:{s:4:\"file\";s:33:\"Little-boy-listening-1080x720.jpg\";s:5:\"width\";i:1080;s:6:\"height\";i:720;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"9\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:50:\"Smiling human child hand listening deaf ear gossip\";s:17:\"created_timestamp\";s:10:\"1304852356\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:15:\"Child listening\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:50:{i:0;s:4:\"hand\";i:1;s:9:\"listening\";i:2;s:5:\"human\";i:3;s:3:\"ear\";i:4;s:6:\"people\";i:5;s:6:\"person\";i:6;s:4:\"face\";i:7;s:13:\"communication\";i:8;s:4:\"head\";i:9;s:5:\"child\";i:10;s:3:\"boy\";i:11;s:3:\"kid\";i:12;s:3:\"son\";i:13;s:9:\"happiness\";i:14;s:9:\"offspring\";i:15;s:7:\"smiling\";i:16;s:8:\"cheerful\";i:17;s:6:\"little\";i:18;s:7:\"looking\";i:19;s:9:\"caucasian\";i:20;s:8:\"isolated\";i:21;s:5:\"white\";i:22;s:4:\"male\";i:23;s:4:\"deaf\";i:24;s:7:\"secrecy\";i:25;s:6:\"gossip\";i:26;s:13:\"eavesdropping\";i:27;s:10:\"expression\";i:28;s:10:\"background\";i:29;s:10:\"whispering\";i:30;s:5:\"sense\";i:31;s:7:\"sensory\";i:32;s:10:\"perception\";i:33;s:7:\"mystery\";i:34;s:9:\"gesturing\";i:35;s:6:\"cupped\";i:36;s:7:\"problem\";i:37;s:7:\"silence\";i:38;s:7:\"holding\";i:39;s:4:\"blab\";i:40;s:4:\"loss\";i:41;s:9:\"curiosity\";i:42;s:4:\"open\";i:43;s:6:\"finger\";i:44;s:9:\"alertness\";i:45;s:6:\"advice\";i:46;s:10:\"healthcare\";i:47;s:3:\"spy\";i:48;s:9:\"childhood\";i:49;s:9:\"beautiful\";}}}'),(1137,753,'_wp_attachment_image_alt','little boy listening');
/*!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 NOT NULL,
  `post_title` text NOT NULL,
  `post_excerpt` text NOT NULL,
  `post_status` varchar(20) NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) NOT NULL DEFAULT 'open',
  `post_password` varchar(20) NOT NULL DEFAULT '',
  `post_name` varchar(200) NOT NULL DEFAULT '',
  `to_ping` text NOT NULL,
  `pinged` text NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=757 DEFAULT CHARSET=utf8;
/*!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 (5,1,'2015-12-04 18:31:23','2015-12-04 18:31:23','','FIE-Stingrays-2015x400','','inherit','open','closed','','fie-stingrays-2015x400','','','2015-12-04 18:31:35','2015-12-04 18:31:35','',0,'http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Stingrays-2015x400.png',0,'attachment','image/png',0),(6,1,'2015-12-04 18:42:18','2015-12-04 18:42:18','','Landscaping-fun-200w','','inherit','open','closed','','landscaping-fun-200w','','','2015-12-04 18:42:26','2015-12-04 18:42:26','',0,'http://www.fiepfa.org/wp-content/uploads/2015/12/Landscaping-fun-200w.jpg',0,'attachment','image/jpeg',0),(7,1,'2015-12-05 04:52:34','2015-12-05 04:52:34','','Stingrays-Reef-1200x805','','inherit','open','closed','','stingrays-reef-1200x805','','','2015-12-05 04:52:42','2015-12-05 04:52:42','',0,'http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg',0,'attachment','image/jpeg',0),(8,1,'2015-12-08 22:21:52','2015-12-08 22:21:52','','News-Icon','','inherit','open','closed','','news-icon','','','2015-12-08 22:22:25','2015-12-08 22:22:25','',0,'http://www.fiepfa.org/wp-content/uploads/2015/12/News-Icon.png',0,'attachment','image/png',0),(43,1,'2015-12-15 03:13:28','2015-12-15 03:13:28','FIE birthday marquee form','PFA BD Announcement','','inherit','open','closed','','pfa-bd-announcement','','','2016-02-01 18:53:24','2016-02-01 18:53:24','',115,'http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(44,1,'2015-12-15 03:14:38','2015-12-15 03:14:38','FIE volunteer handbook','FIE-Clay-County-Volunteer-Handbook-20151024-LR','','inherit','open','closed','','fie-clay-county-volunteer-handbook-20151024-lr','','','2015-12-15 03:14:48','2015-12-15 03:14:48','',0,'http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf',0,'attachment','application/pdf',0),(45,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome To My Website\" button_text=\"Enter\" button_link=\"#\" background_color=\"#27c9b9\" alignment=\"center\" background_layout=\"dark\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_slider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"We Are a Company of Passionate Designers and Developers\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"h\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"v\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"on\" font_icon=\"g\" icon_color=\"#a8a8a8\" use_circle=\"on\" circle_color=\"#ffffff\" use_circle_border=\"on\" circle_border_color=\"#e0e0e0\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Drop Me a Line\" button_url=\"#\" button_text=\"Contact\" background_color=\"#2ea3f2\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Basic','','publish','closed','closed','','homepage-basic','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-basic/',0,'et_pb_layout','',0),(46,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Featured Products</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Recent Products</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h1>What Our Customers are Saying</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Shop','','publish','closed','closed','','homepage-shop','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-shop/',0,'et_pb_layout','',0),(47,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Portfolio','','publish','closed','closed','','homepage-portfolio','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-portfolio/',0,'et_pb_layout','',0),(48,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Features\" button_link=\"http://elegantthemes.com/preview/Divi2/features/\" background_color=\"#8d1bf4\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/05/d2-300px.png\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][et_pb_slide heading=\"Slide Title\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f84c48\" alignment=\"center\" background_layout=\"dark\"]Quisque eleifend orci sit amet est semper, iaculis tempor mi volutpat. Phasellus consectetur justo sed tristique molestie. Cras lectus quam, vehicula eu dictum a, sollicitudin id velit.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Cras semper dictum lectus ac bibendum. Sed id massa vel lorem laoreet molestie. Nullam vulputate lacus at mauris molestie porttitor.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#4b4b4b\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" title=\"Recent Work\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" company_name=\"Company\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\" job_title=\"Job Role\" url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"8\" address_lat=\"37.43410184255073\" address_lng=\"-122.04768412931253\"][et_pb_map_pin title=\"Elegant Themes\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][et_pb_map_pin title=\"Lorem Ipsum\" pin_address=\"San Jose, CA, USA\" pin_address_lat=\"37.3393857\" pin_address_lng=\"-121.89495549999998\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Contact Us\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Company','','publish','closed','closed','','homepage-company','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-company/',0,'et_pb_layout','',0),(49,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales & Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand & Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>What We Offer</h2>[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"][et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\" /][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"][et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Work Flow</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>Frequently Asked Questions</h2>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\n\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"][et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"]Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Corporate','','publish','closed','closed','','homepage-corporate','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-corporate/',0,'et_pb_layout','',0),(50,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Building a website has never been so fun.</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Lorem Ipsum Dolor.</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]</p><h3>Lorem Ipsum</h3><p><span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span></p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"http://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\nos at, laoreet metus.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]</p><h1>Core Features</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#predefined\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#layouts\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#mobile\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"]Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]</p><h1>Versatile Layout Options</h1><p>Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]<span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</p><h1>Look No Further. Get Started Today</h1><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Homepage Extended','','publish','closed','closed','','homepage-extended','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/homepage-extended/',0,'et_pb_layout','',0),(51,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Page Fullwidth','','publish','closed','closed','','page-fullwidth','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/page-fullwidth/',0,'et_pb_layout','',0),(52,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page Title\" subhead=\"Here is a basic page layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Right Sidebar','','publish','closed','closed','','page-right-sidebar','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/page-right-sidebar/',0,'et_pb_layout','',0),(53,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Left Sidebar\" subhead=\"Here is a basic page layout with a left sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h4>Lorem Ipsum Dolor</h4>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section]','Page Left Sidebar','','publish','closed','closed','','page-left-sidebar','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/page-left-sidebar/',0,'et_pb_layout','',0),(54,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Page With Dual Sidebars\" subhead=\"Here is a basic page layout with dual sidebars\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"left\" background_layout=\"light\" /][/et_pb_column][et_pb_column type=\"1_2\" specialty_columns=\"2\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_text admin_label=\"Text\"]\n<h2>Just A Standard Page</h2>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\nSed sit amet blandit ipsum, et consectetur libero. Integer convallis at metus quis molestie. Morbi vitae odio ut ante molestie scelerisque. Aliquam erat volutpat. Vivamus dignissim fringilla semper. Aliquam imperdiet dui a purus pellentesque, non ornare ipsum blandit. Sed imperdiet elit in quam egestas lacinia nec sit amet dui. Cras malesuada tincidunt ante, in luctus tellus hendrerit at. Duis massa mauris, bibendum a mollis a, laoreet quis elit. Nulla pulvinar vestibulum est, in viverra nisi malesuada vel. Nam ut ipsum quis est faucibus mattis eu ut turpis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas nunc felis, venenatis in fringilla vel, tempus in turpis. Mauris aliquam dictum dolor at varius. Fusce sed vestibulum metus. Vestibulum dictum ultrices nulla sit amet fermentum.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\n<h3>Lorem Ipsum Dolor</h3>\nNunc et vestibulum velit. Suspendisse euismod eros vel urna bibendum gravida. Phasellus et metus nec dui ornare molestie. In consequat urna sed tincidunt euismod. Praesent non pharetra arcu, at tincidunt sapien. Nullam lobortis ultricies bibendum. Duis elit leo, porta vel nisl in, ullamcorper scelerisque velit. Fusce volutpat purus dolor, vel pulvinar dui porttitor sed. Phasellus ac odio eu quam varius elementum sit amet euismod justo.\n\n[/et_pb_text][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Page Dual Sidebars','','publish','closed','closed','','page-dual-sidebars','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/page-dual-sidebars/',0,'et_pb_layout','',0),(55,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_filterable_portfolio admin_label=\"Filterable Portfolio\" fullwidth=\"off\" posts_number=\"12\" show_title=\"on\" show_categories=\"on\" show_pagination=\"off\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Grid','','publish','closed','closed','','portfolio-grid','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/portfolio-grid/',0,'et_pb_layout','',0),(56,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Work\" subhead=\"Your Subtitle Goes Here\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"on\" posts_number=\"4\" show_title=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"I Love Working With Creative Minds\" button_url=\"#\" button_text=\"Contact Me\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]If you are interested in working together, send me an inquiry and I will get back to you as soon as I can![/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio 1 Column','','publish','closed','closed','','portfolio-1-column','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/portfolio-1-column/',0,'et_pb_layout','',0),(57,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\"][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Let\'s Build Something Together\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Carousel','','publish','closed','closed','','portfolio-fullwidth-carousel','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/portfolio-fullwidth-carousel/',0,'et_pb_layout','',0),(58,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"off\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working On A Project?\" button_url=\"#\" button_text=\"Contact Me\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Portfolio Fullwidth Grid','','publish','closed','closed','','portfolio-fullwidth-grid','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/portfolio-fullwidth-grid/',0,'et_pb_layout','',0),(59,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#3a3a3a\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Your Project Name</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"We Rethought Everything\" background_color=\"#2ea3f2\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Interested In Working With Us?\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended','','publish','closed','closed','','project-extended','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/project-extended/',0,'et_pb_layout','',0),(60,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Your Project Name</h1>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Description</h4>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h4>Project Details</h4>\n<strong>Client </strong>Client Name\n<strong>Date </strong>Date of Completion\n<strong>Skills </strong>Branding, Web Design\n<strong>View </strong>elegantthemes.com[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"Live Project\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl quis nibh non, molestie tempus sapien.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"100\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Project Feature\" button_url=\"#\" button_text=\"See More\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"right\"]Vivamus ipsum velit, ullamcorper quis nibh, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-700px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Like What You See?\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Project Extended 2','','publish','closed','closed','','project-extended-2','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/project-extended-2/',0,'et_pb_layout','',0),(61,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Blog Masonry','','publish','closed','closed','','blog-masonry','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/blog-masonry/',0,'et_pb_layout','',0),(62,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" /][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section]','Blog Standard','','publish','closed','closed','','blog-standard','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/blog-standard/',0,'et_pb_layout','',0),(63,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#f84b48\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to Our Shop\" subhead=\"Divi gives you the power to run a full-fledged online storefront.\" background_layout=\"dark\" text_orientation=\"left\" /][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"12\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"News & Events\" button_url=\"#\" button_text=\"Follow\" use_background_color=\"on\" background_color=\"#57ccc4\" background_layout=\"dark\" text_orientation=\"center\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Basic','','publish','closed','closed','','shop-basic','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/shop-basic/',0,'et_pb_layout','',0),(64,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner][et_pb_column_inner type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\" /][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"]For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout.[/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\" /][/et_pb_column][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Most Popular Items</h1>[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"]For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Shop Extended','','publish','closed','closed','','shop-extended','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/shop-extended/',0,'et_pb_layout','',0),(65,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"150\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]<h1></h1>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h4><strong>Lorem Ipsum Dolor</strong></h4>\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"400\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Splash Page','','publish','closed','closed','','splash-page','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/splash-page/',0,'et_pb_layout','',0),(66,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>We will Be back Soon</h1>\nThis is an example of a blank page with no header or footer.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Undergoing Maintenance\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Feature Updates\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Bug Fixes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#63cde3\" use_circle=\"on\" circle_color=\"#f7f7f7\" use_circle_border=\"on\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Maintenance Mode','','publish','closed','closed','','maintenance-mode','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/maintenance-mode/',0,'et_pb_layout','',0),(67,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section inner_shadow=\"off\" parallax=\"off\" background_color=\"#8d1bf4\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_countdown_timer admin_label=\"Countdown Timer\" date_time=\"05/31/2014 05:15\" background_layout=\"dark\" background_color=\"#e03e3e\" use_background_color=\"off\" title=\"This Site Is Coming Soon\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" title=\"Sign Up to Receive Updates\" button_text=\"Submit\" background_color=\"#6e15c2\" use_background_color=\"on\" mailchimp_list=\"none\" background_layout=\"dark\" text_orientation=\"left\" provider=\"mailchimp\" aweber_list=\"none\"]Integer accumsan leo non nisi sollicitudin, sit amet eleifend dolor mollis. Donec sagittis posuere commodo. Aenean sed convallis lectus. Vivamus et nisi posuere erat aliquet adipiscing in non libero. Integer ornare dui at molestie dictum. Vivamus id aliquam urna. Duis quis fermentum lacus. Sed viverra dui leo, non auctor nisi porttitor a. Nunc a tristique lectus.[/et_pb_signup][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Contact Us\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"600\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Coming Soon','','publish','closed','closed','','coming-soon','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/coming-soon/',0,'et_pb_layout','',0),(68,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px;\">My Website</h1>\n<h2><em>My Tagline</em></h2>[/et_pb_text][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"fade_in\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Lorem ipsum dolor sit amet consectetur.\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#313f55\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section background_color=\"#27323a\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"right\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section]','Landing Page','','publish','closed','closed','','landing-page','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/landing-page/',0,'et_pb_layout','',0),(69,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"My Name\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Subheading[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>This is My Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" background_color=\"#108bf5\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"My Recent Work\" background_layout=\"dark\" text_orientation=\"center\" /][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"light\" auto=\"on\" /][/et_pb_section]','About Me','','publish','closed','closed','','about-me','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/about-me/',0,'et_pb_layout','',0),(70,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h1>Our Story</h1>\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"][et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter][/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About Us','','publish','closed','closed','','about-us','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/about-us/',0,'et_pb_layout','',0),(71,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_map admin_label=\"Fullwidth Map\" zoom_level=\"9\" address_lat=\"37.77492949999972\" address_lng=\"-122.41941550000001\"][et_pb_map_pin title=\"Headquarters\" pin_address=\"San Francisco, CA, USA\" pin_address_lat=\"37.7749295\" pin_address_lng=\"-122.41941550000001\" /][/et_pb_fullwidth_map][/et_pb_section][et_pb_section fullwidth=\"off\"][et_pb_row][et_pb_column type=\"2_3\"][et_pb_contact_form admin_label=\"Contact Form\" captcha=\"off\" title=\"Get In Touch\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h3>More Info</h3>\n<p>sit amet, consectetur adipiscing elit. Integer placerat metus id orci facilisis, in luctus eros laoreet. Mauris interdum augue varius, faucibus massa id, imperdiet tortor. Donec vel tortor molestie, hendrerit sem a, hendrerit arcu. Aliquam erat volutpat. Proin varius eros eros, non condimentum nis.</p>\n\n<strong>Address:</strong> 890 Lorem Ipsum Street #12\nSan Francisco, California 65432\n\n<strong>Phone:</strong> 123.4567.890\n\n<strong>Business Hours:</strong> 8a-6:30p M-F, 9a-2p S-S[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Contact Us','','publish','closed','closed','','contact-us','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/contact-us/',0,'et_pb_layout','',0),(72,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"]\n[et_pb_fullwidth_header title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"][/et_pb_fullwidth_header]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"][/et_pb_image]\n[et_pb_text]\n<h2>Nick Roach</h2>\n<em>President, CEO, Theme UI/UX Designer</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"50\"]Design & UX[/et_pb_counter]\n[et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter]\n[et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"][/et_pb_image]\n[et_pb_text]\n<h2>Kenny Sing</h2>\n<em>Lead Graphic Designers</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter]\n[et_pb_counter percent=\"70\"]After Effects[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n\n[et_pb_column type=\"1_3\"]\n[et_pb_image src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"][/et_pb_image]\n[et_pb_text]\n<h2>Mitch Skolnik</h2>\n<em>Community Manager</em>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet.\n[/et_pb_text]\n[et_pb_counters]\n[et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter]\n[et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter]\n[et_pb_counter percent=\"50\"]Community Management[/et_pb_counter]\n[/et_pb_counters]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#2d3743\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\"  title=\"Timely Support\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\"  title=\"Innovative Ideas\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\"  title=\"Advanced Technology\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[et_pb_column type=\"1_4\"]\n[et_pb_blurb background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\"  title=\"Clear Communication\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet.[/et_pb_blurb]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#f5f5f5\" inner_shadow=\"on\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Blog Posts</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_blog fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"][/et_pb_blog]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_text text_orientation=\"center\"]<h2>Recent Projects</h2>\nLearn from the top thought leaders in the industry.\n[/et_pb_text]\n[/et_pb_column]\n[/et_pb_row]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_portfolio categories=\"Portfolio\" fullwidth=\"off\"][/et_pb_portfolio]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]\n\n[et_pb_section background_color=\"#7EBEC5\"]\n[et_pb_row]\n[et_pb_column type=\"4_4\"]\n[et_pb_cta title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"]\nIf you are interested in working together, send us an inquiry and we will get back to you as soon as we can!\n[/et_pb_cta]\n[/et_pb_column]\n[/et_pb_row]\n[/et_pb_section]','Our Team','','publish','closed','closed','','our-team','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/our-team/',0,'et_pb_layout','',0),(73,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR LATEST WORK</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" /][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1>MEET THE CREW</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>OUR CLIENTS</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" mailc\nhimp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Creative Agency','','publish','closed','closed','','creative-agency','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/creative-agency/',0,'et_pb_layout','',0),(74,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag & Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Plans and Pricing</h1>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate.[/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_pricing_tables admin_label=\"Pricing Table\"][et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n-Premium Technical Support\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n-Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\n+Perpetual Theme Updates\n+Premium Technical Support\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\n+Layered Photoshop Files\n+No Yearly Fees[/et_pb_pricing_table][/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>What Our Customers Are Saying</h1>\nDon\'t just take it from us, let our customers do the talking![/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"]\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\n\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \"[/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Frequently Asked Questions</h1>[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"]Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"]We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"]Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"]Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade.[/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"]Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try.[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"]If we didn\'t answer all of your questions, feel free to drop us a line anytime.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Sales Page','','publish','closed','closed','','sales-page','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/sales-page/',0,'et_pb_layout','',0),(75,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#45c4ec\" use_circle=\"off\" circle_color=\"#45c4ec\" use_circle_border=\"off\" circle_border_color=\"#45c4ec\" icon_placement=\"top\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 72px; font-weight: 300;\">Divi Case Study</h1>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Challenge</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]<h2>The Solution</h2>\nVivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"][et_pb_slide heading=\"Complete Corporate Identity\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][et_pb_slide heading=\"We Rethought Everything\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Corporate Rebranding\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\" counter_color=\"#2ea3f2\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Website Redesign\" number=\"30\" percent_sign=\"on\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Day Turnaround\" number=\"60\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Amazing Result\" number=\"1\" percent_sign=\"off\" background_layout=\"dark\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"90\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]<h1>Mobile Site Boosted Sales By 50%</h1>[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Mobile Refresh\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Rebuilt From the Inside Out\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Extensive Demographic Studies\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" animation=\"right\" background_layout=\"dark\" text_orientation=\"left\"]The Challenge Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/mobile-lockup.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#353535\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#2e2e2e\"][et_pb_counter percent=\"80\"]Mobile Sales[/et_pb_counter][et_pb_counter percent=\"50\"]Website Traffic[/et_pb_counter][et_pb_counter percent=\"75\"]Conversion Rate[/et_pb_counter][et_pb_counter percent=\"60\"]Email Subscribers[/et_pb_counter][/et_pb_counters][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_cta admin_label=\"Call To Action\" title=\"The Results Were Amazing\" button_url=\"#\" button_text=\"Live Project\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2e2e2e\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"off\" background_layout=\"dark\" auto=\"off\" title=\"Related Case Studies\" /][/et_pb_section]','Case Study','','publish','closed','closed','','case-study','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/case-study/',0,'et_pb_layout','',0),(76,1,'2016-01-30 22:16:18','2016-01-30 22:16:18','[et_pb_section background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\" /][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]<h1 style=\"font-size: 52px;\">Product Features</h1>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]<h1>Advanced Drag & Drop Builder</h1>\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"][et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide][/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\n<h1>Fully Responsive Layouts</h1>\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" /][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\" /][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]Join today and get access to Divi, as well as our other countless themes and plugins.[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Product Features','','publish','closed','closed','','product-features','','','2016-01-30 22:16:18','2016-01-30 22:16:18','',0,'http://www.fiepfa.org/et_pb_layout/product-features/',0,'et_pb_layout','',0),(79,1,'2016-01-30 22:44:26','2016-01-30 22:44:26','','FIE-Stingrays-2015-PFA-Site-Image','','inherit','open','closed','','fie-stingrays-2015-pfa-site-image','','','2016-01-30 22:44:40','2016-01-30 22:44:40','',0,'http://www.fiepfa.org/wp-content/uploads/2016/01/FIE-Stingrays-2015-PFA-Site-Image.png',0,'attachment','image/png',0),(80,1,'2016-01-30 22:44:41','2016-01-30 22:44:41','http://www.fiepfa.org/wp-content/uploads/2016/01/cropped-FIE-Stingrays-2015-PFA-Site-Image.png','cropped-FIE-Stingrays-2015-PFA-Site-Image.png','','inherit','open','closed','','cropped-fie-stingrays-2015-pfa-site-image-png','','','2016-01-30 22:44:41','2016-01-30 22:44:41','',0,'http://www.fiepfa.org/wp-content/uploads/2016/01/cropped-FIE-Stingrays-2015-PFA-Site-Image.png',0,'attachment','image/png',0),(81,1,'2016-01-30 23:28:55','2016-01-30 23:28:55','','favicon-FIE-2015-2','','inherit','open','closed','','favicon-fie-2015-2','','','2016-01-30 23:29:02','2016-01-30 23:29:02','',0,'http://www.fiepfa.org/wp-content/uploads/2016/01/favicon-FIE-2015-2.jpg',0,'attachment','image/jpeg',0),(82,1,'2016-01-30 23:32:46','2016-01-30 23:32:46','','favicon-FIE-2015-3','','inherit','open','closed','','favicon-fie-2015-3','','','2016-01-30 23:33:09','2016-01-30 23:33:09','',0,'http://www.fiepfa.org/wp-content/uploads/2016/01/favicon-FIE-2015-3.jpg',0,'attachment','image/jpeg',0),(83,1,'2016-01-30 23:47:12','2016-01-30 23:47:12','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n\r\nThe PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"Info,\" then \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary Parent Faculty Association (FIE PFA) in Fleming Island, Florida','publish','closed','closed','','home','','','2016-08-15 10:57:47','2016-08-15 10:57:47','',0,'http://www.fiepfa.org/?page_id=83',0,'page','',0),(84,1,'2016-01-30 23:46:39','2016-01-30 23:46:39','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Sales &amp; Marketing\" number=\"70\" percent_sign=\"on\" background_layout=\"dark\"] [/et_pb_circle_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Brand &amp; Identity\" number=\"90\" percent_sign=\"on\" background_layout=\"dark\"] [/et_pb_circle_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"Web Design\" number=\"80\" percent_sign=\"on\" background_layout=\"dark\"] [/et_pb_circle_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_circle_counter admin_label=\"Circle Counter\" title=\"App Development\" number=\"50\" percent_sign=\"on\" background_layout=\"dark\"] [/et_pb_circle_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-01-30 23:46:39','2016-01-30 23:46:39','',83,'http://www.fiepfa.org/2016/01/30/83-revision-v1/',0,'revision','',0),(87,1,'2016-01-31 00:58:16','2016-01-31 00:58:16','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" quote_icon=\"on\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt qu [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-01-31 00:58:16','2016-01-31 00:58:16','',83,'http://www.fiepfa.org/2016/01/31/83-revision-v1/',0,'revision','',0),(88,1,'2016-01-31 01:03:10','2016-01-31 01:03:10','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dana.archibald@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kim.marks@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','publish','closed','closed','','team','','','2016-08-18 20:58:21','2016-08-18 20:58:21','',0,'http://www.fiepfa.org/?page_id=88',0,'page','',0),(89,1,'2016-01-31 01:03:10','2016-01-31 01:03:10','[et_pb_section admin_label=\"section\" background_color=\"#6aceb6\" inner_shadow=\"on\" fullwidth=\"on\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"About Our Team\" subhead=\"Your subtitle goes right here.\" background_layout=\"dark\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"left\"] [/et_pb_image][et_pb_text admin_label=\"Text\"]\r\n<h2>Nick Roach</h2>\r\n<em>President, CEO, Theme UI/UX Designer</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet. [/et_pb_text][et_pb_counters admin_label=\"Bar Counters\"] [et_pb_counter percent=\"50\"]Design &amp; UX[/et_pb_counter] [et_pb_counter percent=\"80\"]Web Programming[/et_pb_counter] [et_pb_counter percent=\"10\"]Internet Marketing[/et_pb_counter] [/et_pb_counters][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"top\"] [/et_pb_image][et_pb_text admin_label=\"Text\"]\r\n<h2>Kenny Sing</h2>\r\n<em>Lead Graphic Designers</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet. [/et_pb_text][et_pb_counters admin_label=\"Bar Counters\"] [et_pb_counter percent=\"85\"]Photoshop[/et_pb_counter] [et_pb_counter percent=\"70\"]After Effects[/et_pb_counter] [et_pb_counter percent=\"50\"]Illustrator[/et_pb_counter] [/et_pb_counters][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade_image_800x600.png\" animation=\"right\"] [/et_pb_image][et_pb_text admin_label=\"Text\"]\r\n<h2>Mitch Skolnik</h2>\r\n<em>Community Manager</em>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent mattis nec nisi non luctus. Donec aliquam non nisi ut rutrum. In sit amet vestibulum felis, id aliquet ipsum. Vestibulum feugiat lacinia aliquet. [/et_pb_text][et_pb_counters admin_label=\"Bar Counters\"] [et_pb_counter percent=\"80\"]Customer Happiness[/et_pb_counter] [et_pb_counter percent=\"30\"]Tech Support[/et_pb_counter] [et_pb_counter percent=\"50\"]Community Management[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#2d3743\" inner_shadow=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_5.png\" title=\"Timely Support\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_6.png\" title=\"Innovative Ideas\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_7.png\" title=\"Advanced Technology\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" background_layout=\"dark\" image=\"http://www.elegantthemesimages.com/images/premade_blurb_8.png\" title=\"Clear Communication\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec eleifend tincidunt nisi. Fusce at purus in massa laoreet. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#f5f5f5\" inner_shadow=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>Recent Blog Posts</h2>\r\nLearn from the top thought leaders in the industry. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" show_pagination=\"off\" posts_number=\"3\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" text_orientation=\"center\"]\r\n<h2>Recent Projects</h2>\r\nLearn from the top thought leaders in the industry. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" categories=\"Portfolio\" fullwidth=\"off\"] [/et_pb_portfolio][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#7EBEC5\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy. Get In Touch.\" button_url=\"#\" button_text=\"Contact Us\" background_layout=\"dark\" background_color=\"none\"] If you are interested in working together, send us an inquiry and we will get back to you as soon as we can! [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 01:03:10','2016-01-31 01:03:10','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(92,1,'2016-01-31 02:41:29','2016-01-31 02:41:29','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n[et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>OUR LATEST WORK</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_portfolio][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>MEET THE TEAM</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n[icon name=icon_mail_alt] <a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"]\r\n\r\n\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"]\r\n\r\n\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"]\r\n\r\n\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"]\r\n\r\n\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"]\r\n\r\n\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>OUR CLIENTS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"none\" button_text=\"Sign me up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Stay in the loop\" mailchimp_list=\"6a5929bf74\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p>Join our e-community and be among the first to learn about news, events and volunteer opportunities at Fleming Island Elementary!  </p>\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 02:41:29','2016-01-31 02:41:29','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(94,1,'2016-01-31 03:05:08','2016-01-31 03:05:08','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n[et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR LATEST WORK</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\"]\r\n[/et_pb_portfolio][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"none\" button_text=\"Sign me up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Stay in the loop\" mailchimp_list=\"6a5929bf74\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nJoin our e-community and be among the first to learn about news, events and volunteer opportunities at Fleming Island Elementary!\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 03:05:08','2016-01-31 03:05:08','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(95,1,'2016-01-31 03:23:57','2016-01-31 03:23:57','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR LATEST WORK</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\"]\r\n[/et_pb_portfolio][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity \" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Coordinator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Coordinator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Coordinator and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"none\" button_text=\"Sign me up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Stay in the loop\" mailchimp_list=\"6a5929bf74\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nJoin our e-community and be among the first to learn about news, events and volunteer opportunities at Fleming Island Elementary!\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 03:23:57','2016-01-31 03:23:57','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(96,1,'2016-01-31 03:39:41','2016-01-31 03:39:41','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>PFA BOARD MEETINGS AND MINUTES</h1>\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of everything month in the front office. We always hope to see new faces and fresh ideas on how to continue to make the PFA a success. Come and see what we\'re all about, or reach out to any of our board members above.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\" hover_overlay_color=\"rgba(255,255,255,0.9)\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_portfolio][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"]\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"none\" button_text=\"Sign me up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Stay in the loop\" mailchimp_list=\"6a5929bf74\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nJoin our e-community and be among the first to learn about news, events and volunteer opportunities at Fleming Island Elementary!\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 03:39:41','2016-01-31 03:39:41','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(97,1,'2016-01-31 03:41:06','2016-01-31 03:41:06','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>PFA BOARD MEETINGS AND MINUTES</h1>\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of everything month in the front office. We always hope to see new faces and fresh ideas on how to continue to make the PFA a success. Come and see what we\'re all about, or reach out to any of our board members above.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"none\" button_text=\"Sign me up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Stay in the loop\" mailchimp_list=\"6a5929bf74\" use_focus_border_color=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nJoin our e-community and be among the first to learn about news, events and volunteer opportunities at Fleming Island Elementary!\r\n\r\n[/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-01-31 03:41:06','2016-01-31 03:41:06','',88,'http://www.fiepfa.org/2016/01/31/88-revision-v1/',0,'revision','',0),(98,1,'2016-01-31 12:34:53','2016-01-31 12:34:53','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#f7f7f7\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\"]Changing the way you build websites. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-01-31 12:34:53','2016-01-31 12:34:53','',83,'http://www.fiepfa.org/2016/01/31/83-revision-v1/',0,'revision','',0),(103,1,'2016-01-31 16:56:46','2016-01-31 16:56:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border serves as an outline for beds of mulch to help cushion the ground.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n 	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n 	<li>Ground cover for padding and weed control (IPEMA certified)</li>\r\n 	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n 	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n 	<li>14 new swings</li>\r\n 	<li>Fresh hardware for equipment</li>\r\n 	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s 2015 to 2016 Publicity Officer, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','publish','closed','closed','','playground','','','2016-08-15 10:52:37','2016-08-15 10:52:37','',0,'http://www.fiepfa.org/?page_id=103',0,'page','',0),(104,1,'2016-01-31 16:53:38','2016-01-31 16:53:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"] [et_pb_slide heading=\"Welcome To Our Website\" button_text=\"Learn More\" button_link=\"#\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" video_bg_width=\"1920\" video_bg_height=\"638\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue.[/et_pb_slide][et_pb_slide heading=\"Sky\'s The Limit\" background_color=\"#444444\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_text=\"A Closer Look\" button_link=\"#\"]Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" animation=\"off\" background_layout=\"light\" text_orientation=\"left\" icon_placement=\"left\" font_icon=\"\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#7c4dd5\" circle_color=\"#7c4dd5\" circle_border_color=\"#2caaca\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" background_color=\"#27c9b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Get Started\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Building a website has never been so fun.</h1>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" background_color=\"#27323a\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Lorem Ipsum Dolor.</h1>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit. Nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum</h3>\r\n<span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum</h3>\r\n<span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\"]\r\n<h3>Lorem Ipsum</h3>\r\n<span style=\"color: #bbbbbb;\">Vestibulum lobortis. Donec at euismod nibh, eu ibendum quam. Nullam non gravida puruipsum amet sdum it. Nec ele bulum lobortis. Donec at euismod nibh, eu biben</span>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" background_color=\"#22262e\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"2700\" percent_sign=\"off\" counter_color=\"#815ab4\" background_layout=\"dark\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"30\" percent_sign=\"off\" counter_color=\"#2caaca\" background_layout=\"dark\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"87\" percent_sign=\"off\" counter_color=\"#35bbaa\" background_layout=\"dark\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Lorem Ipsum\" number=\"999\" percent_sign=\"off\" counter_color=\"#ef6462\" background_layout=\"dark\"] [/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\"][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"on\"] [/et_pb_fullwidth_portfolio][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"Slide Title Here\" button_text=\"Shop Now\" button_link=\"http://elegantthemes.com/preview/Divi2/shop-extended/\" background_color=\"#1a86cf\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide][et_pb_slide heading=\"Slide Title Here\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam er\r\nos at, laoreet metus.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Core Features</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-builder.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#predefined\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#layouts\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-modules.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" icon_placement=\"top\" use_icon=\"off\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#2caaca\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" url=\"http://elegantthemes.com/preview/Divi2/features/#mobile\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"bottom\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#2caaca\" use_circle=\"off\" circle_color=\"#2caaca\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\"] Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi. Fusce at purus in massa laoreet [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"] [et_pb_slide heading=\"Slide Title Here\" button_text=\"Our Work\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Versatile Layout Options</h1>\r\nVestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus dolor ipsum amet sit.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#ec6d5f\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"bottom\" background_layout=\"dark\" text_orientation=\"center\"] <span style=\"color: #bbbbbb;\"><span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#1fa0e3\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"right\" background_layout=\"dark\" text_orientation=\"center\"] <span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum Dolor\" url_new_window=\"off\" icon_placement=\"left\" font_icon=\"R\" use_icon=\"on\" use_circle=\"off\" use_circle_border=\"off\" icon_color=\"#47bfa4\" circle_color=\"#2caaca\" circle_border_color=\"#2caaca\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\"] <span style=\"color: #bbbbbb;\">Donec at euismod nibh, eu bibendum. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" background_color=\"#ec6d5f\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" background_color=\"#7ebec5\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\" button_text=\"Join Now\"]</span></span></span></span>\r\n<h1>Look No Further. Get Started Today</h1>\r\n<span style=\"color: #bbbbbb;\"><span style=\"color: #bbbbbb;\"><span style=\"color: #bbbbbb;\">[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]</span></span></span>','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:53:38','2016-01-31 16:53:38','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(105,1,'2016-01-31 16:54:22','2016-01-31 16:54:22','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2e2e2e\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"on\"] [et_pb_slide background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" heading=\"Hello! Welcome To My Online Portfolio\" /][et_pb_slide background_color=\"#f84b48\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#23a1f5\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /][et_pb_slide background_color=\"#27c8b8\" alignment=\"center\" background_layout=\"dark\" heading=\"Project Title\" button_text=\"View Project\" /] [/et_pb_fullwidth_slider][et_pb_fullwidth_portfolio admin_label=\"Fullwidth Portfolio\" fullwidth=\"on\" show_title=\"on\" show_date=\"on\" background_layout=\"dark\" auto=\"off\"] [/et_pb_fullwidth_portfolio][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. [/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Coding Languages\" number=\"7\" percent_sign=\"off\" background_layout=\"light\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Loyal Clients\" number=\"65\" percent_sign=\"off\" background_layout=\"light\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"International Awards\" number=\"12\" percent_sign=\"off\" background_layout=\"light\"] [/et_pb_number_counter][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_number_counter admin_label=\"Number Counter\" title=\"Years of Experience\" number=\"10\" percent_sign=\"off\" background_layout=\"light\"] [/et_pb_number_counter][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#27c8b8\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View My Full Portfolio\" button_url=\"#\" button_text=\"Enter\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\"] Vivamus ipsum velit, ullamcorper quis nibh non, molestie tempus sapien. Mauris ultrices, felis ut eleifend auctor, leo felis vehicula quam, ut accumsan augue nunc at nisl. Cras venenatis ac lorema ac tincidunt. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:54:22','2016-01-31 16:54:22','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(106,1,'2016-01-31 16:54:42','2016-01-31 16:54:42','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"Welcome to Our Shop\" button_text=\"Shop Now\" background_color=\"#0194f3\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"dark\" button_link=\"#\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Featured Products</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_shop admin_label=\"Shop\" type=\"featured\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\"] [/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Recent Products</h1>\r\n[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"date\"] [/et_pb_shop][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Holiday Special Sale\" button_text=\"Shop Now\" background_color=\"#108bf5\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Become a Vendor\" button_text=\"Learn More\" background_color=\"#27c9b9\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\" button_url=\"#\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>What Our Customers are Saying</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Lorem Ipsum\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio.\" [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#27c9b9\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Browse Our Full Shop\" button_url=\"#\" button_text=\"Enter\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"] Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:54:42','2016-01-31 16:54:42','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(107,1,'2016-01-31 16:55:21','2016-01-31 16:55:21','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#b2ede0\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"Our Shop\" button_text=\"Shop Now\" button_link=\"#\" background_color=\"#81dfde\" alignment=\"center\" background_layout=\"dark\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\"]Divi gives you the power to easily run a full-fledged online storefront. With the Divi Builder, you can create gorgeous shop pages, such as this one.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_shop admin_label=\"Shop\" type=\"recent\" posts_number=\"6\" columns=\"3\" orderby=\"menu_order\"] [/et_pb_shop][/et_pb_column_inner][/et_pb_row_inner][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Summer Sale!\" button_url=\"#\" button_text=\"Shop Now\" background_color=\"#ed5362\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"] For a limited time only, all of our vintage products are 50% off! Don\'t miss your chance to save big on these wonderful items. [/et_pb_cta][/et_pb_column_inner][et_pb_column_inner type=\"1_2\" saved_specialty_column_type=\"3_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Buy 2 Get 1 Free\" button_url=\"#\" button_text=\"Coupon Code\" background_color=\"#57ccc4\" use_background_color=\"on\" background_layout=\"dark\" text_orientation=\"center\"] For a limited time only, if you buy two of any item, you get the 3rd for free! Click below to redeem the coupon code to use at checkout. [/et_pb_cta][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Most Popular Items</h1>\r\n[/et_pb_text][et_pb_shop admin_label=\"Shop\" type=\"best_selling\" posts_number=\"4\" columns=\"4\" orderby=\"menu_order\"] [/et_pb_shop][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#57ccc4\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"View All of Our On-Sale Items\" button_url=\"#\" background_color=\"#2caaca\" use_background_color=\"off\" background_layout=\"dark\" text_orientation=\"center\" button_text=\"Shop Now\"] For a limited time only, all of our vintage products are 50% off! Don’t miss your chance to save big on these wonderful items. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:55:21','2016-01-31 16:55:21','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(108,1,'2016-01-31 16:55:47','2016-01-31 16:55:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"A Brand New Product\" background_color=\"#efefef\" image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" alignment=\"center\" background_layout=\"light\" button_text=\"Buy Now\"]The Divi Builder allows you to create beautiful and unique layouts visually, without touching a single line of code.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Gorgeous Design\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Drag &amp; Drop Builder\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"1\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" title=\"Fully Responsive\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f3f3f3\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Plans and Pricing</h1>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate. [/et_pb_text][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\"] [/et_pb_divider][et_pb_pricing_tables admin_label=\"Pricing Table\"] [et_pb_pricing_table featured=\"off\" title=\"Basic\" currency=\"$\" per=\"yr\" sum=\"39\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n-Premium Technical Support\r\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Personal\" currency=\"$\" per=\"yr\" sum=\"69\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n-Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n-Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"on\" title=\"Developer\" subtitle=\"Best Value\" currency=\"$\" per=\"yr\" sum=\"89\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n-No Yearly Fees[/et_pb_pricing_table][et_pb_pricing_table featured=\"off\" title=\"Lifetime\" currency=\"$\" sum=\"249\" button_url=\"http://elegantthemes.com/\" button_text=\"Sign Up\"]+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Themes</a>\r\n+Perpetual Theme Updates\r\n+Premium Technical Support\r\n+Access to <a href=\"http://elegantthemes.com/preview/Divi/module-pricing-tables/#\">All Plugins</a>\r\n+Layered Photoshop Files\r\n+No Yearly Fees[/et_pb_pricing_table] [/et_pb_pricing_tables][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>What Our Customers Are Saying</h1>\r\nDon\'t just take it from us, let our customers do the talking! [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \" [/et_pb_testimonial][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_testimonial admin_label=\"Testimonial\" author=\"Luke Chapman\" url_new_window=\"off\" portrait_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-225px.png\" quote_icon=\"off\" use_background_color=\"on\" background_color=\"#f5f5f5\" background_layout=\"light\" text_orientation=\"left\"] \"Lorem ipsum dolor sit amet, consectetur adipiscing elit. In in risus eget lectus suscipit malesuada. Maecenas ut urna mollis, aliquam eros at, laoreet metus. Proin ac eros eros. Suspendisse auctor, eros ac sollicitudin vulputate, urna arcu sodales quam, eget faucibus eros ante nec enim.\r\n\r\nEtiam quis eros in enim molestie tempus a non urna. Suspendisse nibh massa, tristique sit amet interdum non, fermentum in quam. \" [/et_pb_testimonial][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#eeeeee\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/et-logo.png\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"bottom\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use the themes on multiple sites?\" open=\"off\"] Yes, you are free to use our themes on as many websites as you like. We do not place any restrictions on how many times you can download or use a theme, nor do we limit the number of domains that you can install our themes to. [/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What is your refund policy?\" open=\"on\"] We offer no-questions-asked refunds to all customers within 30 days of your purchase. If you are not satisfied with our product, then simply send us an email and we will refund your purchase right away. Our goal has always been to create a happy, thriving community. If you are not thrilled with the product or are not enjoying the experience, then we have no interest in forcing you to stay an unhappy member. [/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"What are Photoshop Files?\" open=\"off\"] Elegant Themes offers two different packages: Personal and Developer. The Personal Subscription is ideal for the average user while the Developers License is meant for experienced designers who wish to customize their themes using the original Photoshop files. Photoshop files are the original design files that were used to create the theme. They can be opened using Adobe Photoshop and edited, and prove very useful for customers wishing to change their theme\'s design in some way. [/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I upgrade after signing up?\" open=\"off\"] Yes, you can upgrade at any time after signing up. When you log in as a \"personal\" subscriber, you will see a notice regarding your current package and instructions on how to upgrade. [/et_pb_toggle][et_pb_toggle admin_label=\"Toggle\" title=\"Can I use your themes with WP.com?\" open=\"off\"] Unfortunately WordPress.com does not allow the use of custom themes. If you would like to use a custom theme of any kind, you will need to purchase your own hosting account and install the free software from WordPress.org. If you are looking for great WordPress hosting, we recommend giving HostGator a try. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Don\'t Be Shy\" button_url=\"#\" button_text=\"Get In Touch\" use_background_color=\"off\" background_color=\"#108bf5\" background_layout=\"dark\" text_orientation=\"center\"] If we didn\'t answer all of your questions, feel free to drop us a line anytime. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:55:47','2016-01-31 16:55:47','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(109,1,'2016-01-31 16:56:11','2016-01-31 16:56:11','[et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1 style=\"font-size: 52px;\">Product Features</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:56:11','2016-01-31 16:56:11','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(110,1,'2016-01-31 16:56:46','2016-01-31 16:56:46','[et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1 style=\"font-size: 52px;\">Product Features</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 16:56:46','2016-01-31 16:56:46','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(111,1,'2016-01-31 16:58:48','2016-01-31 16:58:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a href=\"http://fie.oneclay.net/news\" target=\"_blank\">Other FIE News</a></h2>\r\n(Redirects you to fie.oneclay.net.)\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','publish','closed','closed','','news-and-events','','','2016-05-10 20:45:37','2016-05-10 20:45:37','',0,'http://www.fiepfa.org/?page_id=111',0,'page','',0),(112,1,'2016-01-31 16:57:39','2016-01-31 16:57:39','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 16:57:39','2016-01-31 16:57:39','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(113,1,'2016-01-31 16:58:27','2016-01-31 16:58:27','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a masonry blog layout with no sidebar\" background_layout=\"dark\" text_orientation=\"left\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"off\" posts_number=\"18\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 16:58:27','2016-01-31 16:58:27','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(114,1,'2016-01-31 16:58:48','2016-01-31 16:58:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"Welcome to My Blog\" subhead=\"Here is a basic blog layout with a right sidebar\" background_layout=\"dark\" text_orientation=\"left\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 16:58:48','2016-01-31 16:58:48','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(115,1,'2016-02-01 02:19:11','2016-02-01 02:19:11','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nCheri Johnson\r\nFundraising Officer\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n 	<li>Playground improvements</li>\r\n 	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n 	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n 	<li>The BARB newsletter printing</li>\r\n 	<li>Property enhancements</li>\r\n 	<li>Spirit days</li>\r\n 	<li>Fundraising (e.g., prizes and external administration)</li>\r\n 	<li>Grants</li>\r\n 	<li>Student lunch support</li>\r\n 	<li>Community service projects (e.g., Angel Tree)</li>\r\n 	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n 	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n 	<li>Take a picture of your receipt.</li>\r\n 	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n 	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n 	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" target=\"_blank\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" target=\"_blank\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n 	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n 	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n 	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n 	<li>Find Fleming Island Elementary.</li>\r\n 	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','publish','closed','closed','','fundraising','','','2016-08-15 10:50:43','2016-08-15 10:50:43','',0,'http://www.fiepfa.org/?page_id=115',0,'page','',0),(117,1,'2016-01-31 17:08:03','2016-01-31 17:08:03',' ','','','publish','closed','closed','','117','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=117',12,'nav_menu_item','',0),(118,1,'2016-01-31 17:08:03','2016-01-31 17:08:03',' ','','','publish','closed','closed','','118','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=118',11,'nav_menu_item','',0),(119,1,'2016-01-31 17:08:03','2016-01-31 17:08:03',' ','','','publish','closed','closed','','119','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=119',6,'nav_menu_item','',0),(121,1,'2016-01-31 17:11:23','2016-01-31 17:11:23','','Contact','','publish','closed','closed','','contact','','','2016-02-05 11:23:10','2016-02-05 11:23:10','',0,'http://www.fiepfa.org/?p=121',1,'nav_menu_item','',0),(123,1,'2016-01-31 17:27:10','2016-01-31 17:27:10','','Playground-1790-600','','inherit','open','closed','','playground-1790-600','','','2016-01-31 17:27:29','2016-01-31 17:27:29','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg',0,'attachment','image/jpeg',0),(124,1,'2016-01-31 17:33:18','2016-01-31 17:33:18','[et_pb_section fullwidth=\"on\" specialty=\"off\" admin_label=\"Section\"][et_pb_fullwidth_image admin_label=\"Swing picture\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"60\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1 style=\"font-size: 52px;\">Product Features</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" url_new_window=\"off\" animation=\"bottom\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 17:33:18','2016-01-31 17:33:18','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(125,1,'2016-01-31 17:35:43','2016-01-31 17:35:43','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 17:35:43','2016-01-31 17:35:43','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(126,1,'2016-01-31 17:42:31','2016-01-31 17:42:31','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Help us grow!\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 17:42:31','2016-01-31 17:42:31','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(127,1,'2016-01-31 17:43:32','2016-01-31 17:43:32','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Help us grow!\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<p style=\"text-align: center;\">\"Fund  our Playground\" Campaign</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"] The builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"] Divi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout. [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"] Divi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites. [/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] Join today and get access to Divi, as well as our other countless themes and plugins. [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 17:43:32','2016-01-31 17:43:32','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(128,1,'2016-01-31 17:45:19','2016-01-31 17:45:19','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"Help us grow!\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\"] [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1><p style=\"text-align: center;\">\"Fund our Playground\" Campaign</p></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Advanced Page Builder\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ea3f2\"]\r\n\r\nDivi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Key Elements\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\" icon_color=\"#2ad4e0\"]\r\n\r\nThe builder comes packed with tons of great modules, and more are on the way! Combine and arrange them in any order. The possibilities are countless.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Target Audience\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]\r\n\r\nDivi’s layout has been designed with mobile devices in mind. No matter how you use it, and no matter how you view it, your website is going to look great.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Strategy\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"\"]\r\n\r\nDivi is here to stay, and you can rest easy knowing that our team will be updating and improving it for years to come. Build on top of a powerful foundation.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>Advanced Drag &amp; Drop Builder</h1><p>The Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n[et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<h1>Fully Responsive Layouts</h1><p>We know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 17:45:19','2016-01-31 17:45:19','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(129,1,'2016-01-31 18:12:52','2016-01-31 18:12:52','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n\r\n\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1><p style=\"text-align: center;\">\"Fund our Playground\" Campaign</p></h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#2ea3f2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWhen allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#2ad4e0\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlay is an active form of learning that can envelop a child\'s sense of vision, smell, touch and motion.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Need your help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#9633e8\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon=\"on\" icon_color=\"#d85fd6\" use_circle=\"on\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>Advanced Drag &amp; Drop Builder</h1><p>The Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n[et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<h1>Fully Responsive Layouts</h1><p>We know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:12:52','2016-01-31 18:12:52','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(130,1,'2016-01-31 18:19:01','2016-01-31 18:19:01','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p>\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]</p>\r\n<p>[/et_pb_slide]</p>\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Need your help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\n<p>To date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<p>Not only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p>\r\n[et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]</p>\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\n<p>The Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n<p>\r\n[et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide]</p>\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<h1>Fully Responsive Layouts</h1>\r\n<p>We know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"]\r\n\r\n<br />\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\n<p>\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"]\r\n\r\n<br />\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]\r\n\r\n<p>\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<p>\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:19:01','2016-01-31 18:19:01','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(131,1,'2016-01-31 18:20:23','2016-01-31 18:20:23','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p>\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]<br />\r\n[/et_pb_slide]</p>\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>\"Fund our Playground\" Campaign</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<p>Not only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\n<p>To date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p>\r\n[et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]</p>\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\n<p>The Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n<p>\r\n[et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide]</p>\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<h1>Fully Responsive Layouts</h1>\r\n<p>We know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\n<p>\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]\r\n\r\n<p>\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"]\r\n\r\n<p>\r\n</p>\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<p>\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:20:23','2016-01-31 18:20:23','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(132,1,'2016-01-31 18:21:36','2016-01-31 18:21:36','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"builder\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_slider admin_label=\"Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"Fund our playground \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_slider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>Advanced Drag &amp; Drop Builder</h1>\r\nThe Divi Builder was made with user experience at the forefront of its priorities. The way it is broken up into sections, rows, columns and widgets, really allows you to understand and edit the structure of your page. Your editing controls are pulled out of the main content area so that you get a clear and concise representation of how your modules fit into your page layout.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"on\" module_id=\"backgrounds\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"]\r\n\r\n[et_pb_slide heading=\"All The Right Things\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\"]Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.Vestibulum lobortis. Donec at euismod nibh, eu bibendum quam. Nullam non gravida purus, nec  eleifend tincidunt nisi.[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#283139\" inner_shadow=\"off\" parallax=\"off\" module_id=\"mobile\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>Fully Responsive Layouts</h1>\r\nWe know that your website needs to be accessible and readable on all devices. We made Divi fully responsive so that your designs look great no matter what. With the builder, you design your desktop website, and we make sure that Divi does the heavy lifting for you.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1080px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][et_pb_cta admin_label=\"Call To Action\" title=\"Product Feature\" button_url=\"#\" button_text=\"Learn More\" use_background_color=\"off\" background_color=\"#2caaca\" background_layout=\"light\" text_orientation=\"right\"]\r\n\r\nDivi Ships with a tone of great premade layouts to get you started with a homepage, a portfolio, an eCommerce Storefront, and much more! Check out the theme demo to preview a few of these premade layouts. We\'ve even realeased layout packs along the way for portfolios and business focused websites.\r\n\r\n[/et_pb_cta][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:21:36','2016-01-31 18:21:36','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(133,1,'2016-01-31 18:24:24','2016-01-31 18:24:24','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"70\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"40\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:24:24','2016-01-31 18:24:24','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(134,1,'2016-01-31 18:28:15','2016-01-31 18:28:15','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:28:15','2016-01-31 18:28:15','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(135,1,'2016-01-31 18:29:47','2016-01-31 18:29:47','','Before-Overview-1-510','','inherit','open','closed','','before-overview-1-510','','','2016-01-31 18:41:28','2016-01-31 18:41:28','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg',0,'attachment','image/jpeg',0),(136,1,'2016-01-31 18:30:06','2016-01-31 18:30:06','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:30:06','2016-01-31 18:30:06','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(137,1,'2016-01-31 18:40:20','2016-01-31 18:40:20','','Before-Overview-2-510','','inherit','open','closed','','before-overview-2-510','','','2016-01-31 18:40:57','2016-01-31 18:40:57','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-2-510.jpg',0,'attachment','image/jpeg',0),(138,1,'2016-01-31 18:40:23','2016-01-31 18:40:23','','Playground-progress-510','','inherit','open','closed','','playground-progress-510','','','2016-01-31 18:40:23','2016-01-31 18:40:23','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg',0,'attachment','image/jpeg',0),(139,1,'2016-01-31 18:40:25','2016-01-31 18:40:25','','Swing-cover-during','','inherit','open','closed','','swing-cover-during','','','2016-01-31 18:40:25','2016-01-31 18:40:25','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg',0,'attachment','image/jpeg',0),(140,1,'2016-01-31 18:40:26','2016-01-31 18:40:26','','Swing-cover-during-2-510','','inherit','open','closed','','swing-cover-during-2-510','','','2016-01-31 18:40:26','2016-01-31 18:40:26','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg',0,'attachment','image/jpeg',0),(141,1,'2016-01-31 18:40:27','2016-01-31 18:40:27','','Swings-before-510','','inherit','open','closed','','swings-before-510','','','2016-01-31 18:42:48','2016-01-31 18:42:48','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg',0,'attachment','image/jpeg',0),(142,1,'2016-01-31 18:40:28','2016-01-31 18:40:28','','Swingset-after-2-510','','inherit','open','closed','','swingset-after-2-510','','','2016-01-31 18:40:28','2016-01-31 18:40:28','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg',0,'attachment','image/jpeg',0),(143,1,'2016-01-31 18:40:30','2016-01-31 18:40:30','','Swingset-after-510','','inherit','open','closed','','swingset-after-510','','','2016-01-31 18:40:30','2016-01-31 18:40:30','',103,'http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg',0,'attachment','image/jpeg',0),(144,1,'2016-01-31 18:43:54','2016-01-31 18:43:54','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"40\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"After\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:43:54','2016-01-31 18:43:54','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(145,1,'2016-01-31 18:53:14','2016-01-31 18:53:14','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"In progress description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">Description</h1>\r\nDescription\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 18:53:14','2016-01-31 18:53:14','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(146,1,'2016-01-31 19:26:34','2016-01-31 19:26:34','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and help eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"In progress description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">Description</h1>\r\nDescription\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\nWe\'re excited about the improvements (including a new swing for children in wheelchairs and accessible ramps). Can\'t wait to keep making progress!\r\n\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. We also saved funds by salvaging and moving other equipment.\r\n\r\n[icon name=icon_star] We also greatly appreciate Susan Mabry, PFA\'s publicity lead, for snapping these photos!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:26:34','2016-01-31 19:26:34','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(147,1,'2016-01-31 19:36:17','2016-01-31 19:36:17','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and help eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\nWe\'re excited about the improvements, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets for increased safety</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. We also economized by salvaging and moving equipment.\r\n\r\n[icon name=icon_star] We also greatly appreciate Susan Mabry, PFA\'s publicity lead, for snapping these photos!\r\n\r\nThanks again for your generosity, and look forward to realizing Phase 2!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:36:17','2016-01-31 19:36:17','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(148,1,'2016-01-31 19:41:59','2016-01-31 19:41:59','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]<br /> [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\n<p style=\"text-align: left;\">Play is an active form of learning that can envelop a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<p>Not only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\n<p>To date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">BEFORE</h1><p>Fleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1><p>With $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and help eliminate standing water.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">AFTER</h1><h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>We\'re excited about the improvements, which included:</p><ul><li>ParKurb borders around the swingsets for increased safety</li><li>Mulch for padding, weed control and drainage</li><li>New swing for children in wheelchairs</li><li>Wheelchair-accessible ramps</li><li>Fresh hardware for equipment</li></ul><p>[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. We also economized by salvaging and moving equipment.</p><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3>We greatly appreciate your generosity, and look forward to realizing Phase 2! News on that soon!</h3>\r\n\r\n[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\n<p>Join today and get access to Divi, as well as our other countless themes and plugins.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:41:59','2016-01-31 19:41:59','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(149,1,'2016-01-31 19:52:52','2016-01-31 19:52:52','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about the improvements, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"right\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your generosity, and look forward to realizing Phase 2!\r\n<em style=\"line-height: 1em;\">News on that soon!</em></h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:52:52','2016-01-31 19:52:52','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(150,1,'2016-01-31 19:55:12','2016-01-31 19:55:12','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about the improvements, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your generosity, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" title=\"Signup Today For Instant Access\" button_url=\"#\" button_text=\"Join Today\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"]\r\n\r\nJoin today and get access to Divi, as well as our other countless themes and plugins.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:55:12','2016-01-31 19:55:12','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(151,1,'2016-01-31 19:58:48','2016-01-31 19:58:48','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling the improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 19:58:48','2016-01-31 19:58:48','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(152,1,'2016-01-31 20:00:54','2016-01-31 20:00:54','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling the improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-01-31 20:00:54','2016-01-31 20:00:54','',103,'http://www.fiepfa.org/2016/01/31/103-revision-v1/',0,'revision','',0),(153,1,'2016-01-31 20:20:36','2016-01-31 20:20:36','','News-events-banner-1790','','inherit','open','closed','','news-events-banner-1790','','','2016-01-31 20:20:59','2016-01-31 20:20:59','',111,'http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg',0,'attachment','image/jpeg',0),(154,1,'2016-05-10 20:45:49','2016-05-10 20:45:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a href=\"http://fie.oneclay.net/news\" target=\"_blank\">Other FIE News</a></h2>\r\n(Redirects you to fie.oneclay.net.)\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-autosave-v1','','','2016-05-10 20:45:49','2016-05-10 20:45:49','',111,'http://www.fiepfa.org/2016/01/31/111-autosave-v1/',0,'revision','',0),(155,1,'2016-01-31 20:33:01','2016-01-31 20:33:01','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" admin_label=\"Section\"][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" admin_label=\"Section\" template_type=\"\"][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" background_color=\"#bfcaff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>News and Events</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 20:33:01','2016-01-31 20:33:01','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(157,1,'2016-01-31 20:35:14','2016-01-31 20:35:14','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"News and Events\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"left\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 20:35:14','2016-01-31 20:35:14','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(158,1,'2016-01-31 20:36:13','2016-01-31 20:36:13','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"News and Events\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" meta_date=\"M j, Y\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 20:36:13','2016-01-31 20:36:13','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(159,1,'2016-01-31 20:38:17','2016-01-31 20:38:17','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"News and Events\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 20:38:17','2016-01-31 20:38:17','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(160,1,'2016-01-31 20:52:23','2016-01-31 20:52:23','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.9em\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"#ffffff\" heading=\"News and Events\"]\r\n\r\n\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 20:52:23','2016-01-31 20:52:23','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(161,1,'2016-01-31 21:04:12','2016-01-31 21:04:12','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.9em\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/News-events-banner-1790.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"#ffffff\" heading=\"News and Events\"]\r\n\r\n\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 21:04:12','2016-01-31 21:04:12','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(162,1,'2016-01-31 21:04:29','2016-01-31 21:04:29','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 21:04:29','2016-01-31 21:04:29','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(163,1,'2016-01-31 21:06:04','2016-01-31 21:06:04','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"42px\"]\r\n\r\n\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 21:06:04','2016-01-31 21:06:04','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(164,1,'2016-01-31 21:07:32','2016-01-31 21:07:32','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"]\r\n\r\n\r\n\r\n[/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"]\r\n\r\n\r\n\r\n[/et_pb_sidebar][/et_pb_column][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-01-31 21:07:32','2016-01-31 21:07:32','',111,'http://www.fiepfa.org/2016/01/31/111-revision-v1/',0,'revision','',0),(165,1,'2016-02-01 02:03:26','2016-02-01 02:03:26','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]<br /> [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]</p><p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]</p><p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]</p><p>Not only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]</p><p>To date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">BEFORE</h1><p>Fleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">IN PROGRESS</h1><p>With $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">AFTER</h1><h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2><p> </p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><p>We\'re excited about unveiling the improvements January 2016, which included:</p><ul><li>ParKurb borders around the swingsets</li><li>Mulch for padding, weed control and drainage</li><li>New swing for children in wheelchairs</li><li>Wheelchair-accessible ramps</li><li>Fresh hardware for equipment</li><li>Moving and salvaging equipment</li></ul><p>[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]<br /> [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">THANK YOU!</h1><h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!<br /> News on that soon!</h3><p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Playground','','publish','closed','closed','','playground','','','2016-02-01 02:03:26','2016-02-01 02:03:26','',0,'http://www.fiepfa.org/et_pb_layout/playground/',0,'et_pb_layout','',0),(166,1,'2016-02-01 02:16:07','2016-02-01 02:16:07','','Bake-sale-510','','inherit','open','closed','','bake-sale-510','','','2016-02-01 02:16:16','2016-02-01 02:16:16','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg',0,'attachment','image/jpeg',0),(167,1,'2016-02-01 02:17:37','2016-02-01 02:17:37','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling the improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 02:17:37','2016-02-01 02:17:37','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(168,1,'2016-02-01 02:19:11','2016-02-01 02:19:11','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling the improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets</li>\r\n	<li>Mulch for padding, weed control and drainage</li>\r\n	<li>New swing for children in wheelchairs</li>\r\n	<li>Wheelchair-accessible ramps</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 02:19:11','2016-02-01 02:19:11','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(170,1,'2016-02-01 02:36:03','2016-02-01 02:36:03','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers have yielded about $20,000, which have funded improvements the children enjoy today. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 02:36:03','2016-02-01 02:36:03','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(171,1,'2016-02-01 03:12:46','2016-02-01 03:12:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need.To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where we allot funds:\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising prizes and external administration</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ce842f\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 03:12:46','2016-02-01 03:12:46','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(172,1,'2016-02-01 03:17:47','2016-02-01 03:17:47','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where we allot funds:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising prizes and external administration</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 03:17:47','2016-02-01 03:17:47','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(173,1,'2016-02-01 03:33:40','2016-02-01 03:33:40','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where we allot funds:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising prizes and external administration</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship (May 10 to 15)?</h1>\r\n<h3>Get discounted tickets AND support FIE using our promo code!</h3>\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each), it also donates $25 of every ticket to the school! Soon we\'ll provide a flier and the promo code so you can tell your friends and family all about it! Don\'t buy your tickets without using the FIE promo code! :)\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<h3>Friday, Feb. 5 | 6 to 7:45 p.m. | FIE Cafeteria</h3>\r\nOur sincere thanks to our sponsors, Island Pediatrics and Borland-Groover Clinic!\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1., you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, Balloons R4 Twisting, a balloon artist, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nBreak out your Hawaiian shirts and dust off your grass skirts!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 03:33:40','2016-02-01 03:33:40','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(174,1,'2016-02-01 12:00:33','2016-02-01 12:00:33',' ','','','publish','closed','closed','','174','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=174',9,'nav_menu_item','',0),(175,1,'2016-02-01 12:03:49','2016-02-01 12:03:49','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where we allot funds:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising prizes and external administration</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship (May 10 to 15)?</h1>\r\n<h3>Get discounted tickets AND support FIE using our promo code!</h3>\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each), it also donates $25 of every ticket to the school! Soon we\'ll provide a flier and the promo code so you can tell your friends and family all about it! Don\'t buy your tickets without using the FIE promo code! :)\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<h3>Friday, Feb. 5 | 6 to 7:45 p.m. | FIE Cafeteria</h3>\r\nOur sincere thanks to our sponsors, Island Pediatrics and Borland-Groover Clinic!\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1., you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, Balloons R4 Twisting, a balloon artist, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nBreak out your Hawaiian shirts and dust off your grass skirts!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 12:03:49','2016-02-01 12:03:49','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(177,1,'2016-02-01 17:50:44','2016-02-01 17:50:44','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fund our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Fund our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. Any monies donated here will go 100% to further upgrade and enhance our FIE playground. The faster money is raised, the quicker the playground will be complete.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 17:50:44','2016-02-01 17:50:44','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(178,1,'2016-02-01 17:51:26','2016-02-01 17:51:26','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. Any monies donated here will go 100% to further upgrade and enhance our FIE playground. The faster money is raised, the quicker the playground will be complete.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 17:51:26','2016-02-01 17:51:26','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(180,1,'2016-02-01 17:55:46','2016-02-01 17:55:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" font_icon=\"%%280%%\" use_icon_font_size=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. Any monies donated here will go 100% to further upgrade and enhance our FIE playground. The faster money is raised, the quicker the playground will be complete.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 17:55:46','2016-02-01 17:55:46','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(181,1,'2016-02-01 17:58:45','2016-02-01 17:58:45','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"right\" text_text_color=\"#81d742\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n[icon name=icon_currency_alt]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" font_icon=\"%%280%%\" use_icon_font_size=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. Any monies donated here will go 100% to further upgrade and enhance our FIE playground. The faster money is raised, the quicker the playground will be complete.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 17:58:45','2016-02-01 17:58:45','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(182,1,'2016-02-01 18:04:30','2016-02-01 18:04:30','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" font_icon=\"%%280%%\" use_icon_font_size=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. Any monies donated here will go 100% to further upgrade and enhance our FIE playground. The faster money is raised, the quicker the playground will be complete.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:04:30','2016-02-01 18:04:30','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(183,1,'2016-02-01 18:05:45','2016-02-01 18:05:45','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"left\" font_icon=\"%%280%%\" use_icon_font_size=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. Thanks so much for your generosity! An “Invest in your Playground” collection box (birdhouse) is perched in the front office. ALL (100%) of monies donated here will go to further enhance our FIE playground.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:05:45','2016-02-01 18:05:45','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(184,1,'2016-02-01 18:10:57','2016-02-01 18:10:57','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:10:57','2016-02-01 18:10:57','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(185,1,'2016-02-01 18:12:42','2016-02-01 18:12:42','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" admin_label=\"Section\" template_type=\"\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:12:42','2016-02-01 18:12:42','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(186,1,'2016-02-01 18:13:14','2016-02-01 18:13:14','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements the children enjoy today. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!\r\nNews on that soon!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:13:14','2016-02-01 18:13:14','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(187,1,'2016-02-01 18:15:13','2016-02-01 18:15:13','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:15:13','2016-02-01 18:15:13','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(188,1,'2016-02-01 18:15:56','2016-02-01 18:15:56','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]<br /> [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<p>Not only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">BEFORE</h1><p>Fleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1><p>With $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">AFTER</h1><h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2><p> </p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>We\'re excited about unveiling Phase 1 improvements January 2016, which included:</p><ul><li>ParKurb borders around the swingsets (IPEMA certified)</li><li>Ground cover for padding, weed control and drainage (IPEMA certified)</li><li>New ADA-compliant swing platform for children in wheelchairs</li><li>ADA-compliant wheelchair-accessible ramps</li><li>14 new swings</li><li>Fresh hardware for equipment</li><li>Moving and salvaging equipment</li></ul>[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<br />\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1><h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3><p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-01 18:15:56','2016-02-01 18:15:56','',103,'http://www.fiepfa.org/2016/02/01/103-revision-v1/',0,'revision','',0),(189,1,'2016-08-15 10:49:56','2016-08-15 10:49:56','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nCheri Johnson\r\nFundraising Officer\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n 	<li>Playground improvements</li>\r\n 	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n 	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n 	<li>The BARB newsletter printing</li>\r\n 	<li>Property enhancements</li>\r\n 	<li>Spirit days</li>\r\n 	<li>Fundraising (e.g., prizes and external administration)</li>\r\n 	<li>Grants</li>\r\n 	<li>Student lunch support</li>\r\n 	<li>Community service projects (e.g., Angel Tree)</li>\r\n 	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n 	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n 	<li>Take a picture of your receipt.</li>\r\n 	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n 	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n 	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" target=\"_blank\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" target=\"_blank\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n 	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n 	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n 	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n 	<li>Find Fleming Island Elementary.</li>\r\n 	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-autosave-v1','','','2016-08-15 10:49:56','2016-08-15 10:49:56','',115,'http://www.fiepfa.org/2016/02/01/115-autosave-v1/',0,'revision','',0),(190,1,'2016-02-01 18:26:37','2016-02-01 18:26:37','Fleming Island Elementary TPC \"Chip in for Youth\" flier','FIE-Chip-in-for-Youth-TPC-2016-Flier','','inherit','open','closed','','fie-chip-in-for-youth-tpc-2016-flier','','','2016-02-01 18:27:06','2016-02-01 18:27:06','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf',0,'attachment','application/pdf',0),(191,1,'2016-02-01 18:34:53','2016-02-01 18:34:53','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: left;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<h3>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</h3>\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <strong>the most affordable option</strong>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <span style=\"text-decoration: underline;\"><strong>FLEMINGISLAND</strong></span>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\nSpread the word via these ideas:\r\n<ul>\r\n	<li>Mention the program and promo code (<span style=\"text-decoration: underline;\"><strong>FLEMINGISLAND</strong></span>) to friends and family on Facebook.</li>\r\n	<li>Print and share <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" rel=\"\">this flier</a> with your colleagues and customers.</li>\r\n</ul>\r\nBuy tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1., you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, Balloons R4 Twisting, a balloon artist, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 18:34:53','2016-02-01 18:34:53','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(192,1,'2016-02-01 18:56:11','2016-02-01 18:56:11','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<h3>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</h3>\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<span style=\"text-decoration: underline;\"><strong>FLEMINGISLAND</strong></span>) to friends and family on Facebook.</li>\r\n	<li>Print and share <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" rel=\"\">this flier</a> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1., you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, Balloons R4 Twisting, a balloon artist, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-A-Thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li><strong>March (date TBD)</strong></li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 18:56:11','2016-02-01 18:56:11','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(193,1,'2016-02-01 19:02:30','2016-02-01 19:02:30','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<h3>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</h3>\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<span style=\"text-decoration: underline;\"><strong>FLEMINGISLAND</strong></span>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-A-Thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 19:02:30','2016-02-01 19:02:30','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(194,1,'2016-02-01 19:03:05','2016-02-01 19:03:05','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<span style=\"text-decoration: underline;\"><strong>FLEMINGISLAND</strong></span>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-A-Thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 19:03:05','2016-02-01 19:03:05','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(195,1,'2016-02-01 19:03:51','2016-02-01 19:03:51','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-A-Thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 19:03:51','2016-02-01 19:03:51','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(196,1,'2016-02-01 19:04:57','2016-02-01 19:04:57','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 19:04:57','2016-02-01 19:04:57','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(197,1,'2016-02-01 21:51:04','2016-02-01 21:51:04','2016 list of qualifying Box Top items','HUNDREDS','','inherit','open','closed','','2016-box-tops-education-items','','','2016-02-01 21:52:20','2016-02-01 21:52:20','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf',0,'attachment','application/pdf',0),(198,1,'2016-02-01 21:51:06','2016-02-01 21:51:06','','collection sheet','','inherit','open','closed','','box-tops-collection-sheet-how-it-works-2016','','','2016-02-01 21:53:48','2016-02-01 21:53:48','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf',0,'attachment','application/pdf',0),(199,1,'2016-02-01 22:15:23','2016-02-01 22:15:23','','1-point UPCs','','inherit','open','closed','','lfe_collectionsheet_1point_2015_2016-lr','','','2016-02-01 22:15:42','2016-02-01 22:15:42','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf',0,'attachment','application/pdf',0),(200,1,'2016-02-01 22:15:25','2016-02-01 22:15:25','','5-point UPCs','','inherit','open','closed','','lfe_collectionsheet_5point_2015_2016-lr','','','2016-02-01 22:16:05','2016-02-01 22:16:05','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf',0,'attachment','application/pdf',0),(201,1,'2016-02-01 22:15:27','2016-02-01 22:15:27','','10-point UPCs','','inherit','open','closed','','lfe_collectionsheet_10point_2015_2016-lr','','','2016-02-01 22:17:03','2016-02-01 22:17:03','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf',0,'attachment','application/pdf',0),(202,1,'2016-02-01 22:18:27','2016-02-01 22:18:27','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 22:18:27','2016-02-01 22:18:27','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(203,1,'2016-02-01 22:46:13','2016-02-01 22:46:13','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Donate your My Coke Rewards by:</strong>\r\n<ol>\r\n	<li>Purchasing your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Going to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Finding Fleming Island Elementary.</li>\r\n	<li>Donating your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 22:46:13','2016-02-01 22:46:13','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (204,1,'2016-02-01 22:48:25','2016-02-01 22:48:25','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Donate your My Coke Rewards by:</strong>\r\n<ol>\r\n	<li>Purchasing your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Going to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Finding Fleming Island Elementary.</li>\r\n	<li>Donating your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 22:48:25','2016-02-01 22:48:25','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(205,1,'2016-02-01 22:51:55','2016-02-01 22:51:55','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 22:51:55','2016-02-01 22:51:55','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(206,1,'2016-02-01 23:44:19','2016-02-01 23:44:19','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-01 23:44:19','2016-02-01 23:44:19','',115,'http://www.fiepfa.org/2016/02/01/115-revision-v1/',0,'revision','',0),(207,1,'2016-02-02 00:59:46','2016-02-02 00:59:46','','Box-Tops-for-Education-320','','inherit','open','closed','','box-tops-for-education-320','','','2016-02-02 01:00:20','2016-02-02 01:00:20','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg',0,'attachment','image/jpeg',0),(208,1,'2016-02-02 00:59:48','2016-02-02 00:59:48','','Chip-in-for-youth-2016-logo-320','','inherit','open','closed','','chip-in-for-youth-2016-logo-320','','','2016-02-02 01:00:31','2016-02-02 01:00:31','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg',0,'attachment','image/jpeg',0),(209,1,'2016-02-02 00:59:49','2016-02-02 00:59:49','','Coke-Rewards-Help-School-320','','inherit','open','closed','','coke-rewards-help-school-320','','','2016-02-02 01:03:26','2016-02-02 01:03:26','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg',0,'attachment','image/jpeg',0),(211,1,'2016-02-02 00:59:52','2016-02-02 00:59:52','','Go-Green-Logo-320','','inherit','open','closed','','go-green-logo-320','','','2016-02-02 01:03:45','2016-02-02 01:03:45','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg',0,'attachment','image/jpeg',0),(212,1,'2016-02-02 00:59:53','2016-02-02 00:59:53','','Kids-Eat-310','','inherit','open','closed','','kids-eat-310','','','2016-02-02 01:01:21','2016-02-02 01:01:21','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg',0,'attachment','image/jpeg',0),(213,1,'2016-02-02 00:59:55','2016-02-02 00:59:55','','Kids-Hula-AS-320','','inherit','open','closed','','kids-hula-as-320','','','2016-02-02 01:00:47','2016-02-02 01:00:47','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg',0,'attachment','image/jpeg',0),(216,1,'2016-02-02 01:02:22','2016-02-02 01:02:22','','Receipts-320','','inherit','open','closed','','receipts-320','','','2016-02-02 01:02:36','2016-02-02 01:02:36','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg',0,'attachment','image/jpeg',0),(217,1,'2016-02-02 01:03:58','2016-02-02 01:03:58','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:03:58','2016-02-02 01:03:58','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(219,1,'2016-02-02 01:09:28','2016-02-02 01:09:28','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:09:28','2016-02-02 01:09:28','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(220,1,'2016-02-02 01:11:32','2016-02-02 01:11:32','','Read-a-thon-FIE-510','','inherit','open','closed','','read-a-thon-fie-510','','','2016-02-02 01:11:43','2016-02-02 01:11:43','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg',0,'attachment','image/jpeg',0),(221,1,'2016-02-02 01:17:50','2016-02-02 01:17:50','','Happy-Birthday-Marquee-510','','inherit','open','closed','','happy-birthday-marquee-510','','','2016-02-02 01:18:00','2016-02-02 01:18:00','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg',0,'attachment','image/jpeg',0),(222,1,'2016-02-02 01:20:12','2016-02-02 01:20:12','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :)\r\n\r\nTPC will be held May 10 to 16, 2016, in Ponte Vedra.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\n<strong>I\'m ready to buy tickets!</strong>\r\n<ul>\r\n	<li>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:20:12','2016-02-02 01:20:12','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(223,1,'2016-02-02 01:22:20','2016-02-02 01:22:20','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:22:20','2016-02-02 01:22:20','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(224,1,'2016-02-02 01:26:44','2016-02-02 01:26:44','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Ongoing support</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create an account online, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:26:44','2016-02-02 01:26:44','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(225,1,'2016-02-02 01:29:12','2016-02-02 01:29:12','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:29:12','2016-02-02 01:29:12','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(226,1,'2016-02-02 01:33:19','2016-02-02 01:33:19','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#dde0ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"] After you create an account online, all you have to do is:\r\n<ol>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ol>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ol>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ol>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ol>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ol>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!! RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable cause.\r\n\r\n<strong>DROP OFF</strong>\r\n\r\nWhite bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:33:19','2016-02-02 01:33:19','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(227,1,'2016-02-02 01:39:35','2016-02-02 01:39:35','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 17</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this list with <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury, Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nNot only can these items be turned into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:39:35','2016-02-02 01:39:35','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(228,1,'2016-02-02 01:47:15','2016-02-02 01:47:15','','Labels-for-Education-UPC-trans','','inherit','open','closed','','labels-for-education-upc-trans','','','2016-02-02 01:47:24','2016-02-02 01:47:24','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png',0,'attachment','image/png',0),(229,1,'2016-02-02 01:49:06','2016-02-02 01:49:06','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen (that you can\'t give to a charity), EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:49:06','2016-02-02 01:49:06','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(230,1,'2016-02-02 01:50:07','2016-02-02 01:50:07','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!! Check out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Coke-Rewards-Help-School-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:50:07','2016-02-02 01:50:07','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(231,1,'2016-02-02 01:54:01','2016-02-02 01:54:01','','coke-rewards-product-list-320-trans','','inherit','open','closed','','coke-rewards-product-list-320-trans','','','2016-02-02 01:54:49','2016-02-02 01:54:49','',115,'http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png',0,'attachment','image/png',0),(232,1,'2016-02-02 01:54:55','2016-02-02 01:54:55','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:54:55','2016-02-02 01:54:55','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(233,1,'2016-02-02 01:56:17','2016-02-02 01:56:17','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Going to The Player\'s Championship?</h1>\r\n<strong>Get discounted tickets AND support FIE using our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without using the FIE promo code -- <strong>FLEMINGISLAND</strong>! :) TPC Sawgrass will be held May 10 to 16, 2016, in Ponte Vedra Beach, Fla.\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to FIE!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 01:56:17','2016-02-02 01:56:17','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(234,1,'2016-02-02 02:01:41','2016-02-02 02:01:41','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 02:01:41','2016-02-02 02:01:41','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(235,1,'2016-02-02 02:09:20','2016-02-02 02:09:20','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 02:09:20','2016-02-02 02:09:20','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(237,1,'2016-02-02 02:16:25','2016-02-02 02:16:25','<p>[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]</p><p>\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"</p><p>~ <b>Dr. Seuss</b></p><p>[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">Fundraising efforts</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]</p><p>Our Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]</p><p>If you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!</p><p>[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]</p><p>Laura Minervini<br /> Fundraising Lead<br /> <a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a></p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]</p><ul><li>Playground improvements</li><li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li><li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li><li>The BARB newsletter printing</li><li>Property enhancements</li><li>Spirit days</li><li>Fundraising (e.g., prizes and external administration)</li><li>Grants</li><li>Student lunch support</li><li>Community service projects (e.g., Angel Tree)</li><li>Emergency fund</li></ul><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>Get discounted tickets to the Player\'s Championship!</h1><h3>AND, support Fleming Island Elementary!</h3><p><strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong></p><p><strong>Use our promo code, FLEMINGISLAND!</strong></p><p>Chip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)</p><p><strong>Help us spread the word! Some ideas:</strong></p><ul><li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li><li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li></ul><p>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</p><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>Get a little hipsy at the Hula Dance!</h1><p><strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong></p><p>For those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.</p><p>Time to break out your Hawaiian shirts and dust off your grass skirts!</p><p>Our sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>Time for the Read-a-thon!</h1><p>Look for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!</p><p><strong>Important dates</strong></p><ul><li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li><li><strong>Feb. 16</strong> – Start logging those minutes!!!</li><li><strong>Feb. 23</strong> – Last day to log for prizes.</li><li><strong>Feb. 24</strong> – Turn in log sheet.</li></ul><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>Show you remember with your child\'s name in lights!</h1><p>We\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!</p><p>Print <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>Spirit Night</h1><p>We greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!</p><p><strong>NEXT SPIRIT NIGHT </strong></p><ul><li>March (date TBD)</li><li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li></ul><p>[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]</p><h1>The purchases that keep on giving</h1><p>Whether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!<br /> Check out all the ways we can help FIE. Thanks so much!</p><p>[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]</p><p>After you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:</p><ul><li>Buy any item you normally would from <strong>any</strong> store.</li><li>Take a picture of your receipt.</li><li>Shoparoo sends money to Fleming Island Elementary!</li><li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li></ul><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]</p><p>Each \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:</p><ul><li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li><li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li><li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li></ul><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]</p><p>By clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:</p><ul><li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li><li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li><li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li></ul><p><strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong></p><ol><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a><br /> </strong></li></ol><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]</p><p>Points donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.</p><p><strong>Here\'s how you can donate your My Coke Rewards:</strong></p><ul><li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li><li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li><li>Find Fleming Island Elementary.</li><li>Donate your points.</li></ul><p>Tweet for +3 status (and inspire your friends and family to donate too)!</p><p><strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]</p><p><strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong></p><p><strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!<br /> </strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong></p><p>These previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.</p><p><strong>DROP OFF<br /> </strong>White bins are located by the cafeteria parent pick-up area.</p><p>[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]</p>','Fundrasing','','publish','closed','closed','','fundrasing','','','2016-02-02 02:16:25','2016-02-02 02:16:25','',0,'http://www.fiepfa.org/et_pb_layout/fundrasing/',0,'et_pb_layout','',0),(238,1,'2016-02-02 02:45:31','2016-02-02 02:45:31','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"] If you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us! [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"] If interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"] Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nJulie Campbell\r\nVolunteer Officer\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Tracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Fast, easy and convenient, submit your hours by May 4, 2017, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong> [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n<p style=\"text-align: center;\">Sign up to our <a href=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\">newsletter</a> to be among the first to know!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"15\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health screenings\" title=\"Health screenings\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Little-boy-listening.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\r\n<p style=\"text-align: left;\"><strong>8:30 a.m. to 1:30 p.m. | Oct. 11 and 12\r\n</strong>It would be WONDERFUL to have at least eight volunteers each day to help our nurses test our children\'s vision, hearing, height and weight. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" target=\"_blank\">SIGN UP HERE!</a></strong></p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">fiepfa.org/fie-faculty-and-staff</a>)\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\nKathryn Bellin, School Nurse\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Parent Officer (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nCatherine Echevarria, PFA Publicity Officer/Historian\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','publish','closed','closed','','volunteers','','','2016-09-20 01:57:05','2016-09-20 01:57:05','',0,'http://www.fiepfa.org/?page_id=238',0,'page','',0),(240,1,'2016-02-02 02:39:02','2016-02-02 02:39:02','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Volunteers are invaluable\" heading=\"Volunteers are invaluable. \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790.jpg\"]\r\n\r\n\"Volunteers will get you through times of no money better than money will get you through times of no volunteers.\"\r\n\r\n~ <b>Ken Wyman</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 02:39:02','2016-02-02 02:39:02','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(241,1,'2016-02-02 02:40:34','2016-02-02 02:40:34','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"center\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Volunteers are invaluable\" heading=\"Volunteers are invaluable. \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790.jpg\"]\r\n\r\n\"Volunteers will get you through times of no money better than money will get you through times of no volunteers.\"\r\n\r\n~ <b>Ken Wyman</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 02:40:34','2016-02-02 02:40:34','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(242,1,'2016-02-02 02:41:32','2016-02-02 02:41:32','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"top_left\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Volunteers are invaluable\" heading=\"Volunteers are invaluable. \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790.jpg\"]\r\n\r\n\"Volunteers will get you through times of no money better than money will get you through times of no volunteers.\"\r\n\r\n~ <b>Ken Wyman</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 02:41:32','2016-02-02 02:41:32','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(244,1,'2016-02-02 02:45:31','2016-02-02 02:45:31','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"top_left\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Volunteers are invaluable\" heading=\"Volunteers are invaluable. \" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-500h.jpg\"]\r\n\r\n\"Volunteers will get you through times of no money better than money will get you through times of no volunteers.\"\r\n\r\n~ <b>Ken Wyman</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 02:45:31','2016-02-02 02:45:31','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(247,1,'2016-02-02 04:30:44','2016-02-02 04:30:44',' ','','','publish','closed','closed','','247','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=247',7,'nav_menu_item','',0),(250,1,'2016-02-02 04:49:29','2016-02-02 04:49:29','','this registration form','','inherit','open','closed','','fie-volunteer-reg-form','','','2016-02-02 04:49:43','2016-02-02 04:49:43','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf',0,'attachment','application/pdf',0),(251,1,'2016-02-02 04:54:36','2016-02-02 04:54:36','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-2.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" /][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<h3>Come join us!</h3>\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! All you need to do is complete<strong> <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" rel=\"\">this registration form</a></strong> (needed for a background check) and submit to Wanda Huntley-Naval at the front desk. When clear, Wanda alerts Christine Leon Vorst, our volunteer coordinator, who then sends a welcome packet and activity bulletins. From tweens to retirees  – there\'s something for anyone who\'d like to contribute. We very much look forward to welcoming you!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#1e73be\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Lead\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 04:54:36','2016-02-02 04:54:36','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(253,1,'2016-02-02 05:02:22','2016-02-02 05:02:22','','Volunteer-hands-1790-500','','inherit','open','closed','','volunteer-hands-1790-500','','','2016-02-02 05:02:42','2016-02-02 05:02:42','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg',0,'attachment','image/jpeg',0),(254,1,'2016-02-02 05:28:36','2016-02-02 05:28:36','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\n<h3>Come join us!</h3>\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees  – there\'s something for anyone who\'d like to contribute. We very much look forward to welcoming you!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#1e73be\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\n<p>If interested in volunteering, all you need to do is complete<strong> <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" rel=\"\">this registration form</a></strong> (needed for a background check) and submit to Wanda Huntley-Naval at the front desk. When clear, Wanda alerts Christine Leon Vorst, our volunteer coordinator, who then sends a welcome packet and activity bulletins.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#1e73be\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\n<p>Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\n<p>Christine Leon Vorst<br /> Volunteer Lead<br /> <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a></p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"off\" specialty=\"on\" admin_label=\"Section\" template_type=\"\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Handy documents</h1>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd9933\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#dd9933\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Please keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!</p>\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#1e73be\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#1e73be\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Please submit to Wanda Huntley-Naval at the front desk.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<p>Chock full of important info to guide volunteers at Fleming Island Elementary.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1><h3>AND, support Fleming Island Elementary!</h3><p><strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong></p><p><strong>Use our promo code, FLEMINGISLAND!</strong></p><p>Chip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)</p><p><strong>Help us spread the word! Some ideas:</strong></p><ul><li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li><li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li></ul><p>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</p>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get a little hipsy at the Hula Dance!</h1><p><strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong></p><p>For those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.</p><p>Time to break out your Hawaiian shirts and dust off your grass skirts!</p><p>Our sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Time for the Read-a-thon!</h1><p>Look for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!</p><p><strong>Important dates</strong></p><ul><li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li><li><strong>Feb. 16</strong> – Start logging those minutes!!!</li><li><strong>Feb. 23</strong> – Last day to log for prizes.</li><li><strong>Feb. 24</strong> – Turn in log sheet.</li></ul>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Show you remember with your child\'s name in lights!</h1><p>We\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!</p><p>Print <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Spirit Night</h1><p>We greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!</p><p><strong>NEXT SPIRIT NIGHT </strong></p><ul><li>March (date TBD)</li><li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li></ul>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>The purchases that keep on giving</h1><p>Whether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!<br /> Check out all the ways we can help FIE. Thanks so much!</p>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\n<p>After you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:</p><ul><li>Buy any item you normally would from <strong>any</strong> store.</li><li>Take a picture of your receipt.</li><li>Shoparoo sends money to Fleming Island Elementary!</li><li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li></ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\n<p>Each \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:</p><ul><li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li><li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li><li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li></ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\n<p>By clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:</p><ul><li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li><li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li><li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li></ul><p><strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong></p><ol><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li><li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a><br /> </strong></li></ol>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\n<p>Points donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.</p><p><strong>Here\'s how you can donate your My Coke Rewards:</strong></p><ul><li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li><li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li><li>Find Fleming Island Elementary.</li><li>Donate your points.</li></ul><p>Tweet for +3 status (and inspire your friends and family to donate too)!</p><p><strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<p><strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong></p><p><strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!<br /> </strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong></p><p>These previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.</p><p><strong>DROP OFF<br /> </strong>White bins are located by the cafeteria parent pick-up area.</p>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 05:28:36','2016-02-02 05:28:36','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(255,1,'2016-02-02 06:03:09','2016-02-02 06:03:09','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00b7cc\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0066bf\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0066bf\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd9933\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#dd9933\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0066bf\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0066bf\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:03:09','2016-02-02 06:03:09','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(256,1,'2016-02-02 06:04:59','2016-02-02 06:04:59','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00b7cc\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd9933\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#dd9933\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:04:59','2016-02-02 06:04:59','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(257,1,'2016-02-02 06:09:43','2016-02-02 06:09:43','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#e07833\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#e07833\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:09:43','2016-02-02 06:09:43','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(258,1,'2016-02-02 06:11:12','2016-02-02 06:11:12','','FIE Volunteer Log','','inherit','open','closed','','fie-volunteer-log','','','2016-02-02 06:11:12','2016-02-02 06:11:12','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf',0,'attachment','application/pdf',0),(259,1,'2016-02-02 06:11:52','2016-02-02 06:11:52','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#e07833\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#e07833\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:11:52','2016-02-02 06:11:52','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(260,1,'2016-02-02 06:13:30','2016-02-02 06:13:30','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#e07833\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#e07833\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:13:30','2016-02-02 06:13:30','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(261,1,'2016-02-02 06:14:49','2016-02-02 06:14:49','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"1_4\"][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"Row\"][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#e07833\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#e07833\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][et_pb_column_inner type=\"1_3\" saved_specialty_column_type=\"3_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:14:49','2016-02-02 06:14:49','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(262,1,'2016-02-02 06:25:58','2016-02-02 06:25:58','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][et_pb_text admin_label=\"Handy documents\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Handy documents</h1>\r\n<em>(Click on the icon of choice.)</em>\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\"]\r\n\r\nIf interested in volunteering, please complete and return the registration form below for a background check. When clear, our volunteer coordinator will send you a welcome packet and activity bulletins.\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#e07833\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#e07833\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Feel free to enter your hours via the computer in the front office, e-mail your hours to <a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\"><strong>Christine Leon Vorst</strong> </a>or leave your log in her mailbox in the front office. Thanks so much!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][et_pb_blurb admin_label=\"Vol reg form\" title=\"Volunteer Registration Form\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%210%%\" icon_color=\"#0015ff\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#0015ff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease submit to Wanda Huntley-Naval at the front desk.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\"]\r\n\r\nChock full of important info to guide volunteers at Fleming Island Elementary.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 06:25:58','2016-02-02 06:25:58','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(266,1,'2016-02-02 07:02:26','2016-02-02 07:02:26','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] For handy documents, please click on the respective icon (e.g., pen, clock, book) when applicable. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the county\'s registration form for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Directions provided on log.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in! </a>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][et_pb_column type=\"1_3\"][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 07:02:26','2016-02-02 07:02:26','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(269,1,'2016-02-02 07:34:15','2016-02-02 07:34:15','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] For handy documents, please click on the respective icon (e.g., pen, clock, book) when applicable. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the county\'s registration form for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Directions provided on log.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in! </a>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>. A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 07:34:15','2016-02-02 07:34:15','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(270,1,'2016-02-02 07:42:02','2016-02-02 07:42:02','','Boy-camera-320-225','','inherit','open','closed','','boy-camera-320-225','','','2016-02-02 07:42:25','2016-02-02 07:42:25','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg',0,'attachment','image/jpeg',0),(271,1,'2016-02-02 07:42:05','2016-02-02 07:42:05','','brownies-cookies-320-225','','inherit','open','closed','','brownies-cookies-320-225','','','2016-02-02 07:42:40','2016-02-02 07:42:40','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg',0,'attachment','image/jpeg',0),(272,1,'2016-02-02 07:42:06','2016-02-02 07:42:06','','children-running-silhouettex320-225','','inherit','open','closed','','children-running-silhouettex320-225','','','2016-02-02 07:42:14','2016-02-02 07:42:14','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg',0,'attachment','image/jpeg',0),(273,1,'2016-02-02 07:42:46','2016-02-02 07:42:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] For handy documents, please click on the respective icon (e.g., pen, clock, book) when applicable. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the county\'s registration form for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Directions provided on log.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>. A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 07:42:46','2016-02-02 07:42:46','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(274,1,'2016-02-02 07:45:13','2016-02-02 07:45:13','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#00abd6\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] For handy documents, please click on the respective icon (e.g., pen, clock, book) when applicable. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nPlease keep track of your volunteer hours, which help us win awards and grants. Directions provided on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 07:45:13','2016-02-02 07:45:13','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(275,1,'2016-02-02 07:54:01','2016-02-02 07:54:01','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, also click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 07:54:01','2016-02-02 07:54:01','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(276,1,'2016-02-02 08:13:22','2016-02-02 08:13:22','','Kid-compuer-Money-FIE-320-225','','inherit','open','closed','','kid-compuer-money-fie-320-225','','','2016-02-02 08:13:36','2016-02-02 08:13:36','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg',0,'attachment','image/jpeg',0),(277,1,'2016-02-02 08:29:01','2016-02-02 08:29:01','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all UPC code redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 08:29:01','2016-02-02 08:29:01','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(278,1,'2016-02-02 08:34:01','2016-02-02 08:34:01','','Reading-imagination-boy-320-225','','inherit','open','closed','','reading-imagination-boy-320-225','','','2016-02-02 08:34:10','2016-02-02 08:34:10','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg',0,'attachment','image/jpeg',0),(279,1,'2016-02-02 08:46:09','2016-02-02 08:46:09','','Pizza-girls-320-225','','inherit','open','closed','','pizza-girls-320-225','','','2016-02-02 08:46:19','2016-02-02 08:46:19','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg',0,'attachment','image/jpeg',0),(280,1,'2016-02-02 08:49:59','2016-02-02 08:49:59','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos/affixing adhesives (after an occasional fall).\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a> and <a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 08:49:59','2016-02-02 08:49:59','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (281,1,'2016-02-02 08:53:08','2016-02-02 08:53:08','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a> and <a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 08:53:08','2016-02-02 08:53:08','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(282,1,'2016-02-02 09:04:10','2016-02-02 09:04:10','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 09:04:10','2016-02-02 09:04:10','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(283,1,'2016-02-02 09:13:42','2016-02-02 09:13:42','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, volunteer coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, volunteer coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 09:13:42','2016-02-02 09:13:42','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(284,1,'2016-02-02 09:16:29','2016-02-02 09:16:29','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 09:16:29','2016-02-02 09:16:29','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(286,1,'2016-02-02 09:38:54','2016-02-02 09:38:54','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We are the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 09:38:54','2016-02-02 09:38:54','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(287,1,'2016-02-02 09:41:02','2016-02-02 09:41:02','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We are the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 09:41:02','2016-02-02 09:41:02','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(288,1,'2016-02-02 09:42:33','2016-02-02 09:42:33','','Stingrays-Reef-1790-488','','inherit','open','closed','','stingrays-reef-1790-488','','','2016-02-02 09:42:42','2016-02-02 09:42:42','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg',0,'attachment','image/jpeg',0),(289,1,'2016-02-02 09:46:19','2016-02-02 09:46:19','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We are the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 09:46:19','2016-02-02 09:46:19','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(290,1,'2016-02-02 09:47:18','2016-02-02 09:47:18','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>What We Offer</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\"] [et_pb_tab title=\"Overview\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Mission Statement\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab][et_pb_tab title=\"Culture\"]Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante.[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#f4f4f4\"] [et_pb_counter percent=\"80\"]Brand Consulting[/et_pb_counter][et_pb_counter percent=\"45\"]Marketing Campaigns [/et_pb_counter][et_pb_counter percent=\"95\"]Custom Website Design[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 09:47:18','2016-02-02 09:47:18','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(291,1,'2016-02-02 09:55:11','2016-02-02 09:55:11','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Tabs\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement our enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"50\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Image\" src=\"http://elegantthemesimages.com/images/premade/d2-placeholder-510px.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" animation=\"left\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Work Flow</h1>\r\n[/et_pb_text][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Upsum\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#ffffff\" use_circle=\"on\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#212a34\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.elegantthemesimages.com/images/premade/d2-placeholder-1920.png\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" height=\"20\"] [/et_pb_divider][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#2ea3f2\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" image=\"http://elegantthemesimages.com/images/premade/d2-300px.png\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h2>Frequently Asked Questions</h2>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna. Morbi scelerisque semper congue. Donec vitae congue quam. Pellentesque convallis est a eros porta, ut porttitor magna convallis.\r\n\r\nDonec quis felis imperdiet, vestibulum est ut, pulvinar dolor. Mauris laoreet varius sem, tempus congue nibh elementum facilisis. Aliquam ut odio risus. Mauris consectetur mi et ante aliquam, eget posuere urna semper. Vestibulum vestibulum rhoncus enim, id iaculis eros commodo non. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_accordion admin_label=\"Accordion\"] [et_pb_accordion_item title=\"What kind of clients do you work with?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet.[/et_pb_accordion_item][et_pb_accordion_item title=\"What is your turn around time?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item][et_pb_accordion_item title=\"Do you have an affiliate program?\"]Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc aliquam justo et nibh venenatis aliquet. Morbi mollis mollis pellentesque. Aenean vitae erat velit. Maecenas urna sapien, dignissim a augue vitae, porttitor luctus urna.[/et_pb_accordion_item] [/et_pb_accordion][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#eaeaea\" show_divider=\"on\" height=\"30\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Email\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Don\'t Be Shy\"] Drop us a line anytime, and one of our customer service reps will respond to you as soon as possible [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 09:55:11','2016-02-02 09:55:11','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(292,1,'2016-02-02 10:02:51','2016-02-02 10:02:51','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Join our e-community!\" url_new_window=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nHelp us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events and fundraising efforts.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:02:51','2016-02-02 10:02:51','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(293,1,'2016-02-02 10:11:34','2016-02-02 10:11:34','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%302%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\nHelp us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail to any third party.\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:11:34','2016-02-02 10:11:34','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(294,1,'2016-02-02 10:12:50','2016-02-02 10:12:50','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Blurb\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%302%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"right\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:12:50','2016-02-02 10:12:50','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(295,1,'2016-02-02 10:20:36','2016-02-02 10:20:36','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:20:36','2016-02-02 10:20:36','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(296,1,'2016-02-02 10:23:15','2016-02-02 10:23:15','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h2>Parent Faculty Association</h2>\r\n<h4>What we stand for</h4>\r\n\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p><p> </p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:23:15','2016-02-02 10:23:15','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(297,1,'2016-02-02 10:48:20','2016-02-02 10:48:20','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Nomination-Form-20160507-1PP.pdf\" target=\"_blank\">consider joining </a></strong>or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>TBD</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Positions-20160507-1PP.pdf\" target=\"_blank\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','publish','closed','closed','','about','','','2016-05-17 00:38:12','2016-05-17 00:38:12','',0,'http://www.fiepfa.org/?page_id=297',0,'page','',0),(298,1,'2016-02-02 10:24:13','2016-02-02 10:24:13','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"]\r\n\r\n[et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\n<h1>Our Story</h1>\r\n<p>Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"]\r\n\r\n[et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter]\r\n\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:24:13','2016-02-02 10:24:13','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(299,1,'2016-02-02 10:34:21','2016-02-02 10:34:21','','Kids-Thumbs-up-520','','inherit','open','closed','','kids-thumbs-up-520','','','2016-02-02 10:34:34','2016-02-02 10:34:34','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg',0,'attachment','image/jpeg',0),(300,1,'2016-02-02 10:35:48','2016-02-02 10:35:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nOur Company Tagline lorem ipsum dolor sit amet.\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\n<h1>Our Story</h1>\r\n<p>Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"]\r\n\r\n[et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter]\r\n\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:35:48','2016-02-02 10:35:48','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(301,1,'2016-02-02 10:36:13','2016-02-02 10:36:13','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"]\r\n\r\nCurabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n\r\n<h1>Our Story</h1>\r\n<p>Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"]\r\n\r\n[et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter]\r\n\r\n[/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"]\r\n\r\nAenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc.\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:36:13','2016-02-02 10:36:13','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(302,1,'2016-02-02 10:46:17','2016-02-02 10:46:17','','Sept. 1','','inherit','open','closed','','fie-pfa-minutes-201509','','','2016-02-02 10:46:38','2016-02-02 10:46:38','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(303,1,'2016-02-02 10:46:18','2016-02-02 10:46:18','','Oct. 6','','inherit','open','closed','','fie-pfa-minutes-201510','','','2016-02-13 09:01:41','2016-02-13 09:01:41','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(304,1,'2016-02-02 10:46:19','2016-02-02 10:46:19','','Nov. 3','','inherit','open','closed','','fie-pfa-minutes-201511','','','2016-02-13 09:01:18','2016-02-13 09:01:18','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(305,1,'2016-02-02 10:48:20','2016-02-02 10:48:20','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"] [et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:48:20','2016-02-02 10:48:20','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(307,1,'2016-02-02 10:49:41','2016-02-02 10:49:41','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"][/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:49:41','2016-02-02 10:49:41','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(308,1,'2016-02-02 10:50:47','2016-02-02 10:50:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"][/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:50:47','2016-02-02 10:50:47','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(309,1,'2016-02-02 10:52:50','2016-02-02 10:52:50','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 10:52:50','2016-02-02 10:52:50','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(310,1,'2016-02-02 10:54:13','2016-02-02 10:54:13','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"CFCU FL\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/CFCUFL-Logo-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225-1.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tropical Smoothie\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','publish','closed','closed','','corporate-partners','','','2016-02-07 19:58:08','2016-02-07 19:58:08','',0,'http://www.fiepfa.org/?page_id=310',0,'page','',0),(311,1,'2016-02-02 10:54:13','2016-02-02 10:54:13','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\"] [et_pb_slide heading=\"Our Company\" button_text=\"Learn More\" button_link=\"#\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\"]Our Company Tagline lorem ipsum dolor sit amet.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"A Digital Agency\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Forward Thinking\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Problem Solvers\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Customer Support\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\"] Curabitur quis dui volutpat, cursus eros elut commodo elit cum sociis natoque penatibus [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\"]\r\n<h1>Our Story</h1>\r\nCurabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut id est euismod, rhoncus nunc quis, lobortis turpis. Tam sociis natoque. Curabitur quis dui volutpat, cursus eros ut, commodo elit. Cum sociis natoque penatibus et magnis dis parturient montes. [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_counters admin_label=\"Bar Counters\" background_layout=\"light\" background_color=\"#dddddd\" bar_bg_color=\"#2ea3f2\"] [et_pb_counter percent=\"80\"]Brand Strategy[/et_pb_counter][et_pb_counter percent=\"60\"]Internet Marketing[/et_pb_counter][et_pb_counter percent=\"50\"]App Development[/et_pb_counter][et_pb_counter percent=\"90\"]Customer Happiness[/et_pb_counter] [/et_pb_counters][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Team Member 1\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"light\" facebook_url=\"#\" twitter_url=\"#\" google_url=\"#\" linkedin_url=\"#\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section]','Corporate Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 10:54:13','2016-02-02 10:54:13','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(313,1,'2016-02-02 10:55:27','2016-02-02 10:55:27','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f7f7f7\" inner_shadow=\"on\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR LATEST WORK</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_portfolio admin_label=\"Portfolio\" fullwidth=\"off\" posts_number=\"8\" show_title=\"on\" show_categories=\"off\" show_pagination=\"off\" background_layout=\"light\"] [/et_pb_portfolio][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Portfolio\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\"]\r\n<h1>MEET THE CREW</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][et_pb_team_member admin_label=\"Team Member\" name=\"Lorem Ipsum\" position=\"Company Role\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full Profiles\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"center\"] [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"#\" button_text=\"Full List\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"light\" text_orientation=\"center\"] [/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" background_color=\"#2ea3f2\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_signup admin_label=\"Subscribe\" provider=\"mailchimp\" himp_list=\"none\" aweber_list=\"3423452\" button_text=\"Sign Me Up\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Connect With Us\"] Aenean consectetur ipsum ante, vel egestas enim tincidunt quis. Pellentesque vitae congue neque, vel mattis ante. In vitae tempus nunc. Etiam adipiscing enim sed condimentum ultrices. Cras rutrum blandit sem, molestie consequat erat luctus vel. Cras nunc est, laoreet sit amet ligula et, eleifend commodo dui. Vivamus id blandit nisi, eu mattis odio. Nulla facilisi. Aenean in mi odio. Etiam adipiscing enim sed condimentum ultrices. [/et_pb_signup][/et_pb_column][/et_pb_row][/et_pb_section]','Corporate Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 10:55:27','2016-02-02 10:55:27','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(314,1,'2016-02-02 10:56:50','2016-02-02 10:56:50',' ','','','publish','closed','closed','','314','','','2016-04-21 20:51:44','2016-04-21 20:51:44','',0,'http://www.fiepfa.org/?p=314',13,'nav_menu_item','',0),(315,1,'2016-02-02 10:56:50','2016-02-02 10:56:50','','Info','','publish','closed','closed','','315','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=315',1,'nav_menu_item','',0),(316,1,'2016-02-02 10:59:41','2016-02-02 10:59:41','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Join e-community','','publish','closed','closed','','join-e-community','','','2016-02-02 15:42:09','2016-02-02 15:42:09','',0,'http://www.fiepfa.org/et_pb_layout/join-e-community/',0,'et_pb_layout','',0),(317,1,'2016-02-02 10:59:57','2016-02-02 10:59:57','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Parent Faculty Association</h2>\r\n<h4>What we stand for</h4>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" global_module=\"316\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 10:59:57','2016-02-02 10:59:57','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(318,1,'2016-02-02 11:01:09','2016-02-02 11:01:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 11:01:09','2016-02-02 11:01:09','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(319,1,'2016-02-02 11:01:26','2016-02-02 11:01:26','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-02 11:01:26','2016-02-02 11:01:26','',297,'http://www.fiepfa.org/2016/02/02/297-revision-v1/',0,'revision','',0),(320,1,'2016-02-02 11:02:24','2016-02-02 11:02:24','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 11:02:24','2016-02-02 11:02:24','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(321,1,'2016-02-02 11:02:50','2016-02-02 11:02:50','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 11:02:50','2016-02-02 11:02:50','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(322,1,'2016-02-02 11:04:24','2016-02-02 11:04:24','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE TEAM</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 11:04:24','2016-02-02 11:04:24','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(323,1,'2016-02-02 11:05:55','2016-02-02 11:05:55','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., The BARB)\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://elegantthemesimages.com/images/premade/d2-placeholder-320px.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 11:05:55','2016-02-02 11:05:55','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(324,1,'2016-02-02 11:06:42','2016-02-02 11:06:42','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Person\" animation=\"off\" background_layout=\"light\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 11:06:42','2016-02-02 11:06:42','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(325,1,'2016-02-02 11:07:24','2016-02-02 11:07:24','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get a little hipsy at the Hula Dance!</h1>\r\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\r\n\r\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\r\n\r\nTime to break out your Hawaiian shirts and dust off your grass skirts!\r\n\r\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-02 11:07:24','2016-02-02 11:07:24','',115,'http://www.fiepfa.org/2016/02/02/115-revision-v1/',0,'revision','',0),(326,1,'2016-02-02 11:08:13','2016-02-02 11:08:13','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help pad the grass and eliminate standing water.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding, weed control and drainage (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-02 11:08:13','2016-02-02 11:08:13','',103,'http://www.fiepfa.org/2016/02/02/103-revision-v1/',0,'revision','',0),(327,1,'2016-02-02 11:08:51','2016-02-02 11:08:51','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-02-02 11:08:51','2016-02-02 11:08:51','',111,'http://www.fiepfa.org/2016/02/02/111-revision-v1/',0,'revision','',0),(328,1,'2016-02-02 11:10:00','2016-02-02 11:10:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Corporate Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 11:10:00','2016-02-02 11:10:00','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(329,1,'2016-02-02 11:10:48','2016-02-02 11:10:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"off\"] [et_pb_slide heading=\"WE ARE A CREATIVE AGENCY\" button_text=\"Our Work\" button_link=\"http://elegantthemes.com/preview/Divi2/fullwidth-grid/\" background_image=\"http://elegantthemesimages.com/images/premade/d2-placeholder-1920.jpg\" background_color=\"#ffffff\" alignment=\"center\" background_layout=\"dark\" /] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-mobile.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-export.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-layouts.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Blurb\" title=\"Lorem Ipsum\" url_new_window=\"off\" image=\"http://elegantthemesimages.com/images/premade/builder-blurbs-commerce.jpg\" animation=\"top\" background_layout=\"light\" text_orientation=\"center\" use_icon=\"off\" icon_color=\"#108bf5\" use_circle=\"off\" circle_color=\"#108bf5\" use_circle_border=\"off\" circle_border_color=\"#108bf5\" icon_placement=\"top\"] Divi will change the way you build websites forever. The advanced page builder makes it possible to build truly dynamic pages without learning code. [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\"]\r\n<h1>OUR CLIENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.elegantthemesimages.com/images/premade/et-logo.png\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 11:10:48','2016-02-02 11:10:48','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(330,2,'2016-02-02 11:21:02','2016-02-02 11:21:02','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | February 2016</a></strong>','The BARB Newsletter | February 2016','','publish','open','open','','the-barb-newsletter-february-2016','','','2016-02-05 08:42:27','2016-02-05 08:42:27','',0,'http://www.fiepfa.org/?p=330',0,'post','',0),(331,1,'2016-02-02 11:17:39','2016-02-02 11:17:39','','The BARB Newsletter | November 2015','','inherit','open','closed','','fie-barb-201511','','','2016-02-02 11:25:06','2016-02-02 11:25:06','',330,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201511.pdf',0,'attachment','application/pdf',0),(332,1,'2016-02-02 11:17:41','2016-02-02 11:17:41','','FIE-BARB-201512-201601','','inherit','open','closed','','fie-barb-201512-201601','','','2016-02-02 11:17:41','2016-02-02 11:17:41','',330,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201512-201601.pdf',0,'attachment','application/pdf',0),(333,1,'2016-02-02 11:17:43','2016-02-02 11:17:43','','','','inherit','open','closed','','fie-barb-201602','','','2016-02-02 11:20:19','2016-02-02 11:20:19','',330,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf',0,'attachment','application/pdf',0),(334,1,'2016-02-02 11:21:02','2016-02-02 11:21:02','To view, click the link below:\r\n\r\n<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf\" rel=\"\">The BARB Newsletter | February 2016</a></strong>','The BARB Newsletter | February 2016','','inherit','closed','closed','','330-revision-v1','','','2016-02-02 11:21:02','2016-02-02 11:21:02','',330,'http://www.fiepfa.org/2016/02/02/330-revision-v1/',0,'revision','',0),(335,1,'2016-02-02 11:21:21','2016-02-02 11:21:21','To view, click the link below:\r\n\r\n<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf\" rel=\"\">The BARB Newsletter | February 2016</a></strong>','The BARB Newsletter | February 2016','','inherit','closed','closed','','330-autosave-v1','','','2016-02-02 11:21:21','2016-02-02 11:21:21','',330,'http://www.fiepfa.org/2016/02/02/330-autosave-v1/',0,'revision','',0),(336,1,'2016-02-02 11:21:58','2016-02-02 11:21:58','To view, click the link below:\r\n\r\n<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | February 2016</a></strong>','The BARB Newsletter | February 2016','','inherit','closed','closed','','330-revision-v1','','','2016-02-02 11:21:58','2016-02-02 11:21:58','',330,'http://www.fiepfa.org/2016/02/02/330-revision-v1/',0,'revision','',0),(337,2,'2016-02-02 11:23:59','2016-02-02 11:23:59','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201512-201601.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | December 2015 and January 2016</a></strong>','The BARB Newsletter | December 2015 and January 2016','','publish','open','open','','the-barb-newsletter-december-2015-and-january-2016','','','2016-02-05 08:43:00','2016-02-05 08:43:00','',0,'http://www.fiepfa.org/?p=337',0,'post','',0),(338,1,'2016-02-02 11:23:59','2016-02-02 11:23:59','To view, click the link below:\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201512-201601.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | December 2015 and January 2016</a>','The BARB Newsletter | December 2015 and January 2016','','inherit','closed','closed','','337-revision-v1','','','2016-02-02 11:23:59','2016-02-02 11:23:59','',337,'http://www.fiepfa.org/2016/02/02/337-revision-v1/',0,'revision','',0),(339,1,'2016-02-02 11:24:13','2016-02-02 11:24:13','To view, click the link below:\r\n<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201512-201601.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | December 2015 and January 2016</a></strong>','The BARB Newsletter | December 2015 and January 2016','','inherit','closed','closed','','337-revision-v1','','','2016-02-02 11:24:13','2016-02-02 11:24:13','',337,'http://www.fiepfa.org/2016/02/02/337-revision-v1/',0,'revision','',0),(340,2,'2016-02-02 11:25:24','2016-02-02 11:25:24','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201511.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | November 2015</a></strong>','The BARB Newsletter | November 2015','','publish','open','open','','the-barb-newsletter-november-2015','','','2016-02-05 08:43:45','2016-02-05 08:43:45','',0,'http://www.fiepfa.org/?p=340',0,'post','',0),(341,1,'2016-02-02 11:25:24','2016-02-02 11:25:24','To view, click the link below:\r\n<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201511.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | November 2015</a></strong>','The BARB Newsletter | November 2015','','inherit','closed','closed','','340-revision-v1','','','2016-02-02 11:25:24','2016-02-02 11:25:24','',340,'http://www.fiepfa.org/2016/02/02/340-revision-v1/',0,'revision','',0),(344,2,'2016-02-02 14:45:39','2016-02-02 14:45:39','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://fie.oneclay.net/directory.html&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;9600px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','publish','closed','closed','','fie-faculty-and-staff','','','2016-03-02 15:29:13','2016-03-02 15:29:13','',0,'http://www.fiepfa.org/?page_id=344',0,'page','',0),(345,2,'2016-02-02 14:28:51','2016-02-02 14:28:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n[iframe width=\"640\" height=\"480\" src=\" http://fie.oneclay.net/staff-and-faculty.html\"]\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"][iframe width=\"640\" height=\"480\" src=\" http://fie.oneclay.net/staff-and-faculty.html\"][/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:28:51','2016-02-02 14:28:51','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(346,2,'2016-02-02 14:39:51','2016-02-02 14:39:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1200px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:39:51','2016-02-02 14:39:51','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(347,2,'2016-02-02 14:40:31','2016-02-02 14:40:31','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:40:31','2016-02-02 14:40:31','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(348,2,'2016-02-02 14:41:33','2016-02-02 14:41:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"3000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:41:33','2016-02-02 14:41:33','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(349,2,'2016-02-02 14:42:25','2016-02-02 14:42:25','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"10000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:42:25','2016-02-02 14:42:25','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(350,2,'2016-02-02 14:42:56','2016-02-02 14:42:56','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"7000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:42:56','2016-02-02 14:42:56','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(351,2,'2016-02-02 14:43:21','2016-02-02 14:43:21','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8500px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:43:21','2016-02-02 14:43:21','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(352,2,'2016-02-02 14:44:00','2016-02-02 14:44:00','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Administrator Contact Info and Class Sites','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:44:00','2016-02-02 14:44:00','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(353,2,'2016-02-02 14:46:30','2016-02-02 14:46:30','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:46:30','2016-02-02 14:46:30','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(354,2,'2016-02-02 14:48:16','2016-02-02 14:48:16','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','inherit','closed','closed','','344-revision-v1','','','2016-02-02 14:48:16','2016-02-02 14:48:16','',344,'http://www.fiepfa.org/2016/02/02/344-revision-v1/',0,'revision','',0),(355,2,'2016-02-02 14:48:37','2016-02-02 14:48:37','<p>[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/staff-and-faculty.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]</p><p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p><p>[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]</p>','iframe','','publish','closed','closed','','iframe','','','2016-02-02 14:48:37','2016-02-02 14:48:37','',0,'http://www.fiepfa.org/et_pb_layout/iframe/',0,'et_pb_layout','',0),(356,2,'2016-02-02 14:52:25','2016-02-02 14:52:25','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Please click on your calendar of choice (buttons below.)</h1>\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">After your selected calendar loads, click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','publish','closed','closed','','calendars','','','2016-03-02 15:10:01','2016-03-02 15:10:01','',0,'http://www.fiepfa.org/?page_id=356',0,'page','',0),(357,2,'2016-02-02 14:49:45','2016-02-02 14:49:45','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-02 14:49:45','2016-02-02 14:49:45','',356,'http://www.fiepfa.org/2016/02/02/356-revision-v1/',0,'revision','',0),(358,2,'2016-02-02 14:50:08','2016-02-02 14:50:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-02 14:50:08','2016-02-02 14:50:08','',356,'http://www.fiepfa.org/2016/02/02/356-revision-v1/',0,'revision','',0),(359,2,'2016-02-02 14:50:23','2016-02-02 14:50:23','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-02 14:50:23','2016-02-02 14:50:23','',356,'http://www.fiepfa.org/2016/02/02/356-revision-v1/',0,'revision','',0),(360,2,'2016-02-02 14:52:25','2016-02-02 14:52:25','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Place your cursor over the calendar and right click. Select \"Print.\"</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-02 14:52:25','2016-02-02 14:52:25','',356,'http://www.fiepfa.org/2016/02/02/356-revision-v1/',0,'revision','',0),(361,2,'2016-02-02 14:53:09','2016-02-02 14:53:09','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Place your cursor over the calendar and right click. Select \"Print.\"</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-autosave-v1','','','2016-02-02 14:53:09','2016-02-02 14:53:09','',356,'http://www.fiepfa.org/2016/02/02/356-autosave-v1/',0,'revision','',0),(362,2,'2016-02-02 14:52:51','2016-02-02 14:52:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Place your cursor over the calendar and right click. Select \"Print.\"</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-02 14:52:51','2016-02-02 14:52:51','',356,'http://www.fiepfa.org/2016/02/02/356-revision-v1/',0,'revision','',0),(364,2,'2016-02-02 15:18:28','2016-02-02 15:18:28','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 15:18:28','2016-02-02 15:18:28','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(366,2,'2016-02-02 15:29:03','2016-02-02 15:29:03','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more.\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][et_pb_button admin_label=\"News button\" button_url=\"http://www.fiepfa.org/news-and-events/\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 15:29:03','2016-02-02 15:29:03','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(367,2,'2016-02-02 15:29:51','2016-02-02 15:29:51','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][et_pb_button admin_label=\"News button\" button_url=\"http://www.fiepfa.org/news-and-events/\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 15:29:51','2016-02-02 15:29:51','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(368,2,'2016-02-02 15:35:02','2016-02-02 15:35:02','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][et_pb_button admin_label=\"News button\" button_url=\"http://www.fiepfa.org/news-and-events/\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 15:35:02','2016-02-02 15:35:02','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(369,2,'2016-02-02 16:31:39','2016-02-02 16:31:39','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\n<p>Welcome to our new cove.</p>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\n<br>\r\n<br>\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-autosave-v1','','','2016-02-02 16:31:39','2016-02-02 16:31:39','',83,'http://www.fiepfa.org/2016/02/02/83-autosave-v1/',0,'revision','',0),(370,2,'2016-02-02 15:38:15','2016-02-02 15:38:15','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"News and events\" title=\"News and events\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://www.fiepfa.org/news-and-events/\"] [/et_pb_blurb][et_pb_button admin_label=\"News button\" button_url=\"http://www.fiepfa.org/news-and-events/\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>What we stand for</h2>\r\n[/et_pb_text][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"#bfcaff\" inactive_tab_background_color=\"#ffffff\" background_color=\"#f4f4f4\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 15:38:15','2016-02-02 15:38:15','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(371,2,'2016-02-02 15:40:12','2016-02-02 15:40:12','[et_pb_blurb admin_label=\"Blurb\" saved_tabs=\"all\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" template_type=\"module\"]\n\n\n\n[/et_pb_blurb]','Blurb icon sized right','','publish','closed','closed','','blurb-icon-sized-right','','','2016-02-02 15:40:12','2016-02-02 15:40:12','',0,'http://www.fiepfa.org/et_pb_layout/blurb-icon-sized-right/',0,'et_pb_layout','',0),(372,2,'2016-02-02 15:40:30','2016-02-02 15:40:30','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Join e-community','','inherit','closed','closed','','316-revision-v1','','','2016-02-02 15:40:30','2016-02-02 15:40:30','',316,'http://www.fiepfa.org/2016/02/02/316-revision-v1/',0,'revision','',0),(373,2,'2016-02-02 15:40:33','2016-02-02 15:40:33','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Join e-community','','inherit','closed','closed','','316-revision-v1','','','2016-02-02 15:40:33','2016-02-02 15:40:33','',316,'http://www.fiepfa.org/2016/02/02/316-revision-v1/',0,'revision','',0),(374,2,'2016-02-02 15:40:56','2016-02-02 15:40:56','[et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>[icon name=icon_document]</p>\n\n[/et_pb_text]','Blurb icon perfect size','','publish','closed','closed','','blurb-icon-perfect-size','','','2016-02-02 15:40:56','2016-02-02 15:40:56','',0,'http://www.fiepfa.org/et_pb_layout/blurb-icon-perfect-size/',0,'et_pb_layout','',0),(375,2,'2016-02-02 15:42:06','2016-02-02 15:42:06','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Join e-community','','inherit','closed','closed','','316-revision-v1','','','2016-02-02 15:42:06','2016-02-02 15:42:06','',316,'http://www.fiepfa.org/2016/02/02/316-revision-v1/',0,'revision','',0),(376,2,'2016-02-02 15:42:09','2016-02-02 15:42:09','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\n\n[icon name=icon_document]\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Join e-community','','inherit','closed','closed','','316-revision-v1','','','2016-02-02 15:42:09','2016-02-02 15:42:09','',316,'http://www.fiepfa.org/2016/02/02/316-revision-v1/',0,'revision','',0),(377,2,'2016-02-02 16:09:09','2016-02-02 16:09:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"#dde0ff\" inactive_tab_background_color=\"#ffffff\" background_color=\"#91f0fc\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>How we navigate</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"compass icon\" global_parent=\"316\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_compass]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:09:09','2016-02-02 16:09:09','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(378,2,'2016-02-02 16:10:42','2016-02-02 16:10:42','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"#1e73be\" inactive_tab_background_color=\"#ffffff\" background_color=\"#91f0fc\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#c8ec41\" text_font_size=\"32\"]\r\n\r\n<h1>How we navigate</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"compass icon\" global_parent=\"316\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\" text_text_color=\"#c8ec41\"]\r\n\r\n[icon name=icon_compass]\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:10:42','2016-02-02 16:10:42','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(379,2,'2016-02-02 16:17:11','2016-02-02 16:17:11','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#c8ec41\" text_font_size=\"49\" text_line_height=\"1.6em\" text_font=\"||on||\"]\r\n\r\n<h1>How we navigate</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:17:11','2016-02-02 16:17:11','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(380,2,'2016-02-02 16:21:57','2016-02-02 16:21:57','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\n<br>\r\n<br>\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:21:57','2016-02-02 16:21:57','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(381,2,'2016-02-02 16:22:22','2016-02-02 16:22:22','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"off\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\n<br>\r\n<br>\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:22:22','2016-02-02 16:22:22','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(382,2,'2016-02-02 16:24:14','2016-02-02 16:24:14','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" button_link=\"#\" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\"]<p>Welcome to our new cove.</p>[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\n<br>\r\n<br>\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:24:14','2016-02-02 16:24:14','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(383,2,'2016-02-02 16:31:29','2016-02-02 16:31:29','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\n<p>Welcome to our new cove.</p>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.</p><p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<ul><li>To promote parent involvement to provide support in all areas of academic excellence</li><li>To raise funds to supplement an enriched learning environment</li></ul><p>In short, we bridge the gap between what the school system provides and what our students and teachers need.</p>[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]<p>The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"</p>[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\n<br>\r\n<br>\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-02 16:31:29','2016-02-02 16:31:29','',83,'http://www.fiepfa.org/2016/02/02/83-revision-v1/',0,'revision','',0),(385,2,'2016-02-02 16:46:07','2016-02-02 16:46:07','','FIE-Logo-2015-400','','inherit','open','closed','','fie-logo-2015-400','','','2016-02-02 16:46:18','2016-02-02 16:46:18','',0,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Logo-2015-400.png',0,'attachment','image/png',0),(386,2,'2016-02-02 16:56:26','2016-02-02 16:56:26','Information about our fast-approaching Hula Dance and Read-a-thon can be found on our \"<strong><a href=\"http://www.fiepfa.org/fundraising/\">Fundraising</a></strong>\" page.','Winter 2016 Hula Dance and Read-a-thon featured on \"Fundraising\" page','','publish','open','open','','winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page','','','2016-02-02 16:56:26','2016-02-02 16:56:26','',0,'http://www.fiepfa.org/?p=386',0,'post','',0),(387,2,'2016-02-02 16:56:26','2016-02-02 16:56:26','Information about our fast-approaching Hula Dance and Read-a-thon can be found on our \"<strong><a href=\"http://www.fiepfa.org/fundraising/\">Fundraising</a></strong>\" page.','Winter 2016 Hula Dance and Read-a-thon featured on \"Fundraising\" page','','inherit','closed','closed','','386-revision-v1','','','2016-02-02 16:56:26','2016-02-02 16:56:26','',386,'http://www.fiepfa.org/2016/02/02/386-revision-v1/',0,'revision','',0),(388,2,'2016-02-02 17:15:01','2016-02-02 17:15:01','','Thank-you-510-jpg','','inherit','open','closed','','thank-you-510-jpg','','','2016-02-02 17:15:10','2016-02-02 17:15:10','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg',0,'attachment','image/jpeg',0),(389,2,'2016-02-02 17:43:47','2016-02-02 17:43:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-autosave-v1','','','2016-02-02 17:43:47','2016-02-02 17:43:47','',310,'http://www.fiepfa.org/2016/02/02/310-autosave-v1/',0,'revision','',0),(390,2,'2016-02-02 17:37:41','2016-02-02 17:37:41','','Borland-Groover-Clinic-logo-225-225','','inherit','open','closed','','borland-groover-clinic-logo-225-225','','','2016-02-02 17:37:41','2016-02-02 17:37:41','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg',0,'attachment','image/jpeg',0),(391,2,'2016-02-02 17:37:42','2016-02-02 17:37:42','','cfa-new-225','','inherit','open','closed','','cfa-new-225','','','2016-02-02 17:37:42','2016-02-02 17:37:42','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg',0,'attachment','image/jpeg',0),(393,2,'2016-02-02 17:37:45','2016-02-02 17:37:45','','Island-Pediatrics-Logo-225','','inherit','open','closed','','island-pediatrics-logo-225','','','2016-02-02 17:37:45','2016-02-02 17:37:45','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg',0,'attachment','image/jpeg',0),(394,2,'2016-02-02 17:37:47','2016-02-02 17:37:47','','moes-sw-grill-logo-225','','inherit','open','closed','','moes-sw-grill-logo-225','','','2016-02-02 17:37:47','2016-02-02 17:37:47','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg',0,'attachment','image/jpeg',0),(395,2,'2016-02-02 17:37:48','2016-02-02 17:37:48','','rpm_logo-225jpg','','inherit','open','closed','','rpm_logo-225jpg','','','2016-02-02 17:37:48','2016-02-02 17:37:48','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg',0,'attachment','image/jpeg',0),(396,2,'2016-02-02 17:37:49','2016-02-02 17:37:49','','Select-Health-and-Wellness-Logo-225','','inherit','open','closed','','select-health-and-wellness-logo-225','','','2016-02-02 17:37:49','2016-02-02 17:37:49','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg',0,'attachment','image/jpeg',0),(397,2,'2016-02-02 17:37:52','2016-02-02 17:37:52','','Tree-amigo-logo-225','','inherit','open','closed','','tree-amigo-logo-225','','','2016-02-02 17:37:52','2016-02-02 17:37:52','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg',0,'attachment','image/jpeg',0),(398,2,'2016-02-02 17:41:27','2016-02-02 17:41:27','','Saigon-Tokyo-225','','inherit','open','closed','','saigon-tokyo-225','','','2016-02-02 17:41:27','2016-02-02 17:41:27','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg',0,'attachment','image/jpeg',0),(399,2,'2016-02-02 17:43:38','2016-02-02 17:43:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 17:43:38','2016-02-02 17:43:38','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(400,2,'2016-02-02 17:44:10','2016-02-02 17:44:10','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-02 17:44:10','2016-02-02 17:44:10','',310,'http://www.fiepfa.org/2016/02/02/310-revision-v1/',0,'revision','',0),(401,2,'2016-02-02 17:48:08','2016-02-02 17:48:08','','Photo-Coming-Soon-225','','inherit','open','closed','','photo-coming-soon-225','','','2016-02-02 17:48:08','2016-02-02 17:48:08','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg',0,'attachment','image/jpeg',0),(402,2,'2016-02-02 17:51:42','2016-02-02 17:51:42','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>MEET THE PFA BOARD MEMBERS</h1>\n&nbsp;\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\n\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-autosave-v1','','','2016-02-02 17:51:42','2016-02-02 17:51:42','',88,'http://www.fiepfa.org/2016/02/02/88-autosave-v1/',0,'revision','',0),(403,2,'2016-02-02 17:50:06','2016-02-02 17:50:06','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 17:50:06','2016-02-02 17:50:06','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(404,2,'2016-02-02 17:51:30','2016-02-02 17:51:30','[et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a></p>\n\n[/et_pb_team_member]','Minervini','','publish','closed','closed','','minervini','','','2016-02-02 17:51:30','2016-02-02 17:51:30','',0,'http://www.fiepfa.org/et_pb_layout/minervini/',0,'et_pb_layout','',0),(405,2,'2016-02-02 17:51:41','2016-02-02 17:51:41','[et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a></p>\n\n[/et_pb_team_member]','Leon Vorst','','publish','closed','closed','','leon-vorst','','','2016-02-02 17:51:41','2016-02-02 17:51:41','',0,'http://www.fiepfa.org/et_pb_layout/leon-vorst/',0,'et_pb_layout','',0),(406,2,'2016-02-02 17:51:44','2016-02-02 17:51:44','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffman\" name=\"Meredith Hoffman\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-02 17:51:44','2016-02-02 17:51:44','',88,'http://www.fiepfa.org/2016/02/02/88-revision-v1/',0,'revision','',0),(407,2,'2016-02-02 17:53:18','2016-02-02 17:53:18','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\n\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\n\n~ <b>Dr. Seuss</b>\n\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\n\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\n\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\n\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\n<ul>\n	<li>Playground improvements</li>\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\n	<li>The BARB newsletter printing</li>\n	<li>Property enhancements</li>\n	<li>Spirit days</li>\n	<li>Fundraising (e.g., prizes and external administration)</li>\n	<li>Grants</li>\n	<li>Student lunch support</li>\n	<li>Community service projects (e.g., Angel Tree)</li>\n	<li>Emergency fund</li>\n</ul>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\n<h3>AND, support Fleming Island Elementary!</h3>\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\n\n<strong>Use our promo code, FLEMINGISLAND!</strong>\n\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\n\n<strong>Help us spread the word! Some ideas:</strong>\n<ul>\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\n</ul>\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>Get a little hipsy at the Hula Dance!</h1>\n<strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong>\n\nFor those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.\n\nTime to break out your Hawaiian shirts and dust off your grass skirts!\n\nOur sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>Time for the Read-a-thon!</h1>\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\n\n<strong>Important dates</strong>\n<ul>\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>Show you remember with your child\'s name in lights!</h1>\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\n\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>Spirit Night</h1>\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\n\n<strong>NEXT SPIRIT NIGHT </strong>\n<ul>\n	<li>March (date TBD)</li>\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\n</ul>\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>The purchases that keep on giving</h1>\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\nCheck out all the ways we can help FIE. Thanks so much!\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\n\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\n<ul>\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\n	<li>Take a picture of your receipt.</li>\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\n</ul>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\n\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\n<ul>\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\n</ul>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\n\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\n<ul>\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\n</ul>\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\n<ol>\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\n</strong></li>\n</ol>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\n\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\n\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\n<ul>\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\n	<li>Find Fleming Island Elementary.</li>\n	<li>Donate your points.</li>\n</ul>\nTweet for +3 status (and inspire your friends and family to donate too)!\n\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\n\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\n\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\n\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\n\n<strong>DROP OFF\n</strong>White bins are located by the cafeteria parent pick-up area.\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-autosave-v1','','','2016-02-02 17:53:18','2016-02-02 17:53:18','',115,'http://www.fiepfa.org/2016/02/02/115-autosave-v1/',0,'revision','',0),(408,2,'2016-02-02 17:53:55','2016-02-02 17:53:55','[et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>Laura Minervini<br /> Fundraising Lead<br /> <a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a></p>\n\n[/et_pb_blurb]','Contact LM','','publish','closed','closed','','contact-lm','','','2016-02-02 17:53:55','2016-02-02 17:53:55','',0,'http://www.fiepfa.org/et_pb_layout/contact-lm/',0,'et_pb_layout','',0),(410,2,'2016-02-02 17:55:24','2016-02-02 17:55:24','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-02 17:55:24','2016-02-02 17:55:24','',238,'http://www.fiepfa.org/2016/02/02/238-revision-v1/',0,'revision','',0),(411,1,'2016-02-05 07:59:27','2016-02-05 07:59:27','','Boy-Valentine-320-225','','inherit','open','closed','','boy-valentine-320-225','','','2016-02-05 07:59:38','2016-02-05 07:59:38','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg',0,'attachment','image/jpeg',0),(412,1,'2016-02-05 08:00:05','2016-02-05 08:00:05','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nGiving generally is heartwarming, and when senders are children, even more so. If you\'d like to help, please consider joining our students during lunch hours Wednesday, Feb. 10, to Friday, Feb. 12. Volunteers are needed to help sell ready-made candy grams, and help our youngest spell their friends\' and teachers\' names. Help is VERY much needed on Thursday and Friday due to higher volume.\r\n\r\n<strong>A sweet cause</strong>\r\nMoney raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, these student patrols help our children by keeping them safe and enforcing rules. For example, they guard the sidewalks and help children to their classrooms if lost, ask them to walk if running, remind them to keep off ant-ridden grass and alert teachers for additional help, if necessary. Proceeds go to treat them to a local field trip.\r\n\r\n<strong>Questions?</strong>\r\nPlease contact Mrs. Lisa Miller, sixth-grade teacher and safety-patrol leader, at <a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">lmmiller@oneclay.net</a>. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:00:05','2016-02-05 08:00:05','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(413,1,'2016-02-05 08:00:33','2016-02-05 08:00:33','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nGiving generally is heartwarming, and when senders are children, even more so. If you\'d like to help, please consider joining our students during lunch hours Wednesday, Feb. 10, to Friday, Feb. 12. Volunteers are needed to help sell ready-made candy grams, and help our youngest spell their friends\' and teachers\' names. Help is VERY much needed on Thursday and Friday due to higher volume.\r\n\r\n<strong>A sweet cause</strong>\r\nMoney raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, these student patrols help our children by keeping them safe and enforcing rules. For example, they guard the sidewalks and help children to their classrooms if lost, ask them to walk if running, remind them to keep off ant-ridden grass and alert teachers for additional help, if necessary. Proceeds go to treat them to a local field trip.\r\n\r\n<strong>Questions?</strong>\r\nPlease contact Mrs. Lisa Miller, sixth-grade teacher and safety-patrol leader, at <a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">lmmiller@oneclay.net</a>. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:00:33','2016-02-05 08:00:33','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(414,1,'2016-02-05 08:05:56','2016-02-05 08:05:56','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students during lunch hours Wednesday, Feb. 10, to Friday, Feb. 12.<strong> <a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, these student patrols help our children by keeping them safe and enforcing rules. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:05:56','2016-02-05 08:05:56','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(415,1,'2016-02-05 08:35:08','2016-02-05 08:35:08','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students during lunch hours Wednesday, Feb. 10, to Friday, Feb. 12.<strong> <a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, patrols help keep our children safe. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:35:08','2016-02-05 08:35:08','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(416,1,'2016-02-05 08:38:44','2016-02-05 08:38:44','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Lunch hours | Wednesday, Feb. 10, to Friday, Feb. 12\r\n</strong>Volunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students. <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, patrols help keep our children safe. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:38:44','2016-02-05 08:38:44','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(417,1,'2016-02-05 08:41:16','2016-02-05 08:41:16','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Lunch hours | Wednesday, Feb. 10, to Friday, Feb. 12\r\n</strong>Volunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students. <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">patrols help keep our children safe</a></strong>. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade    Teacher\r\n</strong>PK        Patty Toole\r\nP1         Illisa Hamilton\r\n1           Lana Doane\r\n2           Mimi Harris\r\n3           Michelle Weeks\r\n5           Pat Aschinger-Lee\r\n6           Mary Michaels\r\nASD      Marion Earnest\r\nASD      Cheryl Shodd\r\nASD      Christina Mana\r\nASD      Rebekka Mathews\r\nASD      Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:41:16','2016-02-05 08:41:16','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(418,1,'2016-02-05 08:42:27','2016-02-05 08:42:27','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201602.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | February 2016</a></strong>','The BARB Newsletter | February 2016','','inherit','closed','closed','','330-revision-v1','','','2016-02-05 08:42:27','2016-02-05 08:42:27','',330,'http://www.fiepfa.org/2016/02/05/330-revision-v1/',0,'revision','',0),(419,1,'2016-02-05 08:43:00','2016-02-05 08:43:00','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201512-201601.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | December 2015 and January 2016</a></strong>','The BARB Newsletter | December 2015 and January 2016','','inherit','closed','closed','','337-revision-v1','','','2016-02-05 08:43:00','2016-02-05 08:43:00','',337,'http://www.fiepfa.org/2016/02/05/337-revision-v1/',0,'revision','',0),(420,1,'2016-02-05 08:43:45','2016-02-05 08:43:45','<strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-BARB-201511.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | November 2015</a></strong>','The BARB Newsletter | November 2015','','inherit','closed','closed','','340-revision-v1','','','2016-02-05 08:43:45','2016-02-05 08:43:45','',340,'http://www.fiepfa.org/2016/02/05/340-revision-v1/',0,'revision','',0),(421,1,'2016-02-05 08:48:35','2016-02-05 08:48:35','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Cookie donation\" title=\"Bring on the YUM!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Drop off by Friday, Feb. 5</strong>\r\n<em><strong>Cookie, brownie and cupcake donations</strong></em>\r\nPlease consider donating homemade or store-bought cookies, brownies or cupcakes for our school dance. Please drop off in the office the day of the hula dance. Help us keep count by <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-cookies\" target=\"_blank\">signing up here</a>.</strong> A scrumptious thank you!!!\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Lunch hours | Wednesday, Feb. 10, to Friday, Feb. 12\r\n</strong>Volunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students. <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">patrols help keep our children safe</a></strong>. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-05 08:48:35','2016-02-05 08:48:35','',238,'http://www.fiepfa.org/2016/02/05/238-revision-v1/',0,'revision','',0),(422,1,'2016-02-05 08:49:37','2016-02-05 08:49:37','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-05 08:49:37','2016-02-05 08:49:37','',88,'http://www.fiepfa.org/2016/02/05/88-revision-v1/',0,'revision','',0),(423,1,'2016-02-05 11:17:21','2016-02-05 11:17:21','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Info','','inherit','closed','closed','','297-revision-v1','','','2016-02-05 11:17:21','2016-02-05 11:17:21','',297,'http://www.fiepfa.org/2016/02/05/297-revision-v1/',0,'revision','',0),(424,1,'2016-02-05 11:18:57','2016-02-05 11:18:57',' ','','','publish','closed','closed','','424','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=424',3,'nav_menu_item','',0),(425,1,'2016-02-05 11:18:57','2016-02-05 11:18:57','','FIE Faculty and Staff | Websites','','publish','closed','closed','','425','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=425',4,'nav_menu_item','',0),(426,1,'2016-02-05 11:18:57','2016-02-05 11:18:57','','About the PFA','','publish','closed','closed','','about-the-pfa','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=426',2,'nav_menu_item','',0),(427,1,'2016-02-05 11:19:26','2016-02-05 11:19:26','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>Feb. 2</li>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-05 11:19:26','2016-02-05 11:19:26','',297,'http://www.fiepfa.org/2016/02/05/297-revision-v1/',0,'revision','',0),(428,1,'2016-02-05 11:22:47','2016-02-05 11:22:47','','FIE website','','publish','closed','closed','','fie-website-2','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',0,'http://www.fiepfa.org/?p=428',5,'nav_menu_item','',0),(429,1,'2016-02-05 12:17:08','2016-02-05 12:17:08','','Arlene-Manalo-225x300','','inherit','open','closed','','arlene-manalo-225x300','','','2016-02-05 12:20:01','2016-02-05 12:20:01','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png',0,'attachment','image/png',0),(430,1,'2016-02-05 12:17:10','2016-02-05 12:17:10','','Christine-Leon-Vorst-225x300','','inherit','open','closed','','christine-leon-vorst-225x300','','','2016-02-05 12:20:30','2016-02-05 12:20:30','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg',0,'attachment','image/jpeg',0),(431,1,'2016-02-05 12:17:11','2016-02-05 12:17:11','','Dana-Archibald-225x300','','inherit','open','closed','','dana-archibald-225x300','','','2016-02-05 12:17:30','2016-02-05 12:17:30','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg',0,'attachment','image/jpeg',0),(432,1,'2016-02-05 12:17:14','2016-02-05 12:17:14','','Kim-Marks-Photo-225x300','','inherit','open','closed','','kim-marks-photo-225x300','','','2016-02-05 12:17:42','2016-02-05 12:17:42','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg',0,'attachment','image/jpeg',0),(433,1,'2016-02-05 12:17:15','2016-02-05 12:17:15','','Linda-Kupfer-Photo-225x300','','inherit','open','closed','','linda-kupfer-photo-225x300','','','2016-02-05 12:20:17','2016-02-05 12:20:17','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg',0,'attachment','image/jpeg',0),(434,1,'2016-02-05 12:17:16','2016-02-05 12:17:16','','Meredith-Hoffmann-225x300','','inherit','open','closed','','meredith-hoffmann-225x300','','','2016-02-05 12:20:48','2016-02-05 12:20:48','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg',0,'attachment','image/jpeg',0),(435,1,'2016-02-05 12:17:17','2016-02-05 12:17:17','','Stephanie-Boccieri-Headshot-225x300','','inherit','open','closed','','stephanie-boccieri-headshot-225x300','','','2016-02-05 13:50:35','2016-02-05 13:50:35','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg',0,'attachment','image/jpeg',0),(437,1,'2016-02-05 12:20:51','2016-02-05 12:20:51','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-05 12:20:51','2016-02-05 12:20:51','',88,'http://www.fiepfa.org/2016/02/05/88-revision-v1/',0,'revision','',0),(438,1,'2016-02-05 13:50:51','2016-02-05 13:50:51','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-05 13:50:51','2016-02-05 13:50:51','',88,'http://www.fiepfa.org/2016/02/05/88-revision-v1/',0,'revision','',0),(440,1,'2016-02-05 22:01:21','2016-02-05 22:01:21','','Photo-Coming-Soon-225x300','','inherit','open','closed','','photo-coming-soon-225x300','','','2016-02-05 22:01:29','2016-02-05 22:01:29','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg',0,'attachment','image/jpeg',0),(441,1,'2016-02-05 22:02:08','2016-02-05 22:02:08','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-05 22:02:08','2016-02-05 22:02:08','',88,'http://www.fiepfa.org/2016/02/05/88-revision-v1/',0,'revision','',0),(442,1,'2016-02-05 22:02:40','2016-02-05 22:02:40','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-05 22:02:40','2016-02-05 22:02:40','',88,'http://www.fiepfa.org/2016/02/05/88-revision-v1/',0,'revision','',0),(443,1,'2016-02-07 19:31:14','2016-02-07 19:31:14','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.\r\nOR, place your cursor over the calendar and right click. Select \"Print.\"</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-07 19:31:14','2016-02-07 19:31:14','',356,'http://www.fiepfa.org/2016/02/07/356-revision-v1/',0,'revision','',0),(445,1,'2016-02-07 19:33:12','2016-02-07 19:33:12','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Calendar','','inherit','closed','closed','','356-revision-v1','','','2016-02-07 19:33:12','2016-02-07 19:33:12','',356,'http://www.fiepfa.org/2016/02/07/356-revision-v1/',0,'revision','',0),(446,1,'2016-02-07 19:38:01','2016-02-07 19:38:01','','tropical-smoothie-cafe-logo-2015-225x225','','inherit','open','closed','','tropical-smoothie-cafe-logo-2015-225x225','','','2016-02-07 19:38:12','2016-02-07 19:38:12','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg',0,'attachment','image/jpeg',0),(448,1,'2016-02-07 19:38:51','2016-02-07 19:38:51','','CFCUFL-Logo-225x225','','inherit','open','closed','','cfcufl-logo-225x225','','','2016-02-07 19:39:00','2016-02-07 19:39:00','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/CFCUFL-Logo-225x225.jpg',0,'attachment','image/jpeg',0),(449,1,'2016-02-07 19:39:16','2016-02-07 19:39:16','','island-life-grill-logo-225','','inherit','open','closed','','island-life-grill-logo-225-2','','','2016-02-07 19:39:28','2016-02-07 19:39:28','',310,'http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225-1.jpg',0,'attachment','image/jpeg',0),(450,1,'2016-02-07 19:40:00','2016-02-07 19:40:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"CFCU FL\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/CFCUFL-Logo-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225-1.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tropical Smoothie\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-07 19:40:00','2016-02-07 19:40:00','',310,'http://www.fiepfa.org/2016/02/07/310-revision-v1/',0,'revision','',0),(451,1,'2016-02-07 19:48:08','2016-02-07 19:48:08','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-07 19:48:08','2016-02-07 19:48:08','',297,'http://www.fiepfa.org/2016/02/07/297-revision-v1/',0,'revision','',0),(452,1,'2016-02-07 19:50:06','2016-02-07 19:50:06','[et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Hula dance\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Hula-AS-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Get a little hipsy at the Hula Dance!</h1><p><strong>6 to 7:45 p.m.  |  Friday, Feb. 5  |  FIE Cafeteria</strong></p><p>For those who purchased your ticket(s) by deadline Feb. 1, you\'ll get to enjoy DJ Mr. Von-Ebers, The Na Mana O Kipona Aloha Youth Polynesian Dancers, pizza and dessert, a balloon artist from Balloons R4 Twisting, and more! Lifetouch Photography will be on site to capture the moment, and there also will be a silent auction.</p><p>Time to break out your Hawaiian shirts and dust off your grass skirts!</p><p>Our sincere thanks to our sponsors, <a href=\"http://www.island-pediatrics.com/\" target=\"_blank\">Island Pediatrics</a> and <a href=\"http://www.borland-groover.com/\" target=\"_blank\">Borland-Groover Clinic</a>!</p>\n\n[/et_pb_text][/et_pb_column][/et_pb_row]','Fund Hula Dance 201602','','publish','closed','closed','','fund-hula-dance-201602','','','2016-02-07 19:50:06','2016-02-07 19:50:06','',0,'http://www.fiepfa.org/et_pb_layout/fund-hula-dance-201602/',0,'et_pb_layout','',0),(453,1,'2016-02-07 19:52:26','2016-02-07 19:52:26','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-07 19:52:26','2016-02-07 19:52:26','',115,'http://www.fiepfa.org/2016/02/07/115-revision-v1/',0,'revision','',0),(454,1,'2016-02-07 19:55:59','2016-02-07 19:55:59','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\n\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\n\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">BEFORE</h1>\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help cushion the ground.\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">AFTER</h1>\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\n<ul>\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\n	<li>Ground cover for padding and weed control (IPEMA certified)</li>\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\n	<li>ADA-compliant wheelchair-accessible ramps</li>\n	<li>14 new swings</li>\n	<li>Fresh hardware for equipment</li>\n	<li>Moving and salvaging equipment</li>\n</ul>\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n&nbsp;\n\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-autosave-v1','','','2016-02-07 19:55:59','2016-02-07 19:55:59','',103,'http://www.fiepfa.org/2016/02/07/103-autosave-v1/',0,'revision','',0),(455,1,'2016-02-07 19:54:41','2016-02-07 19:54:41','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border allowed for beds of mulch to help cushion the ground.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding and weed control (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-07 19:54:41','2016-02-07 19:54:41','',103,'http://www.fiepfa.org/2016/02/07/103-revision-v1/',0,'revision','',0),(456,1,'2016-02-07 19:56:27','2016-02-07 19:56:27','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border serves as an outline for beds of mulch to help cushion the ground.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n	<li>Ground cover for padding and weed control (IPEMA certified)</li>\r\n	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n	<li>14 new swings</li>\r\n	<li>Fresh hardware for equipment</li>\r\n	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s publicity lead, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-02-07 19:56:27','2016-02-07 19:56:27','',103,'http://www.fiepfa.org/2016/02/07/103-revision-v1/',0,'revision','',0),(457,1,'2016-02-07 19:58:08','2016-02-07 19:58:08','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"CFCU FL\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/CFCUFL-Logo-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225-1.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tropical Smoothie\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-revision-v1','','','2016-02-07 19:58:08','2016-02-07 19:58:08','',310,'http://www.fiepfa.org/2016/02/07/310-revision-v1/',0,'revision','',0),(458,1,'2016-02-07 19:58:18','2016-02-07 19:58:18','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Because once just isn\'t enough.\" background_color=\"#4f3b7d\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-510-jpg.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nTo our community partners and sponsors, thanks so much for making a difference at Fleming Island Elementary!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>WE GREATLY APPRECIATE YOU!</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Borland-Groover Clinic\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Borland-Groover-Clinic-logo-225-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Chick-fil-A\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/cfa-new-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"CFCU FL\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/CFCUFL-Logo-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Life Grill\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/island-life-grill-logo-225-1.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Island Pediatrics\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Island-Pediatrics-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Moe\'s\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/moes-sw-grill-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"RPM\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/rpm_logo-225jpg.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Saigon\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Saigon-Tokyo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Select Health Wellness\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Select-Health-and-Wellness-Logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tree Amigos\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Tree-amigo-logo-225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_image admin_label=\"Tropical Smoothie\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/tropical-smoothie-cafe-logo-2015-225x225.jpg\" url_new_window=\"off\" animation=\"left\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Community Partners','','inherit','closed','closed','','310-autosave-v1','','','2016-02-07 19:58:18','2016-02-07 19:58:18','',310,'http://www.fiepfa.org/2016/02/07/310-autosave-v1/',0,'revision','',0),(460,1,'2016-02-08 10:37:18','2016-02-08 10:37:18','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations?!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and refreshing the PFA budget for the 2016-2017 school year, $10,000 was shifted to the playground budget for improvements. Allocations of the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of the 442 donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','publish','closed','closed','','2016-read-a-thon','','','2016-03-20 19:10:35','2016-03-20 19:10:35','',115,'http://www.fiepfa.org/?page_id=460',0,'page','',0),(461,1,'2016-02-08 09:59:22','2016-02-08 09:59:22','','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 09:59:22','2016-02-08 09:59:22','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(462,1,'2016-02-08 10:17:48','2016-02-08 10:17:48','','Get-registered-get-movin-510','','inherit','open','closed','','get-registered-get-movin-510','','','2016-02-08 10:18:00','2016-02-08 10:18:00','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg',0,'attachment','image/jpeg',0),(463,1,'2016-02-08 10:21:57','2016-02-08 10:21:57','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"2\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#cecece\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:21:57','2016-02-08 10:21:57','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(464,1,'2016-02-08 10:22:42','2016-02-08 10:22:42','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#cecece\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:22:42','2016-02-08 10:22:42','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (465,1,'2016-02-08 10:24:34','2016-02-08 10:24:34','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#81d742\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:24:34','2016-02-08 10:24:34','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(466,1,'2016-02-08 10:26:02','2016-02-08 10:26:02','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" auto_speed=\"5\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:26:02','2016-02-08 10:26:02','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(467,1,'2016-02-08 10:26:58','2016-02-08 10:26:58','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:26:58','2016-02-08 10:26:58','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(468,1,'2016-02-08 10:28:23','2016-02-08 10:28:23','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:28:23','2016-02-08 10:28:23','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(469,1,'2016-02-08 10:29:29','2016-02-08 10:29:29','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:29:29','2016-02-08 10:29:29','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(470,1,'2016-02-08 10:30:09','2016-02-08 10:30:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide][et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:30:09','2016-02-08 10:30:09','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(471,1,'2016-02-08 10:31:00','2016-02-08 10:31:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 10:31:00','2016-02-08 10:31:00','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(472,1,'2016-02-08 10:34:13','2016-02-08 10:34:13','[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1 style=\"text-align: center;\">TO PRINT</h1><p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\n\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://fie.oneclay.net/calendar.html&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;1000px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Code','','publish','closed','closed','','code','','','2016-02-08 10:34:13','2016-02-08 10:34:13','',0,'http://www.fiepfa.org/et_pb_layout/code/',0,'et_pb_layout','',0),(473,1,'2016-02-08 10:34:25','2016-02-08 10:34:25','[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1 style=\"text-align: center;\">TO PRINT</h1><p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\n\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://fie.oneclay.net/calendar.html&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;1000px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Code-iframe','','publish','closed','closed','','code-iframe','','','2016-02-08 10:34:25','2016-02-08 10:34:25','',0,'http://www.fiepfa.org/et_pb_layout/code-iframe/',0,'et_pb_layout','',0),(474,1,'2016-02-08 10:35:55','2016-02-08 10:35:55','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"8600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:35:55','2016-02-08 10:35:55','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(475,1,'2016-02-08 10:36:28','2016-02-08 10:36:28','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"3000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:36:28','2016-02-08 10:36:28','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(476,1,'2016-02-08 10:36:48','2016-02-08 10:36:48','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:36:48','2016-02-08 10:36:48','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(477,1,'2016-02-08 10:37:18','2016-02-08 10:37:18','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:37:18','2016-02-08 10:37:18','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(479,1,'2016-02-08 10:38:27','2016-02-08 10:38:27',' ','','','publish','closed','closed','','479','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',115,'http://www.fiepfa.org/?p=479',10,'nav_menu_item','',0),(480,1,'2016-02-08 10:41:32','2016-02-08 10:41:32','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n[et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]<p>Look for updates under the \"Fundraising\" tab!</p>[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section]','2016 RAT Slider','','publish','closed','closed','','2016-rat-slider','','','2016-02-08 10:41:32','2016-02-08 10:41:32','',0,'http://www.fiepfa.org/et_pb_layout/2016-rat-slider/',0,'et_pb_layout','',0),(481,1,'2016-02-08 10:42:23','2016-02-08 10:42:23','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:42:23','2016-02-08 10:42:23','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(482,1,'2016-02-08 10:43:09','2016-02-08 10:43:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-08 10:43:09','2016-02-08 10:43:09','',460,'http://www.fiepfa.org/2016/02/08/460-revision-v1/',0,'revision','',0),(484,1,'2016-02-08 17:36:45','2016-02-08 17:36:45','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-08 17:36:45','2016-02-08 17:36:45','',83,'http://www.fiepfa.org/2016/02/08/83-revision-v1/',0,'revision','',0),(485,1,'2016-02-09 19:49:33','2016-02-09 19:49:33','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_cta admin_label=\"Call To Action\" title=\"Learn more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Learn more!\" use_background_color=\"on\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:49:33','2016-02-09 19:49:33','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(486,1,'2016-02-09 19:50:30','2016-02-09 19:50:30','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_cta admin_label=\"Call To Action\" title=\"Learn more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Learn more!\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:50:30','2016-02-09 19:50:30','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(487,1,'2016-02-09 19:50:53','2016-02-09 19:50:53','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:50:53','2016-02-09 19:50:53','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(488,1,'2016-02-09 19:52:31','2016-02-09 19:52:31','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_button admin_label=\"Read more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Read more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:52:31','2016-02-09 19:52:31','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(489,1,'2016-02-09 19:54:40','2016-02-09 19:54:40','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_button admin_label=\"Read more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Read more!\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_text_color=\"#bb93e2\" button_border_color=\"#bb93e2\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:54:40','2016-02-09 19:54:40','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(490,1,'2016-02-09 19:55:33','2016-02-09 19:55:33','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Time for the Read-a-thon!</h1>\r\nLook for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!\r\n\r\n<strong>Important dates</strong>\r\n<ul>\r\n	<li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li>\r\n	<li><strong>Feb. 16</strong> – Start logging those minutes!!!</li>\r\n	<li><strong>Feb. 23</strong> – Last day to log for prizes.</li>\r\n	<li><strong>Feb. 24</strong> – Turn in log sheet.</li>\r\n</ul>\r\n[/et_pb_text][et_pb_button admin_label=\"Read more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Read more!\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_text_color=\"#6370b5\" button_border_color=\"#6370b5\"] [/et_pb_button][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>March (date TBD)</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-02-09 19:55:33','2016-02-09 19:55:33','',115,'http://www.fiepfa.org/2016/02/09/115-revision-v1/',0,'revision','',0),(492,1,'2016-02-09 19:58:38','2016-02-09 19:58:38','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\n\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p>Based on your availability and coordination with the teacher.</p><p><strong>Contacts      </strong><br /> Lori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)<br /> Elise Bishop, Volunteer (great for benchmarking) (904-237-4278)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contacts         </strong><br /> Specific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)<br /> Christine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contacts     </strong><br /> Dana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)<br /> Lisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Needed for:</h1><p><strong>Grade(s): Teacher<br /> </strong>PK: Patty Toole<br /> P1: llisa Hamilton<br /> 1: Lana Doane<br /> 2: Mimi Harris<br /> 3: Michelle Weeks<br /> 5: Pat Aschinger-Lee<br /> 6: Mary Michaels<br /> K to 2: Rebekka Mathews<br /> K to 2: Marion Earnest<br /> 3 to 6: Cheryl Shodd<br /> 3 to 6: Christina Mana<br /> Multigrades: Renee Collins</p><p><strong>Contact</strong><br /> Amanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contact  </strong><br /> Christine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contacts      </strong><br /> PFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)<br /> SAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contact  </strong><br /> Susan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)</p>\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<p><strong>Contact</strong><br /> Amanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)</p>\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]','Toggle','','publish','closed','closed','','toggle','','','2016-02-09 19:58:38','2016-02-09 19:58:38','',0,'http://www.fiepfa.org/et_pb_layout/toggle/',0,'et_pb_layout','',0),(494,1,'2016-02-09 19:59:14','2016-02-09 19:59:14','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Lunch hours | Wednesday, Feb. 10, to Friday, Feb. 12\r\n</strong>Volunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students. <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong>\r\n\r\n<strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">patrols help keep our children safe</a></strong>. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong>\r\nWe’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.\r\n\r\nCheck out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-09 19:59:14','2016-02-09 19:59:14','',238,'http://www.fiepfa.org/2016/02/09/238-revision-v1/',0,'revision','',0),(495,1,'2016-02-09 20:08:15','2016-02-09 20:08:15','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nBe sure to scroll down for FAQs.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_accordion admin_label=\"Accordion\"] [/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, ranges are provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>.\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-09 20:08:15','2016-02-09 20:08:15','',460,'http://www.fiepfa.org/2016/02/09/460-revision-v1/',0,'revision','',0),(496,1,'2016-02-09 20:16:35','2016-02-09 20:16:35','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nBe sure to scroll down for FAQs.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_accordion admin_label=\"Accordion\"] [/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes.............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes...........................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>.\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-09 20:16:35','2016-02-09 20:16:35','',460,'http://www.fiepfa.org/2016/02/09/460-revision-v1/',0,'revision','',0),(497,1,'2016-02-09 20:19:09','2016-02-09 20:19:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"dark\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"RAT\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates and FAQs under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-09 20:19:09','2016-02-09 20:19:09','',83,'http://www.fiepfa.org/2016/02/09/83-revision-v1/',0,'revision','',0),(499,1,'2016-02-09 20:23:59','2016-02-09 20:23:59','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nBe sure to scroll down for FAQs.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_accordion admin_label=\"Accordion\"] [/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes..............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>.\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-09 20:23:59','2016-02-09 20:23:59','',460,'http://www.fiepfa.org/2016/02/09/460-revision-v1/',0,'revision','',0),(500,1,'2016-02-09 20:24:40','2016-02-09 20:24:40','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nBe sure to scroll down for FAQs.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=\"https://secure.eventsonline.us/reg/getmovincrew/pub/school/279\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2300px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_accordion admin_label=\"Accordion\"] [/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>.\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-02-09 20:24:40','2016-02-09 20:24:40','',460,'http://www.fiepfa.org/2016/02/09/460-revision-v1/',0,'revision','',0),(501,1,'2016-02-10 02:59:25','2016-02-10 02:59:25','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"RAT\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates and FAQs under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Join our e-community! \" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-10 02:59:25','2016-02-10 02:59:25','',83,'http://www.fiepfa.org/2016/02/10/83-revision-v1/',0,'revision','',0),(503,1,'2016-02-13 08:28:44','2016-02-13 08:28:44','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"RAT\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates and FAQs under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Stay in the loop!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-13 08:28:44','2016-02-13 08:28:44','',83,'http://www.fiepfa.org/2016/02/13/83-revision-v1/',0,'revision','',0),(504,1,'2016-02-13 08:30:00','2016-02-13 08:30:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"RAT\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates and FAQs under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-13 08:30:00','2016-02-13 08:30:00','',83,'http://www.fiepfa.org/2016/02/13/83-revision-v1/',0,'revision','',0),(506,1,'2016-02-13 08:30:34','2016-02-13 08:30:34','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]\r\n\r\nWelcome to our new cove.\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"RAT\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"2016 Read-a-Thon for our Playground\" button_text=\"Parents, register today!\" button_link=\"https://secure.eventsonline.us/reg/getmovincrew/parents\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Get-registered-get-movin-510.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"light\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nLook for updates and FAQs under the \"Fundraising\" tab!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-02-13 08:30:34','2016-02-13 08:30:34','',83,'http://www.fiepfa.org/2016/02/13/83-revision-v1/',0,'revision','',0),(507,1,'2016-02-13 08:31:43','2016-02-13 08:31:43','[et_pb_blurb admin_label=\"Candy grams\" title=\"Candy grams spread love and help recognize student safety patrols\" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-Valentine-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><strong>Lunch hours | Wednesday, Feb. 10, to Friday, Feb. 12<br /> </strong>Volunteers are needed to sell ready-made candy grams and help our youngest write names. Please consider joining our students. <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">Sign up here! </a></strong></p><p><strong>A sweet cause | </strong>Money raised from the sale of candy grams supports the recognition of our nearly dozen student safety patrols. Rain or shine, in the cold or heat, <strong><a href=\"http://www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-candy\" target=\"_blank\">patrols help keep our children safe</a></strong>. Questions? Please contact <strong><a href=\"mailto:lmmiller@oneclay.net\" target=\"_blank\">Mrs. Lisa Miller</a></strong>, sixth-grade teacher and safety-patrol leader. Thanks so much!!!</p>\n\n[/et_pb_blurb]','Candy grams','','publish','closed','closed','','candy-grams','','','2016-02-13 08:31:43','2016-02-13 08:31:43','',0,'http://www.fiepfa.org/et_pb_layout/candy-grams/',0,'et_pb_layout','',0),(508,1,'2016-02-13 08:32:07','2016-02-13 08:32:07','[et_pb_blurb admin_label=\"Picture day\" title=\"Bring your smile day! \" url=\"www.SignUpGenius.com/go/30E0E4FADA82DA1FD0-fiepicture\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Boy-camera-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><strong>8:15 a.m. to 2 p.m.  |  Thursday, Feb. 11</strong><br /> We’re in need of helpers to coordinate students on picture day. It would be WONDERFUL to have at least five volunteers. We\'ve broken the day into two shifts, but we\'ll take any help we can get! (Just be sure you let us know when you\'ll be available so we have enough helpers.</p><p>Check out the <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\">sign-up sheet,</a></strong> and thanks so much!<strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiepicture\" target=\"_blank\"> </a></strong></p><p> </p>\n\n[/et_pb_blurb]','Picture day','','publish','closed','closed','','picture-day','','','2016-02-13 08:32:07','2016-02-13 08:32:07','',0,'http://www.fiepfa.org/et_pb_layout/picture-day/',0,'et_pb_layout','',0),(510,1,'2016-02-13 08:33:22','2016-02-13 08:33:22','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-13 08:33:22','2016-02-13 08:33:22','',238,'http://www.fiepfa.org/2016/02/13/238-revision-v1/',0,'revision','',0),(511,1,'2016-02-13 08:56:47','2016-02-13 08:56:47','FIE PFA Meeting Minutes Dec. 8, 2015','Dec. 8','','inherit','open','closed','','fie-pfa-minutes-201512','','','2016-02-13 08:57:23','2016-02-13 08:57:23','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(512,1,'2016-02-13 08:56:49','2016-02-13 08:56:49','','Jan. 12','','inherit','open','closed','','fie-pfa-minutes-201601','','','2016-02-13 09:00:50','2016-02-13 09:00:50','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(513,1,'2016-02-13 09:02:17','2016-02-13 09:02:17','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-13 09:02:17','2016-02-13 09:02:17','',297,'http://www.fiepfa.org/2016/02/13/297-revision-v1/',0,'revision','',0),(515,1,'2016-02-13 09:03:33','2016-02-13 09:03:33','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-02-13 09:03:33','2016-02-13 09:03:33','',297,'http://www.fiepfa.org/2016/02/13/297-revision-v1/',0,'revision','',0),(516,1,'2016-02-13 09:07:42','2016-02-13 09:07:42','','Susan-Mabry-Photo-225x300','','inherit','open','closed','','susan-mabry-photo-225x300','','','2016-02-13 09:07:51','2016-02-13 09:07:51','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Susan-Mabry-Photo-225x300.jpg',0,'attachment','image/jpeg',0),(517,1,'2016-02-13 09:07:56','2016-02-13 09:07:56','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Susan-Mabry-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-02-13 09:07:56','2016-02-13 09:07:56','',88,'http://www.fiepfa.org/2016/02/13/88-revision-v1/',0,'revision','',0),(519,1,'2016-02-22 14:32:46','2016-02-22 14:32:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Early-dismissal days (usually)\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-22 14:32:46','2016-02-22 14:32:46','',238,'http://www.fiepfa.org/2016/02/22/238-revision-v1/',0,'revision','',0),(520,1,'2016-02-22 14:34:41','2016-02-22 14:34:41','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>UPCOMING: FRIDAY, FEB. 26\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days. Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-22 14:34:41','2016-02-22 14:34:41','',238,'http://www.fiepfa.org/2016/02/22/238-revision-v1/',0,'revision','',0),(521,1,'2016-02-22 14:35:36','2016-02-22 14:35:36','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>UPCOMING: FRIDAY, FEB. 26\r\n</strong>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-02-22 14:35:36','2016-02-22 14:35:36','',238,'http://www.fiepfa.org/2016/02/22/238-revision-v1/',0,'revision','',0),(523,2,'2016-03-01 15:01:10','2016-03-01 15:01:10','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/03/FIE-BARB-201603.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | March 2016</a>','The BARB Newsletter | March 2016','','publish','open','open','','the-barb-newsletter-march-2016','','','2016-04-28 17:40:52','2016-04-28 17:40:52','',0,'http://www.fiepfa.org/?p=523',0,'post','',0),(524,1,'2016-03-01 15:00:13','2016-03-01 15:00:13','','','','inherit','open','closed','','fie-barb-201603','','','2016-03-01 15:00:31','2016-03-01 15:00:31','',523,'http://www.fiepfa.org/wp-content/uploads/2016/03/FIE-BARB-201603.pdf',0,'attachment','application/pdf',0),(525,1,'2016-03-01 15:01:10','2016-03-01 15:01:10','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/03/FIE-BARB-201603.pdf\" rel=\"\">The BARB Newsletter | March 2016</a>','The BARB Newsletter | March 2016','','inherit','closed','closed','','523-revision-v1','','','2016-03-01 15:01:10','2016-03-01 15:01:10','',523,'http://www.fiepfa.org/2016/03/01/523-revision-v1/',0,'revision','',0),(526,1,'2016-03-01 15:04:08','2016-03-01 15:04:08','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/03/FIE-BARB-201603.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | March 2016</a>','The BARB Newsletter | March 2016','','inherit','closed','closed','','523-revision-v1','','','2016-03-01 15:04:08','2016-03-01 15:04:08','',523,'http://www.fiepfa.org/2016/03/01/523-revision-v1/',0,'revision','',0),(527,1,'2016-03-01 15:05:15','2016-03-01 15:05:15','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-03-01 15:05:15','2016-03-01 15:05:15','',238,'http://www.fiepfa.org/2016/03/01/238-revision-v1/',0,'revision','',0),(528,1,'2016-03-01 15:08:52','2016-03-01 15:08:52','[et_pb_text admin_label=\"RAT Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<h1>Time for the Read-a-thon!</h1><p>Look for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!</p><p><strong>Important dates</strong></p><ul><li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li><li><strong>Feb. 16</strong> – Start logging those minutes!!!</li><li><strong>Feb. 23</strong> – Last day to log for prizes.</li><li><strong>Feb. 24</strong> – Turn in log sheet.</li></ul>\n\n[/et_pb_text]','RAT Description','','publish','closed','closed','','rat-description','','','2016-03-01 15:08:52','2016-03-01 15:08:52','',0,'http://www.fiepfa.org/et_pb_layout/rat-description/',0,'et_pb_layout','',0),(529,1,'2016-03-01 15:09:40','2016-03-01 15:09:40','[et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"RAT\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Read-a-thon-FIE-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"RAT Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\n\n<h1>Time for the Read-a-thon!</h1><p>Look for information in Tuesday folders in February about the FIE 2016 Read-a-thon. Students will NOT be participating in a Boosterthon Fun Run this spring, so this will be the biggest fundraiser of the school year. Can\'t wait to tell you more and keep you up-to-date on progress!</p><p><strong>Important dates</strong></p><ul><li><strong>Feb. 9</strong> – Initial information goes home and registration opens. Students can start collecting pledges and flat donations.</li><li><strong>Feb. 16</strong> – Start logging those minutes!!!</li><li><strong>Feb. 23</strong> – Last day to log for prizes.</li><li><strong>Feb. 24</strong> – Turn in log sheet.</li></ul>\n\n[/et_pb_text][et_pb_button admin_label=\"Read more!\" button_url=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" url_new_window=\"off\" button_text=\"Read more!\" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" button_text_color=\"#6370b5\" button_border_color=\"#6370b5\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row]','RAT 2016','','publish','closed','closed','','rat-2016','','','2016-03-01 15:09:40','2016-03-01 15:09:40','',0,'http://www.fiepfa.org/et_pb_layout/rat-2016/',0,'et_pb_layout','',0),(530,1,'2016-03-01 15:12:13','2016-03-01 15:12:13','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>Thursday, March 3</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-03-01 15:12:13','2016-03-01 15:12:13','',115,'http://www.fiepfa.org/2016/03/01/115-revision-v1/',0,'revision','',0),(531,1,'2016-03-01 15:13:16','2016-03-01 15:13:16','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"] We look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes: [/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>Thursday, March 3</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-03-01 15:13:16','2016-03-01 15:13:16','',115,'http://www.fiepfa.org/2016/03/01/115-revision-v1/',0,'revision','',0),(532,1,'2016-03-02 14:59:48','2016-03-02 14:59:48','[et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Spirit Night</h1><p>We greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!</p><p><strong>NEXT SPIRIT NIGHT </strong></p><ul><li>Thursday, March 3</li><li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li></ul>\n\n[/et_pb_text][/et_pb_column][/et_pb_row]','Spirit Night','','publish','closed','closed','','spirit-night','','','2016-03-02 14:59:48','2016-03-02 14:59:48','',0,'http://www.fiepfa.org/et_pb_layout/spirit-night/',0,'et_pb_layout','',0),(533,1,'2016-03-02 15:00:04','2016-03-02 15:00:04','[et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Get discounted tickets to the Player\'s Championship!</h1><h3>AND, support Fleming Island Elementary!</h3><p><strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong></p><p><strong>Use our promo code, FLEMINGISLAND!</strong></p><p>Chip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)</p><p><strong>Help us spread the word! Some ideas:</strong></p><ul><li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li><li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li></ul><p>Purchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.</p>\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row]','TPC Chip In For Youth','','publish','closed','closed','','tpc-chip-in-for-youth','','','2016-03-02 15:00:04','2016-03-02 15:00:04','',0,'http://www.fiepfa.org/et_pb_layout/tpc-chip-in-for-youth/',0,'et_pb_layout','',0),(534,1,'2016-03-02 15:00:48','2016-03-02 15:00:48','[et_pb_section admin_label=\"section\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=&quot;https://secure.eventsonline.us/reg/getmovincrew/pub/school/279&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;2300px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','RAT - Sign up','','publish','closed','closed','','rat-sign-up','','','2016-03-02 15:00:48','2016-03-02 15:00:48','',0,'http://www.fiepfa.org/et_pb_layout/rat-sign-up/',0,'et_pb_layout','',0),(535,1,'2016-03-02 15:03:31','2016-03-02 15:03:31','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','inherit','closed','closed','','356-revision-v1','','','2016-03-02 15:03:31','2016-03-02 15:03:31','',356,'http://www.fiepfa.org/2016/03/02/356-revision-v1/',0,'revision','',0),(536,1,'2016-03-02 15:05:51','2016-03-02 15:05:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Please click on your calendar of choice.</h1>\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','inherit','closed','closed','','356-revision-v1','','','2016-03-02 15:05:51','2016-03-02 15:05:51','',356,'http://www.fiepfa.org/2016/03/02/356-revision-v1/',0,'revision','',0),(537,1,'2016-03-02 15:07:08','2016-03-02 15:07:08','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Please click on your calendar of choice (buttons below.)</h1>\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">After your selected calendar loads, click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','inherit','closed','closed','','356-autosave-v1','','','2016-03-02 15:07:08','2016-03-02 15:07:08','',356,'http://www.fiepfa.org/2016/03/02/356-autosave-v1/',0,'revision','',0),(538,1,'2016-03-02 15:06:23','2016-03-02 15:06:23','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Please click on your calendar of choice (buttons below.)</h1>\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">Click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','inherit','closed','closed','','356-revision-v1','','','2016-03-02 15:06:23','2016-03-02 15:06:23','',356,'http://www.fiepfa.org/2016/03/02/356-revision-v1/',0,'revision','',0),(539,1,'2016-03-02 15:07:02','2016-03-02 15:07:02','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Please click on your calendar of choice (buttons below.)</h1>\r\n<h1 style=\"text-align: center;\">TO PRINT</h1>\r\n<p style=\"text-align: center;\">After your selected calendar loads, click the \"Print\" button in the calendar menu.</p>\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/calendar.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"1000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Calendars','','inherit','closed','closed','','356-revision-v1','','','2016-03-02 15:07:02','2016-03-02 15:07:02','',356,'http://www.fiepfa.org/2016/03/02/356-revision-v1/',0,'revision','',0),(540,1,'2016-03-02 15:16:41','2016-03-02 15:16:41','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>COOL HAPPENINGS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Spirit Night</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>Thursday, March 3</li>\r\n	<li>Chick-fil-A: 1541 County Rd 220, Orange Park, FL 32003</li>\r\n</ul>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-02 15:16:41','2016-03-02 15:16:41','',83,'http://www.fiepfa.org/2016/03/02/83-revision-v1/',0,'revision','',0),(541,1,'2016-03-02 15:20:01','2016-03-02 15:20:01','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://fie.oneclay.net/directory.html&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;8600px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','inherit','closed','closed','','344-revision-v1','','','2016-03-02 15:20:01','2016-03-02 15:20:01','',344,'http://www.fiepfa.org/2016/03/02/344-revision-v1/',0,'revision','',0),(542,1,'2016-03-02 15:27:12','2016-03-02 15:27:12','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code-RAT FIE\"]&lt;iframe src=&quot;https://secure.eventsonline.us/reg/getmovincrew/pub/school/279&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;2300px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_accordion admin_label=\"Accordion\"]\r\n\r\n\r\n\r\n[/et_pb_accordion][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThe Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>.\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-02 15:27:12','2016-03-02 15:27:12','',460,'http://www.fiepfa.org/2016/03/02/460-revision-v1/',0,'revision','',0),(543,1,'2016-04-21 20:39:39','2016-04-21 20:39:39','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://fie.oneclay.net/directory.html\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"9600px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','inherit','closed','closed','','344-autosave-v1','','','2016-04-21 20:39:39','2016-04-21 20:39:39','',344,'http://www.fiepfa.org/2016/03/02/344-autosave-v1/',0,'revision','',0),(544,1,'2016-03-02 15:29:13','2016-03-02 15:29:13','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://fie.oneclay.net/directory.html&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;9600px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','FIE Faculty and Staff','','inherit','closed','closed','','344-revision-v1','','','2016-03-02 15:29:13','2016-03-02 15:29:13','',344,'http://www.fiepfa.org/2016/03/02/344-revision-v1/',0,'revision','',0),(545,1,'2016-03-06 12:14:30','2016-03-06 12:14:30','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>COOL HAPPENINGS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-06 12:14:30','2016-03-06 12:14:30','',83,'http://www.fiepfa.org/2016/03/06/83-revision-v1/',0,'revision','',0),(546,1,'2016-03-06 12:17:38','2016-03-06 12:17:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>COOL HAPPENINGS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"\r\n\r\n[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-06 12:17:38','2016-03-06 12:17:38','',83,'http://www.fiepfa.org/2016/03/06/83-revision-v1/',0,'revision','',0),(547,1,'2016-03-06 12:19:56','2016-03-06 12:19:56','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-03-06 12:19:56','2016-03-06 12:19:56','',115,'http://www.fiepfa.org/2016/03/06/115-revision-v1/',0,'revision','',0),(549,1,'2016-03-20 12:55:59','2016-03-20 12:55:59','','Feb. 2','','inherit','open','closed','','fie-pfa-minutes-20160202','','','2016-03-20 12:56:44','2016-03-20 12:56:44','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx',0,'attachment','application/vnd.openxmlformats-officedocument.wordprocessingml.document',0),(550,1,'2016-03-20 12:57:04','2016-03-20 12:57:04','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>March 1</li>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-03-20 12:57:04','2016-03-20 12:57:04','',297,'http://www.fiepfa.org/2016/03/20/297-revision-v1/',0,'revision','',0),(551,1,'2016-03-20 12:58:04','2016-03-20 12:58:04','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETINGS</strong>\r\n<ul>\r\n	<li>April 5</li>\r\n	<li>May 3</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-03-20 12:58:04','2016-03-20 12:58:04','',297,'http://www.fiepfa.org/2016/03/20/297-revision-v1/',0,'revision','',0),(552,2,'2016-03-16 13:36:36','2016-03-16 13:36:36','Parents are invited and encouraged to attend an informative workshop to learn more about Florida\'s assessment and accountability system. This event is hosted by the District Advisory Committee of the School District of Clay County.\r\n\r\n<strong>TIME:</strong> 6:30 p.m.\r\n<strong>DATE:</strong> Thursday, March 24\r\n<strong>PLACE: </strong>Teacher Training Center at Fleming Island High School\r\n<strong>ADDRESS:</strong> 2233 Village Square Parkway, Fleming Island, FL 32003\r\n\r\n<strong>LEARN MORE ABOUT</strong>\r\n<ul>\r\n	<li>The purpose of the state and local assessment systems</li>\r\n	<li>The impact of the state and local assessments on student progression</li>\r\n	<li>How students and parents can prepare for upcoming state assessments</li>\r\n</ul>\r\n<strong>WORKSHOP SCHEDULE</strong>\r\n<ul>\r\n	<li>6:30 p.m. | Welcome and Opening Remarks | Diane Kornegay, Deputy Superintendent, School District of Clay County</li>\r\n	<li>6:40 p.m. | State Assessment and Accountability System | Dr. Emily Weiskopf, School District of Clay County</li>\r\n	<li>7:15 p.m. | Questions and answers</li>\r\n</ul>','Parent workshop on Florida Standards Assessment Program (FSA) and accountability system','Parents are encouraged to attend a workshop about Florida\'s assessment and accountability system at 6:30 p.m. on March 24, 2016, at the Teacher Training Center at Fleming Island High School. ','publish','open','open','','parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system','','','2016-03-27 02:29:45','2016-03-27 02:29:45','',0,'http://www.fiepfa.org/?p=552',0,'post','',0),(553,1,'2016-03-20 13:36:36','2016-03-20 13:36:36','Parents are invited and encouraged to attend an informative workshop to learn more about Florida\'s assessment and accountability system. The workshop begins at 6:30 p.m., and a question-and-answer session starts at 7:15 p.m. This event is hosted by the District Advisory Committee of the School District of Clay County.\r\n\r\n<strong>TIME:</strong> 6:30 p.m.\r\n<strong>DATE:</strong> Thursday, March 24\r\n<strong>PLACE: </strong>Teacher Training Center at Fleming Island High School\r\n<strong>ADDRESS:</strong> 2233 Village Square Parkway, Fleming Island, FL 32003\r\n\r\n<strong>LEARN MORE ABOUT</strong>\r\n<ul>\r\n	<li>The purpose of the state and local assessment systems</li>\r\n	<li>The impact of the state and local assessments on student progression</li>\r\n	<li>How students and parents can prepare for upcoming state assessments</li>\r\n</ul>\r\n<strong>WORKSHOP SCHEDULE</strong>\r\n<ul>\r\n	<li>6:30 p.m. | Welcome and Opening Remarks | Diane Kornegay, Deputy Superintendent, School District of Clay County</li>\r\n	<li>6:40 p.m. | State Assessment and Accountability System | Dr. Emily Weiskopf, School District of Clay County</li>\r\n	<li>7:15 p.m. | Questions and answers</li>\r\n</ul>','Parent Workshop on Florida Standards Assessment Program (FSA) and accountability system','Parents are encouraged to attend a workshop about Florida\'s assessment and accountability system at 6:30 p.m. on March 24, 2016, at the Teacher Training Center at Fleming Island High School. ','inherit','closed','closed','','552-revision-v1','','','2016-03-20 13:36:36','2016-03-20 13:36:36','',552,'http://www.fiepfa.org/2016/03/20/552-revision-v1/',0,'revision','',0),(554,1,'2016-03-20 13:36:47','2016-03-20 13:36:47','Parents are invited and encouraged to attend an informative workshop to learn more about Florida\'s assessment and accountability system. The workshop begins at 6:30 p.m., and a question-and-answer session starts at 7:15 p.m. This event is hosted by the District Advisory Committee of the School District of Clay County.\r\n\r\n<strong>TIME:</strong> 6:30 p.m.\r\n<strong>DATE:</strong> Thursday, March 24\r\n<strong>PLACE: </strong>Teacher Training Center at Fleming Island High School\r\n<strong>ADDRESS:</strong> 2233 Village Square Parkway, Fleming Island, FL 32003\r\n\r\n<strong>LEARN MORE ABOUT</strong>\r\n<ul>\r\n	<li>The purpose of the state and local assessment systems</li>\r\n	<li>The impact of the state and local assessments on student progression</li>\r\n	<li>How students and parents can prepare for upcoming state assessments</li>\r\n</ul>\r\n<strong>WORKSHOP SCHEDULE</strong>\r\n<ul>\r\n	<li>6:30 p.m. | Welcome and Opening Remarks | Diane Kornegay, Deputy Superintendent, School District of Clay County</li>\r\n	<li>6:40 p.m. | State Assessment and Accountability System | Dr. Emily Weiskopf, School District of Clay County</li>\r\n	<li>7:15 p.m. | Questions and answers</li>\r\n</ul>','Parent workshop on Florida Standards Assessment Program (FSA) and accountability system','Parents are encouraged to attend a workshop about Florida\'s assessment and accountability system at 6:30 p.m. on March 24, 2016, at the Teacher Training Center at Fleming Island High School. ','inherit','closed','closed','','552-revision-v1','','','2016-03-20 13:36:47','2016-03-20 13:36:47','',552,'http://www.fiepfa.org/2016/03/20/552-revision-v1/',0,'revision','',0),(555,1,'2016-03-20 13:56:57','2016-03-20 13:56:57','','Computer-Kids-320w','','inherit','open','closed','','computer-kids-320w','','','2016-03-20 13:57:08','2016-03-20 13:57:08','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg',0,'attachment','image/jpeg',0),(556,1,'2016-03-20 14:05:38','2016-03-20 14:05:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Kids computer\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" title=\"Workshop about Florida Standards Assessment Program (FSA) and accountability system\" button_url=\"http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/\" url_new_window=\"off\" button_text=\"Learn more\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<strong>When:</strong> 6:30 p.m. on Thursday, March 24, 2016\r\n<strong>Where:</strong> Fleming Island High School, Teacher Training Center\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#bfcaff\" show_divider=\"on\" height=\"2\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-20 14:05:38','2016-03-20 14:05:38','',83,'http://www.fiepfa.org/2016/03/20/83-revision-v1/',0,'revision','',0),(557,1,'2016-03-20 14:10:36','2016-03-20 14:10:36','Parents are invited and encouraged to attend an informative workshop to learn more about Florida\'s assessment and accountability system. This event is hosted by the District Advisory Committee of the School District of Clay County.\r\n\r\n<strong>TIME:</strong> 6:30 p.m.\r\n<strong>DATE:</strong> Thursday, March 24\r\n<strong>PLACE: </strong>Teacher Training Center at Fleming Island High School\r\n<strong>ADDRESS:</strong> 2233 Village Square Parkway, Fleming Island, FL 32003\r\n\r\n<strong>LEARN MORE ABOUT</strong>\r\n<ul>\r\n	<li>The purpose of the state and local assessment systems</li>\r\n	<li>The impact of the state and local assessments on student progression</li>\r\n	<li>How students and parents can prepare for upcoming state assessments</li>\r\n</ul>\r\n<strong>WORKSHOP SCHEDULE</strong>\r\n<ul>\r\n	<li>6:30 p.m. | Welcome and Opening Remarks | Diane Kornegay, Deputy Superintendent, School District of Clay County</li>\r\n	<li>6:40 p.m. | State Assessment and Accountability System | Dr. Emily Weiskopf, School District of Clay County</li>\r\n	<li>7:15 p.m. | Questions and answers</li>\r\n</ul>','Parent workshop on Florida Standards Assessment Program (FSA) and accountability system','Parents are encouraged to attend a workshop about Florida\'s assessment and accountability system at 6:30 p.m. on March 24, 2016, at the Teacher Training Center at Fleming Island High School. ','inherit','closed','closed','','552-revision-v1','','','2016-03-20 14:10:36','2016-03-20 14:10:36','',552,'http://www.fiepfa.org/2016/03/20/552-revision-v1/',0,'revision','',0),(558,1,'2016-03-20 16:32:20','2016-03-20 16:32:20','','Thank-you-library-kid-510w','','inherit','open','closed','','thank-you-library-kid-510w','','','2016-03-20 16:32:30','2016-03-20 16:32:30','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg',0,'attachment','image/jpeg',0),(559,1,'2016-03-20 16:43:17','2016-03-20 16:43:17','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Kids computer\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" title=\"Workshop about Florida Standards Assessment Program (FSA) and accountability system\" button_url=\"http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/\" url_new_window=\"off\" button_text=\"Learn more\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<strong>When:</strong> 6:30 p.m. on Thursday, March 24, 2016\r\n<strong>Where:</strong> Fleming Island High School, Teacher Training Center\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#bfcaff\" show_divider=\"on\" height=\"2\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section fullwidth=\"on\" specialty=\"off\" admin_label=\"Section\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,500 in online and cash donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-20 16:43:17','2016-03-20 16:43:17','',83,'http://www.fiepfa.org/2016/03/20/83-revision-v1/',0,'revision','',0),(562,1,'2016-03-20 16:54:47','2016-03-20 16:54:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Kids computer\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" title=\"Workshop about Florida Standards Assessment Program (FSA) and accountability system\" button_url=\"http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/\" url_new_window=\"off\" button_text=\"Learn more\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<strong>When:</strong> 6:30 p.m. on Thursday, March 24, 2016\r\n<strong>Where:</strong> Fleming Island High School, Teacher Training Center\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#bfcaff\" show_divider=\"on\" height=\"2\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-20 16:54:47','2016-03-20 16:54:47','',83,'http://www.fiepfa.org/2016/03/20/83-revision-v1/',0,'revision','',0),(564,1,'2016-03-20 17:30:55','2016-03-20 17:30:55','','Thank-you-library-kid-320w','','inherit','open','closed','','thank-you-library-kid-320w','','','2016-03-20 17:30:55','2016-03-20 17:30:55','',460,'http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg',0,'attachment','image/jpeg',0),(565,1,'2016-03-20 17:38:14','2016-03-20 17:38:14','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes a great cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? Teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using online collections, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:38:14','2016-03-20 17:38:14','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(566,1,'2016-03-20 17:49:01','2016-03-20 17:49:01','','FIE-RAT-Overview-201603-14309-LR','','inherit','open','closed','','fie-rat-overview-201603-14309-lr','','','2016-03-20 17:49:14','2016-03-20 17:49:14','',460,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg',0,'attachment','image/jpeg',0),(567,1,'2016-03-20 17:49:34','2016-03-20 17:49:34','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes a great cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? Teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using online collections, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:49:34','2016-03-20 17:49:34','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(568,1,'2016-03-20 17:50:43','2016-03-20 17:50:43','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes a great cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? Teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:50:43','2016-03-20 17:50:43','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(569,1,'2016-03-20 17:51:44','2016-03-20 17:51:44','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? Teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:51:44','2016-03-20 17:51:44','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(570,1,'2016-03-20 17:54:15','2016-03-20 17:54:15','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations!?\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:54:15','2016-03-20 17:54:15','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(571,1,'2016-03-20 17:54:54','2016-03-20 17:54:54','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents involved in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations?!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and funding the 2016-2017 PFA budget, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 17:54:54','2016-03-20 17:54:54','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(572,1,'2016-03-20 18:53:24','2016-03-20 18:53:24','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations?!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and refreshing the PFA budget for the 2016-2017 school year, $10,000 was shifted to the playground budget for improvements. Allocations for the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 18:53:24','2016-03-20 18:53:24','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(573,1,'2016-03-20 19:06:20','2016-03-20 19:06:20','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations?!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and refreshing the PFA budget for the 2016-2017 school year, $10,000 was shifted to the playground budget for improvements. Allocations of the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 19:06:20','2016-03-20 19:06:20','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(574,1,'2016-03-20 19:08:59','2016-03-20 19:08:59','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Kids computer\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" title=\"Workshop about Florida Standards Assessment Program (FSA) and accountability system\" button_url=\"http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/\" url_new_window=\"off\" button_text=\"Learn more\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<strong>When:</strong> 6:30 p.m. on Thursday, March 24, 2016\r\n<strong>Where:</strong> Fleming Island High School, Teacher Training Center\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#bfcaff\" show_divider=\"on\" height=\"2\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash/check donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-20 19:08:59','2016-03-20 19:08:59','',83,'http://www.fiepfa.org/2016/03/20/83-revision-v1/',0,'revision','',0),(575,1,'2016-03-20 19:10:35','2016-03-20 19:10:35','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>THANK YOU for supporting the 2016 Read-a-Thon!</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" custom_padding=\"||1px|\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Thank-you-library-kid-320w.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h3>Team effort makes an educational cause a success!</h3>\r\nWhat do you get when you combine a handful of organizers, more than three dozen teachers and administrative staff, and more than 1,500 students and parents in a week-long reading effort? How about teamwork, excitement, prizes, reading, reading, reading (did we mention reading?), pizza with our principal and vice principal, silly-string and bubble celebrations, and more than $14,300 in online and cash/check donations?!\r\n\r\nThe PFA is excited to announce that after paying fundraiser expenses and refreshing the PFA budget for the 2016-2017 school year, $10,000 was shifted to the playground budget for improvements. Allocations of the PFA budget can be found in \"<a href=\"http://www.fiepfa.org/fundraising/\">Where it goes</a>\" on the fundraising page.\r\n\r\n2016 marked the school\'s first year using <a href=\"http://www.thegetmovincrew.com/\" target=\"_blank\">The Get Movin\' Crew\'s</a> online platform. About 75 percent of the 442 donations were collected online, while 25 percent of donations were collected via cash and check donations. Although the PFA\'s financial goal was $20,000, considering this was the first event using an online collection service, and there were minimal disruptions to classes, it gained highly enthusiastic, approving nods.\r\n\r\nTHANK YOU to all the parents, students, faculty, administrative staff and event organizers for your help!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" custom_padding=\"||2px|\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-RAT-Overview-201603-14309-LR.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#6370b5\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FREQUENTLY ASKED QUESTIONS</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"What is the Read-a-Thon?\" title=\"What is the Read-a-Thon?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] The Read-a-Thon is FIE’s Parent Faculty Association’s largest fundraiser for the 2015 to 2016 school year. It takes the place of the Boosterthon, and the majority of proceeds benefit the “Invest in Our Playground” campaign. [/et_pb_toggle][et_pb_toggle admin_label=\"Why do students need to register?\" title=\"Why do students need to register?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nTo ease the burden of collecting monies, the PFA enlisted the help of The Get Movin’ Crew, which offers a popular and secure online platform for collecting donations. This year, friends and family can pay via the Internet! However, this only is possible after a student has registered, which is seamless, two-minute process. Registration also helps track progress toward our goal of reaching $20,000. The majority of these funds will be used for the playground.\r\n\r\nIn addition, a student’s personal webpage (which is created by registering) can be used to promote his/her efforts and the cause. For example, students and their parents may share their page with family and friends via e-mail and Facebook.\r\n\r\nAll students who register get a prize!\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Are donations based on minutes read?\" title=\"Are donations based on minutes read?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nThis year we are not asking for pledges for minutes read, but flat donations. If friends and family would like to donate based on how many minutes they think a student will read, a range like the one below is provided on that student’s webpage. (All students who register have a webpage featuring their progress on donations.)\r\n\r\n<strong>Suggested Donations for Minutes Read</strong>\r\n140 minutes..............................$10\r\n141 to 175 minutes...................$20\r\n176 to 210 minutes...................$30\r\n211+ minutes.............................$40\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Why are students and teachers being asked to track their minutes?\" title=\"Why are students and teachers being asked to track their minutes?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nStudents and teachers are being asked to track minutes read from Wednesday, Feb. 17, to Tuesday, Feb. 23, for great prizes and bragging rights!\r\n\r\n<strong>Reading prizes include:</strong>\r\n<ul>\r\n	<li><strong>Top Class Per Grade:</strong> Silly String Celebration for the class AND lunch and dessert for the teacher</li>\r\n	<li><strong>Top Reader Per Class:</strong> Lunch and dessert on stage with our Principal, Mr. Archibald, and Vice Principal, Ms. Marks</li>\r\n	<li><strong>SCHOOL GOAL:</strong> If the school reaches its goal of 250,000 minutes read, there will be a free FUN DAY!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"When does the Read-a-Thon run?\" title=\"When does the Read-a-Thon run?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Here are some important dates:</strong>\r\n<ul>\r\n	<li><strong>Feb. 9:</strong> Information about registering included in Tuesday’s folder.</li>\r\n	<li><strong>Feb. 9 to 16:</strong> Register, register, register, and spread the news (your webpage) to family and friends (e.g., via e-mail and Facebook).</li>\r\n	<li><strong>Feb. 17 to 23:</strong> Read, read, read. Students, log your minutes for great prizes!!! Teachers, log minutes read in class for prizes and bragging rights!</li>\r\n	<li><strong>Feb. 24:</strong> Turn in all logs! Please note that the PFA Read-a-Thon Committee will be tallying totals at 12:30 p.m. Make your minutes matter!</li>\r\n</ul>\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Can parents collect money without having to register their child online?\" title=\"Can parents collect money without having to register their child online?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Yes, however, student-specific webpages make it a breeze to spread the word electronically (which helps raises funds), and lessens the burden of collecting money for parents. But since not everyone is comfortable with e-commerce, we’ve included an envelope with the registration flier on Tuesday, Feb. 9. Please feel free to return that envelope to the school by <strong>Friday, March 4</strong>. [/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','2016 Read-a-Thon','','inherit','closed','closed','','460-revision-v1','','','2016-03-20 19:10:35','2016-03-20 19:10:35','',460,'http://www.fiepfa.org/2016/03/20/460-revision-v1/',0,'revision','',0),(576,1,'2016-03-27 02:25:55','2016-03-27 02:25:55','[et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Kids computer\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Computer-Kids-320w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta admin_label=\"Call To Action\" title=\"Workshop about Florida Standards Assessment Program (FSA) and accountability system\" button_url=\"http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/\" url_new_window=\"off\" button_text=\"Learn more\" use_background_color=\"off\" background_color=\"#6370b5\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"on\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p><strong>When:</strong> 6:30 p.m. on Thursday, March 24, 2016<br /> <strong>Where:</strong> Fleming Island High School, Teacher Training Center</p>\n\n[/et_pb_cta][/et_pb_column][/et_pb_row]','FSA Workshop tease','','publish','closed','closed','','fsa-workshop-tease','','','2016-03-27 02:25:55','2016-03-27 02:25:55','',0,'http://www.fiepfa.org/et_pb_layout/fsa-workshop-tease/',0,'et_pb_layout','',0),(577,1,'2016-03-27 02:26:04','2016-03-27 02:26:04','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option</em>), it also donates $25 of every ticket to the school! Don\'t buy your tickets without coding in <strong>FLEMINGISLAND</strong>! :)\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash/check donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-27 02:26:04','2016-03-27 02:26:04','',83,'http://www.fiepfa.org/2016/03/27/83-revision-v1/',0,'revision','',0),(578,1,'2016-03-27 02:27:45','2016-03-27 02:27:45','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for a Friday or Saturday ticket), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash/check donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-27 02:27:45','2016-03-27 02:27:45','',83,'http://www.fiepfa.org/2016/03/27/83-revision-v1/',0,'revision','',0),(579,1,'2016-03-27 02:32:11','2016-03-27 02:32:11','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-03-27 02:32:11','2016-03-27 02:32:11','',115,'http://www.fiepfa.org/2016/03/27/115-revision-v1/',0,'revision','',0),(580,1,'2016-03-27 02:33:59','2016-03-27 02:33:59','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n\r\nA BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash/check donations!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-03-27 02:33:59','2016-03-27 02:33:59','',83,'http://www.fiepfa.org/2016/03/27/83-revision-v1/',0,'revision','',0),(582,1,'2016-03-27 15:35:18','2016-03-27 15:35:18','[et_pb_blurb admin_label=\"Teacher treats\" title=\"Teacher treats for March 30 thank-you table\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>We\'re in need of homemade or store-bought treats for our ~50 hardworking teachers. If you may please bring goodies to the front office by <strong>2 p.m. on Wednesday, March 30,</strong> for our spread that afternoon, our faculty would love it! Ideas are welcome! <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-teacher\" target=\"_blank\">Sign up here. </a></strong></p><p> </p>\n\n[/et_pb_blurb]','Teacher treats','','publish','closed','closed','','teacher-treats','','','2016-03-27 15:35:18','2016-03-27 15:35:18','',0,'http://www.fiepfa.org/et_pb_layout/teacher-treats/',0,'et_pb_layout','',0),(583,1,'2016-03-27 15:35:28','2016-03-27 15:35:28','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Teacher treats\" title=\"Teacher treats for March 30 thank-you table\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\r\n\r\nWe\'re in need of homemade or store-bought treats for our ~50 hardworking teachers. If you may please bring goodies to the front office by <strong>2 p.m. on Wednesday, March 30,</strong> for our spread that afternoon, our faculty would love it! Ideas are welcome! <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-teacher\" target=\"_blank\">Sign up here. </a></strong>\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-03-27 15:35:28','2016-03-27 15:35:28','',238,'http://www.fiepfa.org/2016/03/27/238-revision-v1/',0,'revision','',0),(585,1,'2016-04-02 16:43:29','2016-04-02 16:43:29','[et_pb_blurb admin_label=\"Teacher treats\" title=\"Teacher treats for March 30 thank-you table\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/brownies-cookies-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>We\'re in need of homemade or store-bought treats for our ~50 hardworking teachers. If you may please bring goodies to the front office by <strong>2 p.m. on Wednesday, March 30,</strong> for our spread that afternoon, our faculty would love it! Ideas are welcome! <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-teacher\" target=\"_blank\">Sign up here. </a></strong></p><p> </p>\n\n[/et_pb_blurb]','Teacher treats','','publish','closed','closed','','teacher-treats-2','','','2016-04-02 16:43:29','2016-04-02 16:43:29','',0,'http://www.fiepfa.org/et_pb_layout/teacher-treats-2/',0,'et_pb_layout','',0),(586,1,'2016-04-02 16:43:49','2016-04-02 16:43:49','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-04-02 16:43:49','2016-04-02 16:43:49','',238,'http://www.fiepfa.org/2016/04/02/238-revision-v1/',0,'revision','',0),(587,2,'2016-04-01 15:49:44','2016-04-01 15:49:44','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-BARB-201604.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | April 2016</a>','The BARB Newsletter | April 2016','','publish','open','open','','the-barb-newsletter-april-2016','','','2016-04-28 17:40:35','2016-04-28 17:40:35','',0,'http://www.fiepfa.org/?p=587',0,'post','',0),(588,1,'2016-04-07 15:48:45','2016-04-07 15:48:45','','FIE-BARB-201604','','inherit','open','closed','','fie-barb-201604','','','2016-04-07 15:48:45','2016-04-07 15:48:45','',587,'http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-BARB-201604.pdf',0,'attachment','application/pdf',0),(589,1,'2016-04-07 15:49:44','2016-04-07 15:49:44','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-BARB-201604.pdf\" target=\"_blank\" rel=\"\">The BARB Newsletter | April 2016</a>','The BARB Newsletter | April 2016','','inherit','closed','closed','','587-revision-v1','','','2016-04-07 15:49:44','2016-04-07 15:49:44','',587,'http://www.fiepfa.org/2016/04/07/587-revision-v1/',0,'revision','',0),(590,2,'2016-03-23 15:58:57','2016-03-23 15:58:57','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to the front office by <strong>Friday, April 15.</strong> Questions? Please contact <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President. <strong> </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n 	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n 	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n 	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','publish','open','open','','make-a-difference-by-becoming-a-pfa-officer','','','2016-06-02 19:40:35','2016-06-02 19:40:35','',0,'http://www.fiepfa.org/?p=590',0,'post','',0),(591,1,'2016-04-07 15:54:27','2016-04-07 15:54:27','','consider joining','','inherit','open','closed','','fie-pfa-nomination-form-2016','','','2016-04-28 19:45:55','2016-04-28 19:45:55','',590,'http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf',0,'attachment','application/pdf',0),(592,1,'2016-04-07 15:54:31','2016-04-07 15:54:31','','About our roles','','inherit','open','closed','','fie-pfa-positions-2016-lr','','','2016-04-07 16:35:21','2016-04-07 16:35:21','',590,'http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf',0,'attachment','application/pdf',0),(593,1,'2016-04-07 15:58:57','2016-04-07 15:58:57','If you\'re interesting in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" rel=\"\">this form</a> and return to <a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a>, Vice President, by <strong>Friday, April 15. </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" rel=\"\">the positions</a>, and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-07 15:58:57','2016-04-07 15:58:57','',590,'http://www.fiepfa.org/2016/04/07/590-revision-v1/',0,'revision','',0),(594,1,'2016-04-07 16:00:13','2016-04-07 16:00:13','If you\'re interesting in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President, by <strong>Friday, April 15. </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong>the positions,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-07 16:00:13','2016-04-07 16:00:13','',590,'http://www.fiepfa.org/2016/04/07/590-revision-v1/',0,'revision','',0),(596,1,'2016-04-07 16:13:43','2016-04-07 16:13:43','','Leader-puzzle-520','','inherit','open','closed','','leader-puzzle-520','','','2016-04-07 16:13:52','2016-04-07 16:13:52','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Leader-puzzle-520.jpg',0,'attachment','image/jpeg',0),(597,1,'2016-04-07 16:21:02','2016-04-07 16:21:02','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_fullwidth_slider admin_label=\"Read-a-thon\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n\n<p>[et_pb_slide heading=\"Success with Read-a-Thon!\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/fundraising/2016-read-a-thon/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Thank-you-library-kid-510w.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]A BIG thank you to all Read-a-Thon supporters! Not only did we amplify reading for seven days, we also raised more than $14,300 in online and cash/check donations!</p>\n<p>[/et_pb_slide]</p>\n\n[/et_pb_fullwidth_slider][/et_pb_section]','Read-a-thon success','','publish','closed','closed','','read-a-thon-success','','','2016-04-07 16:21:02','2016-04-07 16:21:02','',0,'http://www.fiepfa.org/et_pb_layout/read-a-thon-success/',0,'et_pb_layout','',0),(598,1,'2016-04-07 16:26:52','2016-04-07 16:26:52','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>COOL HAPPENINGS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night Thursday, April 7</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>McDonald\'s: 5000 U.S. 17, Orange Park, FL 32003</li>\r\n	<li>TEACHERS WORKING from 5 to 8 p.m.!</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"PFA Officer\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.1em\"] [et_pb_slide heading=\"Make a difference by becoming a PFA officer\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#1000a0\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Leader-puzzle-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n<h3>Deadline: Friday, April 15</h3>\r\nIf you’re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? Please complete a quick form to let us know you\'d like to be considered!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-04-07 16:26:52','2016-04-07 16:26:52','',83,'http://www.fiepfa.org/2016/04/07/83-revision-v1/',0,'revision','',0),(599,1,'2016-04-07 16:27:46','2016-04-07 16:27:46','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President, by <strong>Friday, April 15. </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-07 16:27:46','2016-04-07 16:27:46','',590,'http://www.fiepfa.org/2016/04/07/590-revision-v1/',0,'revision','',0),(600,1,'2016-04-07 16:29:24','2016-04-07 16:29:24','[et_pb_row admin_label=\"Row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" column_padding_mobile=\"on\" template_type=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Cool happenings\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>COOL HAPPENINGS</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row]','Cool happenings','','publish','closed','closed','','cool-happenings','','','2016-04-07 16:29:24','2016-04-07 16:29:24','',0,'http://www.fiepfa.org/et_pb_layout/cool-happenings/',0,'et_pb_layout','',0),(601,1,'2016-04-07 16:29:49','2016-04-07 16:29:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Spirit Night Thursday, April 7</h1>\r\nWe greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!\r\n\r\n<strong>NEXT SPIRIT NIGHT </strong>\r\n<ul>\r\n	<li>McDonald\'s: 5000 U.S. 17, Orange Park, FL 32003</li>\r\n	<li>TEACHERS WORKING from 5 to 8 p.m.!</li>\r\n</ul>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"PFA Officer\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.1em\"] [et_pb_slide heading=\"Make a difference by becoming a PFA officer\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#1000a0\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Leader-puzzle-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n<h3>Deadline: Friday, April 15</h3>\r\nIf you’re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? Please complete a quick form to let us know you\'d like to be considered!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-04-07 16:29:49','2016-04-07 16:29:49','',83,'http://www.fiepfa.org/2016/04/07/83-revision-v1/',0,'revision','',0),(602,1,'2016-04-07 16:30:49','2016-04-07 16:30:49','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President, by <strong>Friday, April 15. </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-07 16:30:49','2016-04-07 16:30:49','',590,'http://www.fiepfa.org/2016/04/07/590-revision-v1/',0,'revision','',0),(603,1,'2016-04-07 16:35:28','2016-04-07 16:35:28','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-07 16:35:28','2016-04-07 16:35:28','',297,'http://www.fiepfa.org/2016/04/07/297-revision-v1/',0,'revision','',0),(604,1,'2016-04-07 16:36:00','2016-04-07 16:36:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-07 16:36:00','2016-04-07 16:36:00','',297,'http://www.fiepfa.org/2016/04/07/297-revision-v1/',0,'revision','',0),(606,1,'2016-04-14 15:42:47','2016-04-14 15:42:47','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Spirit Night Thursday, April 7</h1><p>We greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!</p><p><strong>NEXT SPIRIT NIGHT </strong></p><ul><li>McDonald\'s: 5000 U.S. 17, Orange Park, FL 32003</li><li>TEACHERS WORKING from 5 to 8 p.m.!</li></ul>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Spirit Night','','publish','closed','closed','','spirit-night-2','','','2016-04-14 15:42:47','2016-04-14 15:42:47','',0,'http://www.fiepfa.org/et_pb_layout/spirit-night-2/',0,'et_pb_layout','',0),(608,1,'2016-04-14 15:44:13','2016-04-14 15:44:13','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Spirit night\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Eat-310.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Spirit Night Thursday, April 7</h1><p>We greatly appreciate local restaurant owners who welcome our families for Spirit Night and donate a percentage of sales to Fleming Island Elementary! Take a day off cooking and join us for Spirit Night!</p><p><strong>NEXT SPIRIT NIGHT </strong></p><ul><li>McDonald\'s: 5000 U.S. 17, Orange Park, FL 32003</li><li>TEACHERS WORKING from 5 to 8 p.m.!</li></ul>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Spirit Night - McD','','publish','closed','closed','','spirit-night-mcd','','','2016-04-14 15:44:13','2016-04-14 15:44:13','',0,'http://www.fiepfa.org/et_pb_layout/spirit-night-mcd/',0,'et_pb_layout','',0),(609,1,'2016-04-14 15:44:34','2016-04-14 15:44:34','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"PFA Officer\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.1em\"] [et_pb_slide heading=\"Make a difference by becoming a PFA officer\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#1000a0\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Leader-puzzle-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]\r\n<h3>Deadline: Friday, April 15</h3>\r\nIf you’re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? Please complete a quick form to let us know you\'d like to be considered!\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-04-14 15:44:34','2016-04-14 15:44:34','',83,'http://www.fiepfa.org/2016/04/14/83-revision-v1/',0,'revision','',0),(610,1,'2016-04-18 14:43:46','2016-04-18 14:43:46','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_fullwidth_slider admin_label=\"PFA Officer\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\" header_line_height=\"1.1em\"]\n\n[et_pb_slide heading=\"Make a difference by becoming a PFA officer\" button_text=\"Read more\" button_link=\"http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/\" background_position=\"center_left\" background_size=\"default\" background_color=\"#1000a0\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Leader-puzzle-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"on\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"on\"]<h3>Deadline: Friday, April 15</h3><p>If you’re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? Please complete a quick form to let us know you\'d like to be considered!</p>[/et_pb_slide]\n\n[/et_pb_fullwidth_slider][/et_pb_section]','PFA Officer nomination','','publish','closed','closed','','pfa-officer-nomination','','','2016-04-18 14:43:46','2016-04-18 14:43:46','',0,'http://www.fiepfa.org/et_pb_layout/pfa-officer-nomination/',0,'et_pb_layout','',0),(611,1,'2016-04-18 14:44:10','2016-04-18 14:44:10','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n 	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n 	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-04-18 14:44:10','2016-04-18 14:44:10','',83,'http://www.fiepfa.org/2016/04/18/83-revision-v1/',0,'revision','',0),(612,1,'2016-04-18 14:49:21','2016-04-18 14:49:21','','March 1','','inherit','open','closed','','fie-pfa-minutes-20160301','','','2016-04-18 14:49:33','2016-04-18 14:49:33','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf',0,'attachment','application/pdf',0),(613,1,'2016-04-18 14:50:38','2016-04-18 14:50:38','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-18 14:50:38','2016-04-18 14:50:38','',297,'http://www.fiepfa.org/2016/04/18/297-revision-v1/',0,'revision','',0);
INSERT INTO `wp_posts` VALUES (615,1,'2016-04-21 20:42:17','2016-04-21 20:42:17','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Deadline\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>Please use the form below to submit your volunteer hours for FIE.</h4>\r\n<strong>Deadline: Thursday, May 4, 2017</strong>\r\n\r\nThanks so much for your dedication and gift of time!\r\nYou not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAbsolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2016 in the date field.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nShould you have any questions, please contact Julie Campbell, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>.\r\n\r\n[/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','publish','closed','closed','','volunteer-hours-submission-portal','','','2016-08-15 10:43:48','2016-08-15 10:43:48','',238,'http://www.fiepfa.org/?page_id=615',0,'page','',0),(616,1,'2016-04-21 20:40:53','2016-04-21 20:40:53','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-04-21 20:40:53','2016-04-21 20:40:53','',615,'http://www.fiepfa.org/2016/04/21/615-revision-v1/',0,'revision','',0),(618,1,'2016-04-21 20:51:43','2016-04-21 20:51:43','','Submit hours','','publish','closed','closed','','submit-hours','','','2016-04-21 20:51:43','2016-04-21 20:51:43','',238,'http://www.fiepfa.org/?p=618',8,'nav_menu_item','',0),(620,1,'2016-04-21 21:07:30','2016-04-21 21:07:30','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2015/12/FIE-Clay-County-Volunteer-Handbook-20151024-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-04-21 21:07:30','2016-04-21 21:07:30','',238,'http://www.fiepfa.org/2016/04/21/238-revision-v1/',0,'revision','',0),(621,1,'2016-04-21 21:24:21','2016-04-21 21:24:21','','FIE-Clay-County-Volunteer-Handbook-20160421-LR','','inherit','open','closed','','fie-clay-county-volunteer-handbook-20160421-lr','','','2016-04-21 21:24:21','2016-04-21 21:24:21','',0,'http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf',0,'attachment','application/pdf',0),(622,1,'2016-04-21 21:24:27','2016-04-21 21:24:27','','FIE Volunteer Log 20160421','','inherit','open','closed','','fie-volunteer-log-20160421','','','2016-04-21 21:24:27','2016-04-21 21:24:27','',0,'http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf',0,'attachment','application/pdf',0),(624,1,'2016-04-21 21:27:01','2016-04-21 21:27:01','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Log.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-04-21 21:27:01','2016-04-21 21:27:01','',238,'http://www.fiepfa.org/2016/04/21/238-revision-v1/',0,'revision','',0),(625,1,'2016-04-21 21:28:23','2016-04-21 21:28:23','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-04-21 21:28:23','2016-04-21 21:28:23','',238,'http://www.fiepfa.org/2016/04/21/238-revision-v1/',0,'revision','',0),(626,1,'2016-04-21 21:29:34','2016-04-21 21:29:34','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours by May 5, 2016, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-04-21 21:29:34','2016-04-21 21:29:34','',238,'http://www.fiepfa.org/2016/04/21/238-revision-v1/',0,'revision','',0),(629,3,'2016-06-02 14:44:26','2016-06-02 14:44:26','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li><strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li><strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"wp-image-644 aligncenter\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"397\" height=\"193\" />\r\n\r\nWe look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michel DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','publish','closed','closed','','pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016','','','2016-06-02 21:18:52','2016-06-02 21:18:52','',0,'http://www.fiepfa.org/?p=629',0,'post','',0),(630,1,'2016-04-27 14:33:00','2016-04-27 14:33:00','','Chalk-kids-gears-AS-310w','','inherit','open','closed','','chalk-kids-gears-as-310w','','','2016-04-27 14:33:00','2016-04-27 14:33:00','',629,'http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg',0,'attachment','image/jpeg',0),(631,1,'2016-04-27 14:34:30','2016-04-27 14:34:30','We are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n<div>\r\n\r\n<span style=\"font-size: 13px;\"><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\"><img class=\"alignleft wp-image-630 size-medium\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"300\" height=\"275\" /></a>The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.</span>\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post.  For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n\r\n</div>\r\n<ul>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Vice President, Arlene Manalo, </strong></span>heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\">The <span style=\"color: #4b0082;\"><strong>PFA Secretary, Cheri Johnson,</strong></span> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Treasurer, Michel DeRousse,</strong> </span>plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><strong><span style=\"color: #4b0082;\">Volunteer Officer, Christine Leon Vors</span>t,</strong> has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">A valuable asset to the team includes our <span style=\"color: #4b0082;\"><strong>Home Room Parent Officer, Amanda Vernon</strong></span>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Fundraising Officer, Laura Minervini,</strong></span> has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.   </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Susan Mabry, our Publicity Officer, </strong></span>is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Stephanie Boccieri is our Communications Officer</strong></span>, who without fail coordinates and publishes our BARB. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">PFA’s <span style=\"color: #4b0082;\"><strong>School Programs Liaison Officer, Meredith Hoffman, </strong></span>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our school <span style=\"color: #4b0082;\"><strong>Principal, Dana Archibald,</strong></span> plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Kim Marks, FIE Vice Principal,</strong></span> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Linda Kupfer, FIE School Counselor,</strong></span> volunteers her time to attend PFA meetings and voices concerns for faculty.</span></li>\r\n</ul>\r\n<div>\r\n\r\n<span style=\"font-size: 13px;\">We greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.</span>\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n</div>','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:34:30','2016-04-27 14:34:30','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(632,1,'2016-04-27 14:36:20','2016-04-27 14:36:20','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n<div>\r\n\r\n<span style=\"font-size: 13px;\"><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\"><img class=\"alignleft wp-image-630 size-medium\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"300\" height=\"275\" /></a>The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.</span>\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post.  For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n\r\n</div>\r\n<ul>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Vice President, Arlene Manalo, </strong></span>heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\">The <span style=\"color: #4b0082;\"><strong>PFA Secretary, Cheri Johnson,</strong></span> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Treasurer, Michel DeRousse,</strong> </span>plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><strong><span style=\"color: #4b0082;\">Volunteer Officer, Christine Leon Vors</span>t,</strong> has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">A valuable asset to the team includes our <span style=\"color: #4b0082;\"><strong>Home Room Parent Officer, Amanda Vernon</strong></span>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our <span style=\"color: #4b0082;\"><strong>Fundraising Officer, Laura Minervini,</strong></span> has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.   </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Susan Mabry, our Publicity Officer, </strong></span>is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Stephanie Boccieri is our Communications Officer</strong></span>, who without fail coordinates and publishes our BARB. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">PFA’s <span style=\"color: #4b0082;\"><strong>School Programs Liaison Officer, Meredith Hoffman, </strong></span>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event. </span></li>\r\n 	<li><span style=\"font-size: 13px;\">Our school <span style=\"color: #4b0082;\"><strong>Principal, Dana Archibald,</strong></span> plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Kim Marks, FIE Vice Principal,</strong></span> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.  </span></li>\r\n 	<li><span style=\"font-size: 13px;\"><span style=\"color: #4b0082;\"><strong>Linda Kupfer, FIE School Counselor,</strong></span> volunteers her time to attend PFA meetings and voices concerns for faculty.</span></li>\r\n</ul>\r\n<div>\r\n\r\n<span style=\"font-size: 13px;\">We greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.</span>\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n</div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:36:20','2016-04-27 14:36:20','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(633,1,'2016-04-27 14:37:47','2016-04-27 14:37:47','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"250\" height=\"230\" />The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post. For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n\r\n&nbsp;\r\n\r\nOur Vice President, Arlene Manalo, heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\nThe PFA Secretary, Cheri Johnson, has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.\r\nOur Treasurer, Michel DeRousse, plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\nVolunteer Officer, Christine Leon Vorst, has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up.\r\nA valuable asset to the team includes our Home Room Parent Officer, Amanda Vernon. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\nOur Fundraising Officer, Laura Minervini, has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.\r\nSusan Mabry, our Publicity Officer, is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\nStephanie Boccieri is our Communications Officer, who without fail coordinates and publishes our BARB.\r\nPFA’s School Programs Liaison Officer, Meredith Hoffman, coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event.\r\nOur school Principal, Dana Archibald, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\nKim Marks, FIE Vice Principal, joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.\r\nLinda Kupfer, FIE School Counselor, volunteers her time to attend PFA meetings and voices concerns for faculty.\r\nWe greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n<div>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<div></div>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:37:47','2016-04-27 14:37:47','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(634,1,'2016-04-27 14:39:52','2016-04-27 14:39:52','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"250\" height=\"230\" />The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post. For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo</strong>, heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li>The <strong>PFA Secretary, Cheri Johnson</strong>, has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse</strong>, plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li><strong>Volunteer Officer, Christine Leon Vors</strong>t, has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon</strong>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li>Our <strong>Fundraising Officer, Laura Minervini</strong>, has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.</li>\r\n 	<li><strong>Susan Mabry, our Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer</strong>, who without fail coordinates and publishes our BARB.\r\nPFA’s School Programs Liaison Officer, Meredith Hoffman, coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor</strong>, volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:39:52','2016-04-27 14:39:52','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(635,1,'2016-04-27 14:41:45','2016-04-27 14:41:45','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post. For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo</strong>, heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li>The <strong>PFA Secretary, Cheri Johnson</strong>, has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse</strong>, plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li><strong>Volunteer Officer, Christine Leon Vors</strong>t, has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon</strong>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li>Our <strong>Fundraising Officer, Laura Minervini</strong>, has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.</li>\r\n 	<li><strong>Susan Mabry, our Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer</strong>, who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman,</strong> coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor</strong>, volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:41:45','2016-04-27 14:41:45','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(636,1,'2016-04-27 14:42:35','2016-04-27 14:42:35','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post. For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo</strong>, heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li>The <strong>PFA Secretary, Cheri Johnson</strong>, has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse</strong>, plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li><strong>Volunteer Officer, Christine Leon Vors</strong>t, has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon</strong>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li>Our <strong>Fundraising Officer, Laura Minervini</strong>, has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.</li>\r\n 	<li><strong>Susan Mabry, our Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer</strong>, who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman,</strong> coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor</strong>, volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-27 14:42:35','2016-04-27 14:42:35','',629,'http://www.fiepfa.org/2016/04/27/629-revision-v1/',0,'revision','',0),(644,1,'2016-04-27 16:36:52','2016-04-27 16:36:52','','Welcome-hands-kids-1080w','','inherit','open','closed','','welcome-hands-kids-1080w','','','2016-04-27 16:37:06','2016-04-27 16:37:06','',0,'http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w.jpg',0,'attachment','image/jpeg',0),(645,1,'2016-04-27 16:58:18','2016-04-27 16:58:18','','The rules we follow','','inherit','open','closed','','fie-pfa-bylaws-2015-2016','','','2016-04-27 16:58:31','2016-04-27 16:58:31','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2015-2016.pdf',0,'attachment','application/pdf',0),(646,1,'2016-04-27 16:59:48','2016-04-27 16:59:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2015-2016.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-27 16:59:48','2016-04-27 16:59:48','',297,'http://www.fiepfa.org/2016/04/27/297-revision-v1/',0,'revision','',0),(647,1,'2016-04-27 17:00:20','2016-04-27 17:00:20','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS\r\n\r\n</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2015-2016.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-27 17:00:20','2016-04-27 17:00:20','',297,'http://www.fiepfa.org/2016/04/27/297-revision-v1/',0,'revision','',0),(648,1,'2016-04-27 17:02:00','2016-04-27 17:02:00','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2015-2016.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-27 17:02:00','2016-04-27 17:02:00','',297,'http://www.fiepfa.org/2016/04/27/297-revision-v1/',0,'revision','',0),(649,1,'2016-04-27 17:04:05','2016-04-27 17:04:05','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n<br>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2015-2016.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-27 17:04:05','2016-04-27 17:04:05','',297,'http://www.fiepfa.org/2016/04/27/297-revision-v1/',0,'revision','',0),(651,1,'2016-04-28 17:45:07','2016-04-28 17:45:07','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe are so excited to tell you about the wonderful things that have occurred throughout the 2015 to 2016 school year here at Fleming Island Elementary. The PFA plays an integral role in the success of your children’s education and experiences. As always, the mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and enriching the learning environment. We have been successful in expanding open communication between the PFA and parents, as well as school faculty and administration.\r\n\r\nThe success of the PFA is a team effort.  The addition of some valuable players has assisted with the improvement of communication via email with the volunteers and parents as well as the creation of the PFA website. The website allows FIE families to follow all the wonderful things that are being brought to the forefront at FIE.\r\n\r\nThis year we have moved closer to our playground goal by increasing funding that has been allocated to achieving this goal. We have strengthened the bond with board members as well as the district and its superintendent. We are proud of the progress that has been made throughout the year.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />The PFA is all about teamwork, and I would like to take just a few moments to thank our team for all their contributions in making FIE a success.\r\n\r\nSome of our officers are boots-on-the-ground and contribute outside of their official PFA post. For example, several officers also share their time as homeroom parents. There are others who work outside of their board positions and continue to devote their time to FIE in an effort to improve the environment of the children that attend our school.\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo</strong>, heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li>The <strong>PFA Secretary, Cheri Johnson</strong>, has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with the BYO Recreation to discuss phase one of the playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse</strong>, plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li><strong>Volunteer Officer, Christine Leon Vorst</strong>, has been invaluable in creating the FIE PFA website. It has allowed FIE families to follow activities and news regarding FIE online and through email, creating a more successful way to effectively communicate. She also overhauled communication to volunteers and implemented an efficient way to sign up.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon</strong>. She has stepped up and is in playing a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li>Our <strong>Fundraising Officer, Laura Minervini</strong>, has led the way for PFA money-raising activities, including the playground project that yielded $14,000 toward our goal and efforts with the Read-a-Thon.</li>\r\n 	<li><strong>Susan Mabry, our Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer</strong>, who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman,</strong> coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers area available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor</strong>, volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. It’s been an honor to represent you and your children throughout the year and improve the environment they come to on a daily basis. Looking into the future of FIE, as President I would like to thank all the team members on our current board and thank you for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those that are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.  I’m looking forward to the new members who will bring fresh ideas and energy to the upcoming school year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPFA President\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016','','inherit','closed','closed','','629-revision-v1','','','2016-04-28 17:45:07','2016-04-28 17:45:07','',629,'http://www.fiepfa.org/2016/04/28/629-revision-v1/',0,'revision','',0),(652,1,'2016-04-28 19:25:18','2016-04-28 19:25:18','','The rules we follow','','inherit','open','closed','','fie-pfa-bylaws-2012','','','2016-04-28 19:25:47','2016-04-28 19:25:47','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf',0,'attachment','application/pdf',0),(653,1,'2016-04-28 19:29:50','2016-04-28 19:29:50','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to the front office by <strong>Friday, April 15.</strong> Questions? Contact <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President. <strong> </strong>\n\nTo qualify, candidates must be:\n<ol>\n 	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\n 	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\n 	<li>Hold their elected position for the entire school year</li>\n</ol>\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-autosave-v1','','','2016-04-28 19:29:50','2016-04-28 19:29:50','',590,'http://www.fiepfa.org/2016/04/28/590-autosave-v1/',0,'revision','',0),(654,1,'2016-04-28 19:30:07','2016-04-28 19:30:07','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to the front office by <strong>Friday, April 15.</strong> Questions? Contact <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President. <strong> </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n 	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n 	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n 	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-28 19:30:07','2016-04-28 19:30:07','',590,'http://www.fiepfa.org/2016/04/28/590-revision-v1/',0,'revision','',0),(655,1,'2016-04-28 19:32:50','2016-04-28 19:32:50','If you\'re interested in volunteering in a leadership role, why not join the Parent Faculty Association as an officer? To be considered for election, please complete <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\" target=\"_blank\" rel=\"\">this form</a></strong> and return to the front office by <strong>Friday, April 15.</strong> Questions? Please contact <strong><a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">Arlene Manalo</a></strong>, Vice President. <strong> </strong>\r\n\r\nTo qualify, candidates must be:\r\n<ol>\r\n 	<li>A parent or guardian of a child attending Fleming Island Elementary;</li>\r\n 	<li>Willing to attend all board meetings and carry out responsibilities of their office; and</li>\r\n 	<li>Hold their elected position for the entire school year</li>\r\n</ol>\r\nLearn all about <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">the positions</a>,</strong> and thanks for your consideration and support!','Make a difference by becoming a PFA officer','','inherit','closed','closed','','590-revision-v1','','','2016-04-28 19:32:50','2016-04-28 19:32:50','',590,'http://www.fiepfa.org/2016/04/28/590-revision-v1/',0,'revision','',0),(656,1,'2016-04-28 19:41:58','2016-04-28 19:41:58','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-28 19:41:58','2016-04-28 19:41:58','',297,'http://www.fiepfa.org/2016/04/28/297-revision-v1/',0,'revision','',0),(657,1,'2016-04-28 19:46:21','2016-04-28 19:46:21','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\">consider joining</a></strong>, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-28 19:46:21','2016-04-28 19:46:21','',297,'http://www.fiepfa.org/2016/04/28/297-revision-v1/',0,'revision','',0),(659,1,'2016-04-28 19:49:53','2016-04-28 19:49:53','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-28 19:49:53','2016-04-28 19:49:53','',297,'http://www.fiepfa.org/2016/04/28/297-revision-v1/',0,'revision','',0),(660,1,'2016-04-28 19:51:37','2016-04-28 19:51:37','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\">consider joining</a></strong> or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>May 3</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-04-28 19:51:37','2016-04-28 19:51:37','',297,'http://www.fiepfa.org/2016/04/28/297-revision-v1/',0,'revision','',0),(661,1,'2016-04-30 15:49:52','2016-04-30 15:49:52','<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n 	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n 	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.','Get discounted tickets to The Player\'s Championship and support Fleming Island Elementary','','private','open','open','','get-discounted-tickets-to-the-players-championship-and-support-fleming-island-elementary','','','2016-04-30 15:52:53','2016-04-30 15:52:53','',0,'http://www.fiepfa.org/?p=661',0,'post','',0),(662,1,'2016-04-30 15:49:25','2016-04-30 15:49:25','<h1>Get discounted tickets to the Player\'s Championship!</h1>\r\n<h3>AND, support Fleming Island Elementary!</h3>\r\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\r\n\r\n<strong>Use our promo code, FLEMINGISLAND!</strong>\r\n\r\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\r\n\r\n<strong>Help us spread the word! Some ideas:</strong>\r\n<ul>\r\n 	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\r\n 	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\r\n</ul>\r\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.','Get discounted tickets to The Player\'s Championship and support Fleming Island Elementary','','inherit','closed','closed','','661-revision-v1','','','2016-04-30 15:49:25','2016-04-30 15:49:25','',661,'http://www.fiepfa.org/2016/04/30/661-revision-v1/',0,'revision','',0),(663,1,'2016-04-30 15:53:42','2016-04-30 15:53:42','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"2_3\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Get discounted tickets to the Player\'s Championship!</h1>\n<h3>AND, support Fleming Island Elementary!</h3>\n<strong>May 10 to 16, 2016  |  Ponte Vedra Beach, Fla. </strong>\n\n<strong>Use our promo code, FLEMINGISLAND!</strong>\n\nChip in for Youth not only allows you to buy TPC Sawgrass tickets at a discount ($45 each, <em>the most affordable option </em>for Friday and Saturday), it also donates $25 of every ticket to the school!\n\n<strong>Help us spread the word! Some ideas:</strong>\n<ul>\n 	<li>Mention the program and promo code (<strong>FLEMINGISLAND</strong>) to friends and family on Facebook.</li>\n 	<li>Print and share <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Chip-in-for-Youth-TPC-2016-Flier.pdf\" target=\"_blank\" rel=\"\">this flier</a></strong> with your colleagues and customers.</li>\n</ul>\nPurchase tickets via <a href=\"http://www.ticketmaster.com/event/22004F3DA78D779B?brand=pgatour&amp;camefrom=cfc_pgatour_tpc_16chipin\" target=\"_blank\">Ticketmaster</a>.\n\n[/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"TPC\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Chip-in-for-youth-2016-logo-320.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][/et_pb_row][/et_pb_section]','Chip in For Youth 2016','','publish','closed','closed','','chip-in-for-youth-2016','','','2016-04-30 15:53:42','2016-04-30 15:53:42','',0,'http://www.fiepfa.org/et_pb_layout/chip-in-for-youth-2016/',0,'et_pb_layout','',0),(664,1,'2016-04-30 15:53:48','2016-04-30 15:53:48','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"]\r\n\r\n\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"]\r\n\r\nGet e-BARB and other news right to your inbox!\r\n\r\n[/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n\r\n\r\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"]\r\n\r\n\r\n\r\n[/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"]\r\n\r\nHow we navigate\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-04-30 15:53:48','2016-04-30 15:53:48','',83,'http://www.fiepfa.org/2016/04/30/83-revision-v1/',0,'revision','',0),(666,1,'2016-04-30 15:54:52','2016-04-30 15:54:52','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n[et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide]\r\n\r\n[/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nLaura Minervini\r\nFundraising Lead\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\n<ul>\r\n	<li>Playground improvements</li>\r\n	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n	<li>The BARB newsletter printing</li>\r\n	<li>Property enhancements</li>\r\n	<li>Spirit days</li>\r\n	<li>Fundraising (e.g., prizes and external administration)</li>\r\n	<li>Grants</li>\r\n	<li>Student lunch support</li>\r\n	<li>Community service projects (e.g., Angel Tree)</li>\r\n	<li>Emergency fund</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n	<li>Take a picture of your receipt.</li>\r\n	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n	<li>Find Fleming Island Elementary.</li>\r\n	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n\r\n\r\n\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_document]\r\n\r\n[/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-04-30 15:54:52','2016-04-30 15:54:52','',115,'http://www.fiepfa.org/2016/04/30/115-revision-v1/',0,'revision','',0),(667,1,'2016-08-15 10:42:51','2016-08-15 10:42:51','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Deadline\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>Please use the form below to submit your volunteer hours for FIE.</h4>\r\n<strong>Deadline: Thursday, May 4, 2017</strong>\r\n\r\nThanks so much for your dedication and gift of time!\r\nYou not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Absolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field. [/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nShould you have any questions, please contact Julie Campbell, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>.\r\n\r\n[/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-autosave-v1','','','2016-08-15 10:42:51','2016-08-15 10:42:51','',615,'http://www.fiepfa.org/2016/05/01/615-autosave-v1/',0,'revision','',0),(668,1,'2016-05-01 01:30:32','2016-05-01 01:30:32','[et_pb_section fullwidth=\"off\" specialty=\"off\" admin_label=\"Section\" transparent_background=\"off\" background_color=\"#673ab7\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_margin=\"||0px|\"]\r\n\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\nPlease use this form to submit your volunteer hours for Fleming Island Elementary. If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field.\r\n\r\nShould you have any questions, please contact Christine Leon Vorst, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong></font>.\r\n\r\nThanks so much for your dedication and gift of time! You not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://goo.gl/forms/vMZfRv5Q7K&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;2000px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-05-01 01:30:32','2016-05-01 01:30:32','',615,'http://www.fiepfa.org/2016/05/01/615-revision-v1/',0,'revision','',0),(669,1,'2016-05-01 01:34:44','2016-05-01 01:34:44','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nPlease use this form to submit your volunteer hours for Fleming Island Elementary. If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field.\r\n\r\nShould you have any questions, please contact Christine Leon Vorst, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>.\r\n\r\nThanks so much for your dedication and gift of time! You not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][et_pb_code admin_label=\"Code\"]&lt;iframe src=&quot;http://goo.gl/forms/vMZfRv5Q7K&quot; name=&quot;frame1&quot; scrolling=&quot;auto&quot; frameborder=&quot;no&quot; align=&quot;center&quot; height = &quot;2000px&quot; width = &quot;1300px&quot;&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-05-01 01:34:44','2016-05-01 01:34:44','',615,'http://www.fiepfa.org/2016/05/01/615-revision-v1/',0,'revision','',0),(670,1,'2016-05-01 21:53:37','2016-05-01 21:53:37','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\n\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\nBased on your availability and coordination with the teacher.\n\n<strong>Contacts      </strong>\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contacts         </strong>\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contacts     </strong>\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Needed for:</h1>\n<strong>Grade(s): Teacher\n</strong>PK: Patty Toole\nP1: llisa Hamilton\n1: Lana Doane\n2: Mimi Harris\n3: Michelle Weeks\n5: Pat Aschinger-Lee\n6: Mary Michaels\nK to 2: Rebekka Mathews\nK to 2: Marion Earnest\n3 to 6: Cheryl Shodd\n3 to 6: Christina Mana\nMultigrades: Renee Collins\n\n<strong>Contact</strong>\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contact  </strong>\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contacts      </strong>\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contact  </strong>\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\n\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<strong>Contact</strong>\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\n\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section]','FAQs','','publish','closed','closed','','faqs','','','2016-05-01 21:53:37','2016-05-01 21:53:37','',0,'http://www.fiepfa.org/et_pb_layout/faqs/',0,'et_pb_layout','',0),(671,1,'2016-05-01 22:16:45','2016-05-01 22:16:45','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Please use the form below to submit your volunteer hours for FIE.\r\n\r\nDeadline: Thursday, May 5, 2016\r\n\r\nThanks so much for your dedication and gift of time! You not only make a difference to our children, but also our teachers and school!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Absolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field. [/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Already submitted time\" title=\"What if I\'ve already submitted my time to the Volunteer Officer or entered it into the school\'s computer?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nYou\'re golden! Christine Leon Vorst, Volunteer Officer, will ensure any logs or notes with times left in her mailbox in the copy room are entered in the new portal. Hours entered into the school\'s computer in the copy room have been documented.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Should you have any questions, please contact Christine Leon Vorst, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>. [/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-05-01 22:16:45','2016-05-01 22:16:45','',615,'http://www.fiepfa.org/2016/05/01/615-revision-v1/',0,'revision','',0),(672,1,'2016-05-01 23:07:50','2016-05-01 23:07:50','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>Please use the form below to submit your volunteer hours for FIE.\r\n\r\n<strong>Deadline: Thursday, May 5, 2016\r\n\r\n</strong>Thanks so much for your dedication and gift of time!\r\nYou not only make a difference to our children, but also our teachers and school!</h4>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Absolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field. [/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Already submitted time\" title=\"What if I\'ve already submitted my time to the Volunteer Officer or entered it into the school\'s computer?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] You\'re golden! Christine Leon Vorst, Volunteer Officer, will ensure any logs or notes with times left in her mailbox in the copy room are entered in the new portal. Hours entered into the school\'s computer in the copy room have been documented. [/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Should you have any questions, please contact Christine Leon Vorst, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>. [/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-05-01 23:07:50','2016-05-01 23:07:50','',615,'http://www.fiepfa.org/2016/05/01/615-revision-v1/',0,'revision','',0),(673,1,'2016-05-03 14:35:42','2016-05-03 14:35:42','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address) via Google Forms (Volunteer Hours Submission Form) and subscription form.\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription form. For this, you must provide contact information (like name and email address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletter and news feed via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites (e.g., SignUpGenius or MailChimp). We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nOur site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\n<em><strong>School address:</strong></em> 4425 Lakeshore Dr, Fleming Island, FL 32003\r\n<em><strong>Email address:</strong></em> <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a><em><strong>Telephone number: </strong></em>904-278-2020\r\n\r\nEffective as of Jan. 1, 2016','Privacy Policy','','publish','closed','closed','','privacy-policy','','','2016-05-03 15:12:43','2016-05-03 15:12:43','',0,'http://www.fiepfa.org/?page_id=673',0,'page','',0),(674,1,'2016-05-03 14:35:42','2016-05-03 14:35:42','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information. When you submit sensitive information via the website, your information is protected both online and offline.\r\n\r\nWherever we collect sensitive information (such as credit card data), that information is encrypted and transmitted to us in a secure way. You can verify this by looking for a closed-lock icon at the bottom of your web browser, or looking for “https” at the beginning of the address of the web page. While we use encryption to protect sensitive information transmitted online, we also protect your information offline. Only employees who need the information to perform a specific job (for example, billing or customer service) are granted access to personally identifiable information. The computers/servers in which we store personally identifiable information are kept in a secure environment.\r\n\r\n<strong>Registration</strong>\r\nIn order to use this website to request information from us or as a client, a user must first complete the registration form. During registration a user is required to give certain information (such as name and email address). This information is used to contact you about the products/services on our site in which you have expressed interest. <strong> </strong>\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription and order forms. For both, you must provide contact information (like name and address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletters via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. For instance, when we use a cookie to identify you, you would not have to log in a password more than once, thereby saving time while on our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nFrom time-to-time our site requests information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\nSchool address: 4425 Lakeshore Dr, Fleming Island, FL 32003\r\nEmail Address: <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a>Telephone number: 904-278-2020\r\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-revision-v1','','','2016-05-03 14:35:42','2016-05-03 14:35:42','',673,'http://www.fiepfa.org/2016/05/03/673-revision-v1/',0,'revision','',0),(676,1,'2016-05-03 15:12:35','2016-05-03 15:12:35','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\n<ul>\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\n 	<li>What choices are available to you regarding the use of your data.</li>\n 	<li>The security procedures in place to protect the misuse of your information.</li>\n 	<li>How you can correct any inaccuracies in the information.</li>\n</ul>\n<strong>Information collection, use and sharing</strong>\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\n\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\n\nUnless you ask us not to, we may contact you via email in the future to tell you about changes to this privacy policy.\n\n<strong>Your access to and control over information</strong>\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\n<ul>\n 	<li>Ask what data we have about you, if any.</li>\n 	<li>Ask us to change/correct any data we have about you.</li>\n 	<li>Ask us to delete any data we have about you.</li>\n 	<li>Express any concern you have about our use of your data.</li>\n</ul>\n<strong>Security</strong>\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address) via Google Forms (Volunteer Hours Submission Form) and subscription form.\n\n<strong>Subscriptions </strong>\nWe request information from you on our subscription form. For this, you must provide contact information (like name and email address).\n\n<strong>Our relationship with MailChimp</strong>\nWe deliver your newsletter and news feed via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\n\n<strong>Email opt-out</strong>\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\n\n<strong>Cookies</strong>\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\n\n<strong>Links\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites (e.g., SignUpGenius or MailChimp). We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\n\n<strong>Surveys &amp; Contests</strong>\nOur site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\n\n<strong>Updates</strong>\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\n\n<strong>Contact us</strong>\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\n\n<em><strong>School address:</strong></em> 4425 Lakeshore Dr, Fleming Island, FL 32003\n<em><strong>Email address:</strong></em> <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\n</a><em><strong>Telephone number: </strong></em>904-278-2020\n\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-autosave-v1','','','2016-05-03 15:12:35','2016-05-03 15:12:35','',673,'http://www.fiepfa.org/2016/05/03/673-autosave-v1/',0,'revision','',0),(677,1,'2016-05-03 14:51:28','2016-05-03 14:51:28','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address).\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription and order forms. For both, you must provide contact information (like name and address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletters via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. For instance, when we use a cookie to identify you, you would not have to log in a password more than once, thereby saving time while on our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nFrom time-to-time our site requests information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\nSchool address: 4425 Lakeshore Dr, Fleming Island, FL 32003\r\nEmail Address: <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a>Telephone number: 904-278-2020\r\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-revision-v1','','','2016-05-03 14:51:28','2016-05-03 14:51:28','',673,'http://www.fiepfa.org/2016/05/03/673-revision-v1/',0,'revision','',0),(678,1,'2016-05-03 14:54:18','2016-05-03 14:54:18','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address).\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription forms. For this, you must provide contact information (like name and email address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletter and news feed via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. For instance, when we use a cookie to identify you, you would not have to log in a password more than once, thereby saving time while on our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nFrom time-to-time our site requests information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\nSchool address: 4425 Lakeshore Dr, Fleming Island, FL 32003\r\nEmail Address: <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a>Telephone number: 904-278-2020\r\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-revision-v1','','','2016-05-03 14:54:18','2016-05-03 14:54:18','',673,'http://www.fiepfa.org/2016/05/03/673-revision-v1/',0,'revision','',0),(679,1,'2016-05-03 14:56:27','2016-05-03 14:56:27','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about specials, new products or services, or changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address).\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription forms. For this, you must provide contact information (like name and email address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletter and news feed via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. For instance, when we use a cookie to identify you, you would not have to log in a password more than once, thereby saving time while on our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nFrom time-to-time our site requests information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\n<em><strong>School address:</strong></em> 4425 Lakeshore Dr, Fleming Island, FL 32003\r\n<em><strong>Email address:</strong></em> <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a><em><strong>Telephone number: </strong></em>904-278-2020\r\n\r\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-revision-v1','','','2016-05-03 14:56:27','2016-05-03 14:56:27','',673,'http://www.fiepfa.org/2016/05/03/673-revision-v1/',0,'revision','',0),(680,1,'2016-05-03 15:12:43','2016-05-03 15:12:43','This privacy policy discloses the privacy practices for <a href=\"http://www.fiepfa.org\">fiepfa.org</a>. This privacy policy applies solely to information collected by this web site. It will notify you of the following:\r\n<ul>\r\n 	<li>What personally identifiable information is collected from you through the web site, how it is used and with whom it may be shared.</li>\r\n 	<li>What choices are available to you regarding the use of your data.</li>\r\n 	<li>The security procedures in place to protect the misuse of your information.</li>\r\n 	<li>How you can correct any inaccuracies in the information.</li>\r\n</ul>\r\n<strong>Information collection, use and sharing</strong>\r\nWe are the sole owners of the information collected on this site. We only have access to/collect information that you voluntarily give us via email or other direct contact from you. We will not sell or rent this information to anyone.\r\n\r\nWe will use your information to respond to you, regarding the reason you contacted us. We will not share your information with any third party outside of our organization, other than as necessary to fulfill your request.\r\n\r\nUnless you ask us not to, we may contact you via email in the future to tell you about changes to this privacy policy.\r\n\r\n<strong>Your access to and control over information</strong>\r\nYou may opt out of any future contacts from us at any time. You can do the following at any time by contacting us via the email address or phone number given on our website. You also may:\r\n<ul>\r\n 	<li>Ask what data we have about you, if any.</li>\r\n 	<li>Ask us to change/correct any data we have about you.</li>\r\n 	<li>Ask us to delete any data we have about you.</li>\r\n 	<li>Express any concern you have about our use of your data.</li>\r\n</ul>\r\n<strong>Security</strong>\r\nWe take precautions to protect your information, and thus, only will collect the minimum information necessary and that which is generally public (e.g., first name, last name and email address) via Google Forms (Volunteer Hours Submission Form) and subscription form.\r\n\r\n<strong>Subscriptions </strong>\r\nWe request information from you on our subscription form. For this, you must provide contact information (like name and email address).\r\n\r\n<strong>Our relationship with MailChimp</strong>\r\nWe deliver your newsletter and news feed via MailChimp. By using the MailChimp system, you agree to abide by the company\'s terms and conditions and fall under its <a href=\"http://mailchimp.com/legal/privacy/\" target=\"_blank\">privacy policy</a>.\r\n\r\n<strong>Email opt-out</strong>\r\nIf you wish to subscribe to our email alerts, updates, blog, etc., we ask for contact information such as name and email address. This information is stored in MailChimp and will never be rented or sold. Should you wish to unsubscribe at any time, a link to do so is provided in every email.\r\n\r\n<strong>Cookies</strong>\r\nWe use “cookies” on this site. A cookie is a piece of data stored on a site visitor’s hard drive to help us improve your access to our site and identify repeat visitors to our site. Cookies can also enable us to track and target the interests of our users to enhance the experience on our site. Usage of a cookie is in no way linked to any personally identifiable information on our site.\r\n\r\n<strong>Links\r\n</strong>This web site contains links to other sites. Please be aware that we are not responsible for the content or privacy practices of such other sites (e.g., SignUpGenius or MailChimp). We encourage our users to be aware when they leave our site and to read the privacy statements of any other site that collects personally identifiable information.\r\n\r\n<strong>Surveys &amp; Contests</strong>\r\nOur site may request information via surveys or contests. Participation in these surveys or contests is completely voluntary and you may choose whether or not to participate and therefore disclose this information. Information requested may include contact information (such as name and shipping address), and demographic information (such as zip code). Contact information will be used to notify the winners and award prizes. Survey information will be used for purposes of monitoring or improving the use and satisfaction of this site.\r\n\r\n<strong>Updates</strong>\r\nOur Privacy Policy may change from time to time and all updates will be posted on this page.\r\n\r\n<strong>Contact us</strong>\r\nThe Fleming Island Elementary Parent Faculty Association welcomes your questions or comments regarding this Privacy Policy.\r\n\r\n<em><strong>School address:</strong></em> 4425 Lakeshore Dr, Fleming Island, FL 32003\r\n<em><strong>Email address:</strong></em> <a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com\r\n</a><em><strong>Telephone number: </strong></em>904-278-2020\r\n\r\nEffective as of Jan. 1, 2016','Privacy Policy','','inherit','closed','closed','','673-revision-v1','','','2016-05-03 15:12:43','2016-05-03 15:12:43','',673,'http://www.fiepfa.org/2016/05/03/673-revision-v1/',0,'revision','',0),(683,1,'2016-05-10 20:37:25','2016-05-10 20:37:25','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2>Other FIE News</h2>\r\n<a href=\"http://fie.oneclay.net/news\" target=\"_blank\">\r\n(Non PFA; redirects you to oneclay.net)</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-05-10 20:37:25','2016-05-10 20:37:25','',111,'http://www.fiepfa.org/2016/05/10/111-revision-v1/',0,'revision','',0),(684,1,'2016-05-10 20:41:05','2016-05-10 20:41:05','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a href=\"http://fie.oneclay.net/news\">Other FIE News</a></h2>\r\n<a href=\"http://fie.oneclay.net/news\" target=\"_blank\">\r\n\r\n</a>\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-05-10 20:41:05','2016-05-10 20:41:05','',111,'http://www.fiepfa.org/2016/05/10/111-revision-v1/',0,'revision','',0),(685,1,'2016-05-10 20:45:37','2016-05-10 20:45:37','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" background_color=\"#2ea3f2\" inner_shadow=\"on\" parallax=\"off\"][et_pb_fullwidth_header admin_label=\"Fullwidth Header\" title=\"News and Events\" background_layout=\"light\" text_orientation=\"center\" header_fullscreen=\"off\" header_scroll_down=\"off\" background_color=\"#bfcaff\" parallax=\"off\" parallax_method=\"off\" content_orientation=\"center\" image_orientation=\"center\" custom_button_one=\"off\" button_one_letter_spacing=\"0\" button_one_use_icon=\"default\" button_one_icon_placement=\"right\" button_one_on_hover=\"on\" button_one_letter_spacing_hover=\"0\" custom_button_two=\"off\" button_two_letter_spacing=\"0\" button_two_use_icon=\"default\" button_two_icon_placement=\"right\" button_two_on_hover=\"on\" button_two_letter_spacing_hover=\"0\" title_font_size=\"39px\"] [/et_pb_fullwidth_header][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"on\"][et_pb_column type=\"3_4\" specialty_columns=\"3\"][et_pb_row_inner admin_label=\"row_inner\"][et_pb_column_inner type=\"4_4\" saved_specialty_column_type=\"3_4\"][et_pb_blog admin_label=\"Blog\" fullwidth=\"on\" posts_number=\"6\" show_thumbnail=\"on\" show_content=\"off\" show_author=\"on\" show_date=\"on\" show_categories=\"on\" show_pagination=\"on\" background_layout=\"light\" include_categories=\"5,3,4\" show_more=\"on\" show_comments=\"off\" offset_number=\"0\" use_overlay=\"off\" use_dropshadow=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_blog][/et_pb_column_inner][/et_pb_row_inner][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_sidebar admin_label=\"Sidebar\" orientation=\"right\" background_layout=\"light\"] [/et_pb_sidebar][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h2><a href=\"http://fie.oneclay.net/news\" target=\"_blank\">Other FIE News</a></h2>\r\n(Redirects you to fie.oneclay.net.)\r\n\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','News and Events','','inherit','closed','closed','','111-revision-v1','','','2016-05-10 20:45:37','2016-05-10 20:45:37','',111,'http://www.fiepfa.org/2016/05/10/111-revision-v1/',0,'revision','',0),(686,1,'2016-05-10 20:52:01','2016-05-10 20:52:01','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Nomination-Form-2016.pdf\">consider joining</a></strong> or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>TBD</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-PFA-Positions-2016-LR.pdf\" target=\"_blank\" rel=\"\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-05-10 20:52:01','2016-05-10 20:52:01','',297,'http://www.fiepfa.org/2016/05/10/297-revision-v1/',0,'revision','',0),(690,1,'2016-05-12 10:52:55','2016-05-12 10:52:55','','Boy-thank-you-510w','','inherit','open','closed','','boy-thank-you-510w','','','2016-05-12 10:53:11','2016-05-12 10:53:11','',83,'http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg',0,'attachment','image/jpeg',0),(691,1,'2016-05-12 10:55:49','2016-05-12 10:55:49','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-05-12 10:55:49','2016-05-12 10:55:49','',83,'http://www.fiepfa.org/2016/05/12/83-revision-v1/',0,'revision','',0),(692,1,'2016-05-12 10:56:39','2016-05-12 10:56:39','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-05-12 10:56:39','2016-05-12 10:56:39','',83,'http://www.fiepfa.org/2016/05/12/83-revision-v1/',0,'revision','',0),(693,1,'2016-05-12 10:58:24','2016-05-12 10:58:24','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Volunteer Breakfast</h1><h3>8:30 a.m. on Friday, May 20<br /> Media Center</h3><p>Thanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.</p><p>Hosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Breakfast','','publish','closed','closed','','volunteer-breakfast','','','2016-05-12 10:58:24','2016-05-12 10:58:24','',0,'http://www.fiepfa.org/et_pb_layout/volunteer-breakfast/',0,'et_pb_layout','',0),(694,1,'2016-05-12 10:59:20','2016-05-12 10:59:20','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours by May 5, 2016, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-05-12 10:59:20','2016-05-12 10:59:20','',238,'http://www.fiepfa.org/2016/05/12/238-revision-v1/',0,'revision','',0),(695,1,'2016-05-12 11:00:05','2016-05-12 11:00:05','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours by May 5, 2016, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-05-12 11:00:05','2016-05-12 11:00:05','',238,'http://www.fiepfa.org/2016/05/12/238-revision-v1/',0,'revision','',0),(696,1,'2016-05-12 11:01:38','2016-05-12 11:01:38','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours by May 5, 2016, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-05-12 11:01:38','2016-05-12 11:01:38','',238,'http://www.fiepfa.org/2016/05/12/238-revision-v1/',0,'revision','',0),(697,1,'2016-05-12 11:02:15','2016-05-12 11:02:15','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n[/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"]\r\n\r\nIf you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"]\r\n\r\nIf interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"]\r\n\r\nPlease don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nChristine Leon Vorst\r\nVolunteer Coordinator\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nTracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"]\r\n\r\nFast, easy and convenient, submit your hours by May 5, 2016, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Volunteer Breakfast</h1>\r\n<h3>8:30 a.m. on Friday, May 20\r\nMedia Center</h3>\r\nThanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.\r\n\r\nHosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong>\r\n\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.\r\n\r\nOur greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.\r\n\r\nGood exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong>\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Ongoing help needed.</strong>\r\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.\r\n\r\n&nbsp;\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\r\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nVolunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)\r\n\r\nPizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.\r\n\r\nPlease note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://fie.oneclay.net/staff-and-faculty.html\">http://fie.oneclay.net/staff-and-faculty.html</a>)\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nDana West, School Nurse (<a href=\"mailto:dswest@oneclay.net\">dswest@oneclay.net</a>)\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Needed for:</h1>\r\n<strong>Grade(s): Teacher\r\n</strong>PK: Patty Toole\r\nP1: llisa Hamilton\r\n1: Lana Doane\r\n2: Mimi Harris\r\n3: Michelle Weeks\r\n5: Pat Aschinger-Lee\r\n6: Mary Michaels\r\nK to 2: Rebekka Mathews\r\nK to 2: Marion Earnest\r\n3 to 6: Cheryl Shodd\r\n3 to 6: Christina Mana\r\nMultigrades: Renee Collins\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nChristine Leon Vorst, Volunteer Coordinator (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a> and 904-662-0432)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nSusan Mabry, PFA Publicity Liaison (<a href=\"mailto:snappylove@aol.com\">snappylove@aol.com</a> and 561-289-8273)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-05-12 11:02:15','2016-05-12 11:02:15','',238,'http://www.fiepfa.org/2016/05/12/238-revision-v1/',0,'revision','',0),(698,1,'2016-05-12 11:02:54','2016-05-12 11:02:54','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Volunteer Breakfast</h1><h3>8:30 a.m. on Friday, May 20<br /> Media Center</h3><p>Thanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.</p><p>Hosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Breakfast','','publish','closed','closed','','volunteer-breakfast-2','','','2016-05-12 11:02:54','2016-05-12 11:02:54','',0,'http://www.fiepfa.org/et_pb_layout/volunteer-breakfast-2/',0,'et_pb_layout','',0),(700,2,'2016-05-13 20:49:28','2016-05-13 20:49:28','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/05/FIE-BARB-201605.pdf\">The BARB Newsletter | May 2016</a>','The BARB Newsletter | May 2016','','publish','open','open','','the-barb-newsletter-may-2016','','','2016-05-13 20:51:04','2016-05-13 20:51:04','',0,'http://www.fiepfa.org/?p=700',0,'post','',0),(701,1,'2016-05-13 20:49:07','2016-05-13 20:49:07','','The BARB Newsletter | May 2016','','inherit','open','closed','','fie-barb-201605','','','2016-05-13 20:49:19','2016-05-13 20:49:19','',700,'http://www.fiepfa.org/wp-content/uploads/2016/05/FIE-BARB-201605.pdf',0,'attachment','application/pdf',0),(702,1,'2016-05-13 20:49:28','2016-05-13 20:49:28','<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/05/FIE-BARB-201605.pdf\">The BARB Newsletter | May 2016</a>','The BARB Newsletter | May 2016','','inherit','closed','closed','','700-revision-v1','','','2016-05-13 20:49:28','2016-05-13 20:49:28','',700,'http://www.fiepfa.org/2016/05/13/700-revision-v1/',0,'revision','',0),(703,1,'2016-05-17 00:36:40','2016-05-17 00:36:40','','','','inherit','open','closed','','fie-pfa-nomination-form-20160507-1pp','','','2016-05-17 00:37:01','2016-05-17 00:37:01','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Nomination-Form-20160507-1PP.pdf',0,'attachment','application/pdf',0),(704,1,'2016-05-17 00:36:44','2016-05-17 00:36:44','','About our roles','','inherit','open','closed','','fie-pfa-positions-20160507-1pp','','','2016-05-17 00:37:44','2016-05-17 00:37:44','',297,'http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Positions-20160507-1PP.pdf',0,'attachment','application/pdf',0),(705,1,'2016-05-17 00:37:54','2016-05-17 00:37:54','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\n\n<strong>\n2016</strong>\n<ul>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\n</ul>\n<strong>2015</strong>\n<ul>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\n</ul>\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\n\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Nomination-Form-20160507-1PP.pdf\">consider joining </a></strong>or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\n\n<strong>NEXT MEETING</strong>\n<ul>\n 	<li>TBD</li>\n</ul>\n<strong>POSITIONS</strong>\n<ul>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Positions-20160507-1PP.pdf\">About our roles</a></strong></li>\n</ul>\n<strong>BYLAWS</strong>\n<ul>\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\n</ul>\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-autosave-v1','','','2016-05-17 00:37:54','2016-05-17 00:37:54','',297,'http://www.fiepfa.org/2016/05/17/297-autosave-v1/',0,'revision','',0),(706,1,'2016-05-17 00:38:12','2016-05-17 00:38:12','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"off\" parallax=\"on\" auto_ignore_hover=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"They\'re why we\'re all here. \" background_color=\"#82e0e0\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kids-Thumbs-up-520.jpg\" use_bg_overlay=\"off\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\"] [/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Minutes\" title=\"Minutes\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\n<strong>\r\n2016</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160301.pdf\" target=\"_blank\">March 1</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-20160202.docx\" target=\"_blank\" rel=\"\">Feb. 2</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201601.docx\" rel=\"\">Jan. 12</a></strong></li>\r\n</ul>\r\n<strong>2015</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201512.docx\" rel=\"\">Dec. 8</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201511.docx\" rel=\"\">Nov. 3</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201510.docx\" rel=\"\">Oct. 6</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Minutes-201509.docx\" rel=\"\">Sept. 1</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Meeting Specifics\" title=\"Meeting Specifics\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%128%%\" icon_color=\"#7c8d9b\" use_circle=\"off\" circle_color=\"#2ea3f2\" use_circle_border=\"off\" circle_border_color=\"#2ea3f2\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_font_size=\"28\"]\r\n\r\nThe PFA Board generally meets at 1 p.m. on the first Tuesday of every month in the front office. We always hope to see new faces and gain fresh ideas on how to continue to make the PFA a success. Come and see what we’re all about, <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Nomination-Form-20160507-1PP.pdf\" target=\"_blank\">consider joining </a></strong>or reach out to any of our <strong><a href=\"http://www.fiepfa.org/team/\">board members.</a></strong>\r\n\r\n<strong>NEXT MEETING</strong>\r\n<ul>\r\n 	<li>TBD</li>\r\n</ul>\r\n<strong>POSITIONS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Positions-20160507-1PP.pdf\" target=\"_blank\">About our roles</a></strong></li>\r\n</ul>\r\n<strong>BYLAWS</strong>\r\n<ul>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-PFA-Bylaws-2012.pdf\">The rules we follow</a></strong></li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','About','','inherit','closed','closed','','297-revision-v1','','','2016-05-17 00:38:12','2016-05-17 00:38:12','',297,'http://www.fiepfa.org/2016/05/17/297-revision-v1/',0,'revision','',0),(707,1,'2016-05-17 18:17:06','2016-05-17 18:17:06','','Dan-Webb-225x300','','inherit','open','closed','','dan-webb-225x300','','','2016-05-17 18:17:14','2016-05-17 18:17:14','',88,'http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg',0,'attachment','image/jpeg',0),(708,1,'2016-05-17 18:17:18','2016-05-17 18:17:18','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Boccieri\" name=\"Stephanie Boccieri\" position=\"Communications (e.g., BARB)\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stephanie-Boccieri-Headshot-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:stefbocci@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer DeRousse\" name=\"Michel DeRousse\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Leon Vorst\" name=\"Christine Leon Vorst\" position=\"Volunteer Lead and Website Administrator\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Christine-Leon-Vorst-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Hoffmann\" name=\"Meredith Hoffmann\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Meredith-Hoffmann-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:mhoffmann3@att.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Mabry\" name=\"Susan Mabry\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Susan-Mabry-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:snappylove@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary Johnson\" name=\"Cheri Johnson\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Minervini\" name=\"Laura Minervini\" position=\"Fundraising Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:laura.a.minervini@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-05-17 18:17:18','2016-05-17 18:17:18','',88,'http://www.fiepfa.org/2016/05/17/88-revision-v1/',0,'revision','',0),(712,1,'2016-06-02 21:19:05','2016-06-02 21:19:05','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li><strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li><strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"wp-image-644 aligncenter\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"397\" height=\"193\" />\r\n\r\nWe look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michel DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-autosave-v1','','','2016-06-02 21:19:05','2016-06-02 21:19:05','',629,'http://www.fiepfa.org/2016/06/02/629-autosave-v1/',0,'revision','',0),(713,1,'2016-06-02 19:31:34','2016-06-02 19:31:34','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIt has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website.\r\nAs <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />Please join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur T<strong>reasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year. We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016 and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 19:31:34','2016-06-02 19:31:34','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(714,1,'2016-06-02 19:31:50','2016-06-02 19:31:50','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nIt has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website.\r\nAs <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />Please join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur T<strong>reasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year. We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 19:31:50','2016-06-02 19:31:50','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(715,1,'2016-06-02 19:33:58','2016-06-02 19:33:58','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft  wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\n<img class=\"alignleft wp-image-630 \" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w-300x275.jpg\" alt=\"Chalk-kids-gears-AS-310w\" width=\"279\" height=\"256\" />Please join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur T<strong>reasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year. We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 19:33:58','2016-06-02 19:33:58','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(716,1,'2016-06-02 19:35:41','2016-06-02 19:35:41','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur T<strong>reasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w.jpg\"><img class=\"alignleft  wp-image-644\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"245\" height=\"119\" /></a>To those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year. We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 19:35:41','2016-06-02 19:35:41','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(717,1,'2016-06-02 19:37:22','2016-06-02 19:37:22','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w.jpg\"><img class=\"alignleft wp-image-644\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"245\" height=\"119\" /></a>To those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year. We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 19:37:22','2016-06-02 19:37:22','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(718,1,'2016-06-02 20:09:43','2016-06-02 20:09:43','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Volunteer Breakfast</h1><h3>8:30 a.m. on Friday, May 20<br /> Media Center</h3><p>Thanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.</p><p>Hosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer breakfast 2016','','publish','closed','closed','','volunteer-breakfast-2016','','','2016-06-02 20:09:43','2016-06-02 20:09:43','',0,'http://www.fiepfa.org/et_pb_layout/volunteer-breakfast-2016/',0,'et_pb_layout','',0),(719,1,'2016-06-02 20:13:32','2016-06-02 20:13:32','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/05/30/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"]\r\n\r\n[et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab]\r\n\r\n[/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-06-02 20:13:32','2016-06-02 20:13:32','',83,'http://www.fiepfa.org/2016/06/02/83-revision-v1/',0,'revision','',0),(720,1,'2016-06-02 20:14:56','2016-06-02 20:14:56','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"alignleft wp-image-644\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"245\" height=\"119\" />We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 20:14:56','2016-06-02 20:14:56','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(721,1,'2016-06-02 20:15:51','2016-06-02 20:15:51','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"alignleft wp-image-644\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"215\" height=\"104\" />We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michele DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas.</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 20:15:51','2016-06-02 20:15:51','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(722,1,'2016-06-02 20:17:18','2016-06-02 20:17:18','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n\r\nOur <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.\r\n\r\n<strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.\r\n\r\nOur <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.\r\n\r\nA valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.\r\n\r\n<strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.\r\n\r\n<strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.\r\n\r\nPFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.\r\n\r\nOur school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.\r\n\r\n<strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.\r\n\r\n<strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.\r\n\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"alignleft wp-image-644\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"215\" height=\"104\" />We look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michel DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 20:17:18','2016-06-02 20:17:18','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(723,1,'2016-06-02 21:15:33','2016-06-02 21:15:33','[et_pb_section admin_label=\"section\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<a href=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\"><img class=\"alignleft wp-image-707\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300-225x300.jpg\" alt=\"Dan Webb\" width=\"121\" height=\"162\" /></a>It has been my pleasure and honor in representing you as PFA President for the 2015 to 2016 school year. The mission of the PFA is to achieve the highest involvement of parents and faculty in providing support for academic excellence and to enrich the learning environment at Fleming Island Elementary.\r\n\r\n2015 to 2016 marked my daughter’s third year as a stingray. A primary focus at FIE is communication. As a parent, I felt we needed more. On that mission, I sought and recruited a communications specialist to serve on our board.\r\n\r\n<strong>Christine Leon Vorst</strong> has been instrumental and inspirational in developing ideas and helping the board achieve the vision of expanding open communication between the PFA and parents, as well as faculty and administration via the PFA website. As <strong>Volunteer Officer,</strong> she also overhauled communication to volunteers and implemented an efficient way to sign up.\r\n\r\nSince funding is vital for our school, it was important to find the right officer to lead our <strong>fundraising</strong> efforts. Another impactful recruit was <strong>Laura Minervini,</strong> who led new projects such as the Read-a-Thon and Chip in for Youth, as well as all of our existing endeavors. The Read-a-Thon not only was minimally intrusive to classrooms (which is prized by teachers), it also raised more than $14,000!\r\n\r\nSome officers are driving forces behind-the-scenes and contribute extensively outside of their official PFA posts. For example, several officers also are homeroom parents. Others are employed, but devote as much free time as they can outside of work hours.\r\n\r\nPlease join me in thanking members of the team for their devotion to the children at FIE and collective contributions to make our school the best it can be.\r\n<ul>\r\n 	<li>Our <strong>Vice President, Arlene Manalo,</strong> heads all sub-committees and has been instrumental in the success of connecting the dots for fundraisers and events. She has played a key role in developing and presenting programs to the principal for approval.</li>\r\n 	<li><strong>PFA Secretary, Cheri Johnson,</strong> has played a crucial role in keeping records of all board meetings and presenting them upon request. She has carried out official correspondence of the FIE PFA and maintained a detailed file of them. She was able to accompany our Principal, Mr. Archibald, to a meeting with BYO Recreation to discuss phase one of playground improvements.</li>\r\n 	<li>Our <strong>Treasurer, Michel DeRousse,</strong> plays an important role in the transparency of the PFA funds, including assisting with keeping the PFA on budget throughout the year. She works hand-in-hand with the FIE bookkeeper, Beverly Moody. Michel prepares a cash box for any FIE PFA event, and these monies are turned over to the Treasurer at the close of the event. She maintains the monies on-site and works hard to present account balances, payments and deposits throughout the year.</li>\r\n 	<li>A valuable asset to the team includes our <strong>Home Room Parent Officer, Amanda Vernon.</strong> She stepped up and played a key role in the success of Teacher Appreciation Week. She has introduced open communication by coordinating emails to homeroom parents, who will in turn forward PFA information to class parents.</li>\r\n 	<li><strong>Susan Mabry,</strong> our<strong> Publicity Officer,</strong> is essential in snapping those cute photos during our special events throughout the year. She is the one individual responsible for putting that smile on your child’s face by updating our marquee with your child’s name on his/her birthday.</li>\r\n 	<li><strong>Stephanie Boccieri</strong> is our <strong>Communications Officer,</strong> who without fail coordinates and publishes our BARB.</li>\r\n 	<li>PFA’s <strong>School Programs Liaison Officer, Meredith Hoffman, </strong>coordinates teacher needs throughout the year to the board. She assists with determining if PFA funding and volunteers are available for each event.</li>\r\n 	<li>Our school <strong>Principal, Dana Archibald</strong>, plays a crucial role in problem solving, brainstorming and volunteering his personal time with PFA events.</li>\r\n 	<li><strong>Kim Marks, Vice Principal,</strong> joined the team this year and has been assisting the PFA with networking within the community. She also enjoys volunteering her personal time at PFA events.</li>\r\n 	<li><strong>Linda Kupfer, School Counselor,</strong> volunteers her time to attend PFA meetings and voices concerns for faculty.</li>\r\n</ul>\r\nWe greatly appreciate your support of the PFA. I’d again like to thank all the team members on our current board for all of your hard work and effortless volunteered time throughout the year.\r\n\r\nTo those who are stepping away to pursue other endeavors, know that you have played a valuable role in the success of the FIE’s 2015 to 2016 school year.\r\n\r\n<img class=\"wp-image-644 aligncenter\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Welcome-hands-kids-1080w-300x145.jpg\" alt=\"welcome hands\" width=\"397\" height=\"193\" />\r\n\r\nWe look forward to the upcoming 2016 to 2017 school year with the following FIE PFA Board:\r\n<ul>\r\n 	<li>President, Dan Webb</li>\r\n 	<li>Vice President, Arlene Manalo</li>\r\n 	<li>Secretary, Michel DeRousse</li>\r\n 	<li>Treasurer, John Pledger</li>\r\n 	<li>Volunteer Officer, Julie Campbell</li>\r\n 	<li>Home Room Parent Officer, Amanda Vernon</li>\r\n 	<li>Fundraising Officer, Cheri Johnson</li>\r\n 	<li>Publicity/Historian Officer, Catherine Echevarria</li>\r\n 	<li>Communications Officer, Ivan Cobeiro</li>\r\n 	<li>School Liason, Brad Mestas</li>\r\n</ul>\r\nWe look forward to a rewarding year.\r\n\r\nTo the future,\r\n\r\nDan Webb\r\nPresident\r\nFleming Island Elementary Parent Faculty Association\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','PFA President Dan Webb shares insight on board\'s progress in 2015 and 2016, and election results','','inherit','closed','closed','','629-revision-v1','','','2016-06-02 21:15:33','2016-06-02 21:15:33','',629,'http://www.fiepfa.org/2016/06/02/629-revision-v1/',0,'revision','',0),(726,1,'2016-08-15 09:51:27','2016-08-15 09:51:27','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','','inherit','closed','closed','','83-revision-v1','','','2016-08-15 09:51:27','2016-08-15 09:51:27','',83,'http://www.fiepfa.org/2016/08/15/83-revision-v1/',0,'revision','',0),(727,1,'2016-08-15 11:47:36','2016-08-15 11:47:36','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n<h1>MEET THE PFA BOARD MEMBERS</h1>\n&nbsp;\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:dana.archibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\n\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:kim.marks@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary DeRousse\" name=\"Michel DeRousse\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\n\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\n\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-autosave-v1','','','2016-08-15 11:47:36','2016-08-15 11:47:36','',88,'http://www.fiepfa.org/2016/08/15/88-autosave-v1/',0,'revision','',0),(728,1,'2016-08-15 10:05:02','2016-08-15 10:05:02','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary DeRousse\" name=\"Michel DeRousse\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n[icon name=icon_mail_alt]\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-08-15 10:05:02','2016-08-15 10:05:02','',88,'http://www.fiepfa.org/2016/08/15/88-revision-v1/',0,'revision','',0),(729,1,'2016-08-15 10:06:06','2016-08-15 10:06:06','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dlarchibald@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kamarks@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary DeRousse\" name=\"Michel DeRousse\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-08-15 10:06:06','2016-08-15 10:06:06','',88,'http://www.fiepfa.org/2016/08/15/88-revision-v1/',0,'revision','',0),(731,1,'2016-08-15 10:09:18','2016-08-15 10:09:18','[et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>Volunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.</p><p>Our greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.</p><p>Good exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong></p>\n\n[/et_pb_blurb]','Run/Walk Fridays','','publish','closed','closed','','runwalk-fridays','','','2016-08-15 10:09:18','2016-08-15 10:09:18','',0,'http://www.fiepfa.org/et_pb_layout/runwalk-fridays/',0,'et_pb_layout','',0),(732,1,'2016-08-15 10:09:36','2016-08-15 10:09:36','[et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>We\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!</p>\n\n[/et_pb_blurb]','UPC Redeemer','','publish','closed','closed','','upc-redeemer','','','2016-08-15 10:09:36','2016-08-15 10:09:36','',0,'http://www.fiepfa.org/et_pb_layout/upc-redeemer/',0,'et_pb_layout','',0),(733,1,'2016-08-15 10:09:50','2016-08-15 10:09:50','[et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>We\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!</p>\n\n[/et_pb_blurb]','UPC Redeemer','','publish','closed','closed','','upc-redeemer-2','','','2016-08-15 10:09:50','2016-08-15 10:09:50','',0,'http://www.fiepfa.org/et_pb_layout/upc-redeemer-2/',0,'et_pb_layout','',0),(734,1,'2016-08-15 10:10:01','2016-08-15 10:10:01','[et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p><strong>Ongoing help needed.</strong><br /> If you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.</p><p> </p>\n\n[/et_pb_blurb]','Media Center','','publish','closed','closed','','media-center','','','2016-08-15 10:10:01','2016-08-15 10:10:01','',0,'http://www.fiepfa.org/et_pb_layout/media-center/',0,'et_pb_layout','',0),(735,1,'2016-08-15 10:10:15','2016-08-15 10:10:15','[et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\" template_type=\"module\"]\n\n<p>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)</p><p>Pizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.</p><p>Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.</p>\n\n[/et_pb_blurb]','Pizza','','publish','closed','closed','','pizza','','','2016-08-15 10:10:15','2016-08-15 10:10:15','',0,'http://www.fiepfa.org/et_pb_layout/pizza/',0,'et_pb_layout','',0),(736,1,'2016-08-15 10:22:16','2016-08-15 10:22:16','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\n\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Run/Walk Fridays\" title=\"Run/Walk Fridays\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/children-running-silhouettex320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\n\n<p>Volunteers are greatly appreciated and needed for safety patrolling, scanning/tracking laps, tying shoelaces, filling water bottles, and mending boo-boos after an occasional fall.</p>\n<p>Our greatest need is helping with the younger children in the afternoons (12:45 to 2:20 p.m.) since they require a little more TLC than the older kids.</p>\n<p>Good exercise = good sleep. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-runwalk\" target=\"_blank\">I\'m in (sign me up)! </a></strong></p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"UPC code redeemers Coke\" title=\"Calling all reward redeemers!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Kid-compuer-Money-FIE-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\n\nWe\'re on the hunt for My Coke Rewards redeemers! Since there is a weekly earning limit of 75 points per account, and we have <strong>boxes</strong> of codes, we\'re in need of additional volunteers to create <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">My Coke Rewards</a></strong> accounts and help enter codes. GREAT volunteer role for a tween or teen as this can be done at home. If interested, please e-mail <a href=\"mailto:kal336@yahoo.com\" target=\"_blank\"><strong>Katie Steele</strong>.</a> Just imagine what we can claim for FIE! Thanks!\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Media center\" title=\"Inspire something magical via the Media Center!\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Reading-imagination-boy-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\n\n<p><strong>Ongoing help needed.</strong><br />\nIf you have the bandwidth, we\'d love your help in the Media Center. Whatever time you can devote would be greatly appreciated. For more information, please email our media teachers, <strong><a href=\"mailto:pbbreast@oneclay.net\" target=\"_blank\">Tricia Breast</a></strong> and <strong><a href=\"mailto:akfreeman@oneclay.net\" target=\"_blank\">Amy Freeman</a></strong>, or call them at 904-278-2020.</p>\n\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Pizza days\" title=\"Pizza, pizza (delivery)!\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Pizza-girls-320-225.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\n\n<p>Volunteers are greatly appreciated and needed for pizza delivery. You even can deliver to your child(ren)\'s classroom(s), if applicable. Why? Our little ones are hungry and THRILLED to see you! :D Plus, it\'s a great way to get some exercise. :)</p>\n<p>Pizza delivery assistance begins at 9:30 a.m. usually on early-dismissal days.</p>\n<p>Please note that dates are subject to change, but we\'ll be sure to update this <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-pizza\" target=\"_blank\"><span class=\"scayt-misspell-word\" data-scayt-word=\"SignUpGenius\" data-scayt-lang=\"en_US\">SignUpGenius</span> sheet</a></strong> and e-mail all volunteers.</p>\n\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"]\n\n\n\n[/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section]','Upcoming Vol Events (generic/ongoing)','','publish','closed','closed','','upcoming-vol-events-genericongoing','','','2016-08-15 10:22:16','2016-08-15 10:22:16','',0,'http://www.fiepfa.org/et_pb_layout/upcoming-vol-events-genericongoing/',0,'et_pb_layout','',0),(737,1,'2016-08-15 10:25:10','2016-08-15 10:25:10','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" inner_shadow=\"on\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\" template_type=\"section\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Volunteer breakfast\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Boy-thank-you-510w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n\n\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\n\n<h1>Volunteer Breakfast</h1>\n<h3>8:30 a.m. on Friday, May 20<br />\nMedia Center</h3>\n<p>Thanks so much to ALL volunteers who made a difference at FIE! Please join us for breakfast, when we\'ll also recognize those volunteers who\'ve donated more than 25 hours of service.</p>\n<p>Hosted by Administration, please let us know if you\'re attending as this will help planners create a delicious spread. <strong>Please note that only those volunteers who are coming should RSVP.</strong></p>\n\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"https://docs.google.com/forms/d/1TyKuBtaO1wHb2jpK9SqWhRtKbeyDprZwZC0ccDPsA7g/viewform\" url_new_window=\"on\" button_text=\"RSVP for Volunteer Breakfast \" button_alignment=\"left\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"]\n\n\n\n[/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Breakfast (end of year)','','publish','closed','closed','','volunteer-breakfast-end-of-year','','','2016-08-15 10:25:10','2016-08-15 10:25:10','',0,'http://www.fiepfa.org/et_pb_layout/volunteer-breakfast-end-of-year/',0,'et_pb_layout','',0),(738,1,'2016-08-15 10:26:01','2016-08-15 10:26:01','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"] If you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us! [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"] If interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"] Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nJulie Campbell\r\nVolunteer Officer\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Clay-County-Volunteer-Handbook-20160421-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Tracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Fast, easy and convenient, submit your hours by May 4, 2017, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong> [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n<p style=\"text-align: center;\">Coming soon for the 2016 to 2017 school year! Sign up to our <a href=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\">newsletter</a> to be alerted.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">fiepfa.org/fie-faculty-and-staff</a>)\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\nKathryn Bellin, School Nurse\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Parent Officer (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nCatherine Echevarria, PFA Publicity Officer/Historian\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-08-15 10:26:01','2016-08-15 10:26:01','',238,'http://www.fiepfa.org/2016/08/15/238-revision-v1/',0,'revision','',0),(739,1,'2016-08-15 10:34:19','2016-08-15 10:34:19','','FIE-Clay-County-Volunteer-Handbook-20160815-LR','','inherit','open','closed','','fie-clay-county-volunteer-handbook-20160815-lr','','','2016-08-15 10:34:19','2016-08-15 10:34:19','',0,'http://www.fiepfa.org/wp-content/uploads/2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf',0,'attachment','application/pdf',0),(740,1,'2016-08-15 10:34:49','2016-08-15 10:34:49','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"] If you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us! [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"] If interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"] Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nJulie Campbell\r\nVolunteer Officer\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Tracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Fast, easy and convenient, submit your hours by May 4, 2017, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong> [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n<p style=\"text-align: center;\">Coming soon for the 2016 to 2017 school year! Sign up to our <a href=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\">newsletter</a> to be alerted.</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">fiepfa.org/fie-faculty-and-staff</a>)\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\nKathryn Bellin, School Nurse\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Parent Officer (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nCatherine Echevarria, PFA Publicity Officer/Historian\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-08-15 10:34:49','2016-08-15 10:34:49','',238,'http://www.fiepfa.org/2016/08/15/238-revision-v1/',0,'revision','',0),(741,1,'2016-08-15 10:42:41','2016-08-15 10:42:41','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Deadline\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>Please use the form below to submit your volunteer hours for FIE.</h4>\r\n<strong>Deadline: Thursday, May 4, 2017</strong>\r\n\r\nThanks so much for your dedication and gift of time!\r\nYou not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Absolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2015 in the date field. [/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nShould you have any questions, please contact Julie Campbell, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>.\r\n\r\n[/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-08-15 10:42:41','2016-08-15 10:42:41','',615,'http://www.fiepfa.org/2016/08/15/615-revision-v1/',0,'revision','',0),(742,1,'2016-08-15 10:43:48','2016-08-15 10:43:48','[et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#b388ff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Text\" background_layout=\"dark\" text_orientation=\"left\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">FIE Volunteer Hours Submission Portal</h1>\r\n[/et_pb_text][et_pb_text admin_label=\"Deadline\" background_layout=\"dark\" text_orientation=\"center\" text_text_color=\"#ffffff\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h4>Please use the form below to submit your volunteer hours for FIE.</h4>\r\n<strong>Deadline: Thursday, May 4, 2017</strong>\r\n\r\nThanks so much for your dedication and gift of time!\r\nYou not only make a difference to our children, but also our teachers and school!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"FAQs\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Frequently Asked Questions</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Why submit hours\" title=\"Why submit hours?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] Every year, Fleming Island Elementary tallies volunteer hours to nominate the school for awards and grants. In addition, we analyze hours to recognize volunteers during our special breakfast. [/et_pb_toggle][et_pb_toggle admin_label=\"Submit hours by month\" title=\"May I add hours and submit by month? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nAbsolutely! If easier, please feel free to enter total hours per month on the last day of that month. For example, if you volunteered 9 hours and 45 minutes total throughout three occasions in October, please enter 9:45 in the hours field and 10/31/2016 in the date field.\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"What qualifies as volunteer time?\" title=\"What qualifies as volunteer time?\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] ANY time volunteered to FIE qualifies! This includes on-campus and at-home work, getting supplies, chaperoning field trips, helping teachers, making copies -- you name it! [/et_pb_toggle][et_pb_toggle admin_label=\"Questions? \" title=\"Questions? \" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nShould you have any questions, please contact Julie Campbell, Volunteer Officer, at <strong><a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a></strong>.\r\n\r\n[/et_pb_toggle][et_pb_code admin_label=\"Code\"]&lt;iframe src=\"http://goo.gl/forms/vMZfRv5Q7K\" name=\"frame1\" scrolling=\"auto\" frameborder=\"no\" align=\"center\" height = \"2000px\" width = \"1300px\"&gt; &lt;/iframe&gt;[/et_pb_code][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteer Hours Submission Portal','','inherit','closed','closed','','615-revision-v1','','','2016-08-15 10:43:48','2016-08-15 10:43:48','',615,'http://www.fiepfa.org/2016/08/15/615-revision-v1/',0,'revision','',0),(743,1,'2016-08-15 10:48:19','2016-08-15 10:48:19','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_position=\"default\" background_size=\"default\" background_color=\"#a6d689\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"center\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Bake sale\" heading=\"Let\'s help them. \" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Bake-sale-510.jpg\"]\r\n\r\n\"Unless someone like you cares a whole awful lot, nothing is going to get better. It\'s not.\"\r\n\r\n~ <b>Dr. Seuss</b>\r\n\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Fundraising efforts\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Fundraising efforts</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Why we fundraise\" title=\"Why we fundraise\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%220%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n\r\nOur Parent Faculty Association exists to bridge the gap between what the school system provides and what our students and teachers need. To supplement an enriched learning environment, we must raise funds.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Got ideas?\" title=\"Got ideas?\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n\r\nIf you know of a successful program to help raise funds for Fleming Island Elementary, we\'d love to hear about it! Don\'t be shy!\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\"]\r\n\r\nCheri Johnson\r\nFundraising Officer\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Where it goes\" title=\"Where it goes\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nWe look forward to bringing you photos of your hard-earned dollars at work! But in the meantime, here\'s where it generally goes:\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Where it goes\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"off\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%242%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n<ul>\r\n 	<li>Playground improvements</li>\r\n 	<li>School/student programs (e.g., Art Lady, sixth-grade science fair, Landscape Club)</li>\r\n 	<li>Spoiling our teachers (Appreciation Week and other events throughout the year)</li>\r\n 	<li>The BARB newsletter printing</li>\r\n 	<li>Property enhancements</li>\r\n 	<li>Spirit days</li>\r\n 	<li>Fundraising (e.g., prizes and external administration)</li>\r\n 	<li>Grants</li>\r\n 	<li>Student lunch support</li>\r\n 	<li>Community service projects (e.g., Angel Tree)</li>\r\n 	<li>Emergency fund</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing fundraisers\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING FUNDRAISERS</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Birthday marquee\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Happy-Birthday-Marquee-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>Show you remember with your child\'s name in lights!</h1>\r\nWe\'re excited to provide a fun, new way to recognize and celebrate your child! Birthday announcements now are available on the school marquee for only $20. While this is a first-come, first-served option, we can accommodate 3 names per date. What an easy bit of cheer for your child’s special day! You even can take a photo for a keepsake!\r\n\r\nPrint <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2015/12/PFA-BD-Announcement.docx\" rel=\"\">this form</a></strong> and turn in with payment in your child\'s folder or the front office. Spaces fill fast – reserve your date today!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Ongoing support\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>The purchases that keep on giving</h1>\r\nWhether it\'s snapping photos of your receipts, collecting box tops, donating points or making the best use of old linen, EVERY LITTLE BIT HELPS!!!\r\nCheck out all the ways we can help FIE. Thanks so much!\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Receipts-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Shoparoo\" title=\"Shoparoo\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://shoparoo.com/howitworks/\"]\r\n\r\nAfter you create a <strong><a href=\"http://shoparoo.com/howitworks/\" target=\"_blank\">Shoparoo account online</a></strong>, all you have to do is:\r\n<ul>\r\n 	<li>Buy any item you normally would from <strong>any</strong> store.</li>\r\n 	<li>Take a picture of your receipt.</li>\r\n 	<li>Shoparoo sends money to Fleming Island Elementary!</li>\r\n 	<li>Invite your friends and family! Shoparoo estimates that schools with 50 or more active supporters earn thousands.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-for-Education-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Box Tops for Education\" title=\"Box Tops for Education\" url_new_window=\"off\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.boxtops4education.com/\"]\r\n\r\nEach \"Box Top\" is worth 10 cents, and they add up fast! All you need to do is:\r\n<ul>\r\n 	<li>Clip the \"Box Top\" logo from the top of your common household items. Check out this <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/2016-Box-Tops-Education-Items.pdf\" target=\"_blank\" rel=\"\">list with HUNDREDS</a></strong> of qualifying products, including brands like Annie\'s, Betty Crocker, Cascadian Farms, Hefty, Lysol, Mott\'s, Pillsbury and Ziplock.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Box-Tops-Collection-Sheet-How-It-Works-2016.pdf\" target=\"_blank\" rel=\"\">this collection sheet</a></strong>, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Labels-for-Education-UPC-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Labels for Education\" title=\"Labels for Education \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://www.labelsforeducation.com/\"]\r\n\r\nBy clipping \"Labels for Education\" from hundreds of qualifying products, Fleming Island Elementary earns points that can be redeemed for items helping the arts, athletics and academics! To help out:\r\n<ul>\r\n 	<li>Clip the \"Labels for Education\" UPC from <strong><a href=\"https://www.labelsforeducation.com/Earn-Points/Participating-Products\" target=\"_blank\">qualifying products</a></strong> from brands including Bic, Cambell\'s, Pace, Pepperidge Farm, Prego, SpaghettiOs and V8.</li>\r\n 	<li>Glue or tape non-expired \"Box Tops\" to any of the point-specific collection sheets below, OR just place them in a baggie.</li>\r\n 	<li>Turn in your collection sheet(s) or baggie by placing inside your child\'s folder or dropping off at the front office.</li>\r\n</ul>\r\n<strong>POINT-SPECIFIC UPC COLLECTION SHEETS</strong>\r\n<ol>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_1Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">1-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_5Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">5-point UPCs</a></strong></li>\r\n 	<li><strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/LFE_CollectionSheet_10Point_2015_2016-LR.pdf\" target=\"_blank\" rel=\"\">10-point UPCs</a>\r\n</strong></li>\r\n</ol>\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/coke-rewards-product-list-320-trans.png\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Coke Rewards for Schools\" title=\"My Coke Rewards for Schools\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"https://donate.mycokerewards.com/causes/featured\"]\r\n\r\nPoints donated via the My Coke Rewards for Schools program are converted to cash for our school! Fleming Island Elementary receives a check quarterly.\r\n\r\n<strong>Here\'s how you can donate your My Coke Rewards:</strong>\r\n<ul>\r\n 	<li>Purchase your favorite Coca-Cola products to get codes (they\'re on hundreds of different packages, in a variety of sizes and flavors).</li>\r\n 	<li>Go to <strong><a href=\"https://donate.mycokerewards.com/causes/featured\" target=\"_blank\">donate.mycokerewards.com</a></strong> and sign in (or quickly register if you\'re not a member).</li>\r\n 	<li>Find Fleming Island Elementary.</li>\r\n 	<li>Donate your points.</li>\r\n</ul>\r\nTweet for +3 status (and inspire your friends and family to donate too)!\r\n\r\n<strong>OR,</strong> cut the codes and place them in a baggie. Turn in your baggie by storing inside your child’s folder or dropping off at the front office.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_divider admin_label=\"Divider\" color=\"#6370b5\" show_divider=\"on\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Go-Green-Logo-320.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"left\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_blurb admin_label=\"Go Green Charity Recyclers\" title=\"Go Green Charity Recyclers \" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.ggcr.net/\"]\r\n\r\n<strong>DONATE UNWANTED CLOTHES, SHOES (AND MORE!) IN ANY CONDITION</strong>\r\n\r\n<strong>Don\'t toss those raggedy clothes, torn plush toys, and flimsy pillows!!!\r\n</strong><strong>RECYCLE THEM via Go Green Charity Recyclers. </strong>\r\n\r\nThese previously thought \"unusables\" actually can be recycled into fibers for new clothing, insulation, carpet, wiping cloths and more. PLUS, Fleming Island Elementary receives a monetary contribution per pound! You also may donate clothes and shoes in good condition, which contribute to GGCR\'s charitable causes.\r\n\r\n<strong>DROP OFF\r\n</strong>White bins are located by the cafeteria parent pick-up area.\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Fundraising','','inherit','closed','closed','','115-revision-v1','','','2016-08-15 10:48:19','2016-08-15 10:48:19','',115,'http://www.fiepfa.org/2016/08/15/115-revision-v1/',0,'revision','',0),(744,1,'2016-08-15 10:52:37','2016-08-15 10:52:37','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"off\" show_pagination=\"off\" auto=\"off\" auto_ignore_hover=\"off\" parallax=\"off\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-1790-600.jpg\" background_position=\"default\" background_size=\"default\" background_color=\"#ffffff\" use_bg_overlay=\"off\" use_text_overlay=\"off\" alignment=\"bottom\" background_layout=\"dark\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" header_font_size=\"38\" header_font_size_tablet=\"38\" header_font_size_phone=\"38\" admin_title=\"Swing\"]\r\n[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#132c47\" inner_shadow=\"off\" parallax=\"on\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Invest in our Playground\" background_layout=\"dark\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">\"Invest in our Playground\" Campaign</h1>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Free play\" title=\"Play at will \" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%305%%\" icon_color=\"#aa71e2\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#aa71e2\"]\r\n<p style=\"text-align: left;\">When allowed to play freely, children develop skills for seeing things from others\' viewpoints. They strengthen skills in cooperating, aiding others, sharing and problem solving.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Learning actively\" title=\"Learning actively\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%234%%\" icon_color=\"#eeee22\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#eeee22\"]\r\n<p style=\"text-align: left;\">Play is an active form of learning that can incorporate a child\'s sense of vision, smell, touch, motion and risk.</p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Health benefits\" title=\"Health benefits\" url_new_window=\"off\" image=\"http://elegantthemes.com/preview/Divi2/wp-content/uploads/2014/04/blurb-icon-updates.png\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#ff3afb\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%257%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#ff3afb\"]\r\n\r\nNot only does playtime help children grow in multiple regards, it\'s also a great form of exercise that breaks up their day and helps them relax.\r\n\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Need your help\" title=\"Still need help\" url_new_window=\"off\" animation=\"top\" background_layout=\"dark\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%280%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" icon_font_size=\"100px\"]\r\n\r\nTo date, fundraisers for the playground have yielded about $20,000, which have funded Phase 1 improvements. An “Invest in your Playground” collection box (birdhouse) is perched in the front office. <strong>ALL (100%)</strong> of monies donated here are tax deductible and go straight to our playground. Thanks so much for your generosity!\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Before\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">BEFORE</h1>\r\nFleming Island Elementary\'s playground yelled for a makeover. Without proper drainage and ground cover, this space sometimes was an unusable, soggy mess that became very attractive to insects. Swing chains and hardware needed to be replaced. And, a little paint wouldn\'t hurt.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Before overview\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Before-Overview-1-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"Swings before\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swings-before-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"In progress\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">IN PROGRESS</h1>\r\nWith $20,000 in hand and the help of BYO Recreation, we were able to invest in ParKurb to outline proper playing areas for our young ones, increasing safety around the swings. Additionally, its higher border serves as an outline for beds of mulch to help cushion the ground.\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Playground-progress-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"In progress\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swing-cover-during-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">AFTER</h1>\r\n<h2 style=\"text-align: center;\">BUT NEEDS MORE WORK!</h2>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nWe\'re excited about unveiling Phase 1 improvements January 2016, which included:\r\n<ul>\r\n 	<li>ParKurb borders around the swingsets (IPEMA certified)</li>\r\n 	<li>Ground cover for padding and weed control (IPEMA certified)</li>\r\n 	<li>New ADA-compliant swing platform for children in wheelchairs</li>\r\n 	<li>ADA-compliant wheelchair-accessible ramps</li>\r\n 	<li>14 new swings</li>\r\n 	<li>Fresh hardware for equipment</li>\r\n 	<li>Moving and salvaging equipment</li>\r\n</ul>\r\n[icon name=icon_star] Special thanks to Allyn Crooms, head custodian, who went above and beyond painting the swingsets to save the school money. [/et_pb_text][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_image admin_label=\"After image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Swingset-after-2-510.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"left\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n&nbsp;\r\n\r\n[/et_pb_image][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"AFTER\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">THANK YOU!</h1>\r\n<h3 style=\"text-align: center;\">We greatly appreciate your support, and look forward to realizing Phase 2!</h3>\r\n<p style=\"text-align: center;\">[icon name=icon_camera] Gracias Susan Mabry, PFA\'s 2015 to 2016 Publicity Officer, for snapping these photos!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Playground','','inherit','closed','closed','','103-revision-v1','','','2016-08-15 10:52:37','2016-08-15 10:52:37','',103,'http://www.fiepfa.org/2016/08/15/103-revision-v1/',0,'revision','',0),(745,1,'2016-08-15 10:57:55','2016-08-15 10:57:55','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n\r\nThe PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"Info,\" then \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary Parent Faculty Association (FIE PFA) in Fleming Island, Florida','inherit','closed','closed','','83-autosave-v1','','','2016-08-15 10:57:55','2016-08-15 10:57:55','',83,'http://www.fiepfa.org/2016/08/15/83-autosave-v1/',0,'revision','',0),(746,1,'2016-08-15 10:54:09','2016-08-15 10:54:09','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\"[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary Parent Faculty Association (FIE PFA) in Fleming Island, Florida','inherit','closed','closed','','83-revision-v1','','','2016-08-15 10:54:09','2016-08-15 10:54:09','',83,'http://www.fiepfa.org/2016/08/15/83-revision-v1/',0,'revision','',0),(747,1,'2016-08-15 10:56:22','2016-08-15 10:56:22','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"] The Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n\r\n&nbsp;\r\n<p class=\"BodyCopy\">The PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.</p>\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"Info,\" then \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary\'s Parent Faculty Association (FIE\'s PFA) in Fleming Island, Florida','inherit','closed','closed','','83-revision-v1','','','2016-08-15 10:56:22','2016-08-15 10:56:22','',83,'http://www.fiepfa.org/2016/08/15/83-revision-v1/',0,'revision','',0),(748,1,'2016-08-15 10:56:59','2016-08-15 10:56:59','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n\r\nThe PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"] The PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"About.\" [/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary Parent Faculty Association (FIE PFA) in Fleming Island, Florida','inherit','closed','closed','','83-revision-v1','','','2016-08-15 10:56:59','2016-08-15 10:56:59','',83,'http://www.fiepfa.org/2016/08/15/83-revision-v1/',0,'revision','',0),(749,1,'2016-08-15 10:57:47','2016-08-15 10:57:47','[et_pb_section admin_label=\"section\" fullwidth=\"on\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\"][et_pb_fullwidth_slider admin_label=\"Fullwidth Slider\" show_arrows=\"on\" show_pagination=\"on\" auto=\"on\" parallax=\"off\" auto_ignore_hover=\"on\" parallax_method=\"off\" remove_inner_shadow=\"off\" background_position=\"default\" background_size=\"default\" hide_content_on_mobile=\"off\" hide_cta_on_mobile=\"off\" show_image_video_mobile=\"off\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [et_pb_slide heading=\"We\'re the stingrays. \" background_color=\"#f7f7f7\" alignment=\"center\" background_layout=\"light\" background_position=\"default\" background_size=\"default\" use_bg_overlay=\"off\" bg_overlay_color=\"rgba(78,138,191,0.44)\" use_text_overlay=\"off\" allow_player_pause=\"off\" text_border_radius=\"3\" header_font_select=\"default\" header_font=\"||||\" body_font_select=\"default\" body_font=\"||||\" custom_button=\"off\" button_font_select=\"default\" button_font=\"||||\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" text_overlay_color=\"rgba(78,138,191,0.44)\" body_text_color=\"#ffffff\" header_text_color=\"#a5b4ff\" body_font_size=\"23\" body_font_size_tablet=\"23\" body_font_size_phone=\"23\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Stingrays-Reef-1790-488.jpg\"]Welcome to our new cove.[/et_pb_slide] [/et_pb_fullwidth_slider][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer\" title=\"Get involved - Volunteer!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%257%%\" icon_color=\"#dd3333\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/volunteers/\"] [/et_pb_blurb][et_pb_button admin_label=\"Volunteer button\" button_url=\"http://www.fiepfa.org/volunteers/\" url_new_window=\"off\" button_text=\"Learn more!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#dd3333\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Fundraising\" title=\"Where dollars go\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%280%%\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/fundraising/\"] [/et_pb_blurb][et_pb_button admin_label=\"Fundraiser button\" button_url=\"http://www.fiepfa.org/fundraising/\" url_new_window=\"off\" button_text=\"Find out!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#81d742\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Playground\" title=\"Playground\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%277%%\" icon_color=\"#1eacbc\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" header_font_size=\"24\" url=\"http://www.fiepfa.org/playground/\"] [/et_pb_blurb][et_pb_button admin_label=\"playground button\" button_url=\"http://www.fiepfa.org/playground/\" url_new_window=\"off\" button_text=\"Discover!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#1eacbc\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"E-newsletter\" title=\"Don\'t skip a beat!\" url_new_window=\"off\" use_icon=\"on\" font_icon=\"%%216%%\" icon_color=\"#eeee22\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"top\" animation=\"top\" background_layout=\"dark\" text_orientation=\"center\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"120px\" url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\"] Get e-BARB and other news right to your inbox! [/et_pb_blurb][et_pb_button admin_label=\"Newsletter button\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" url_new_window=\"on\" button_text=\"Subscribe!\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#eeee22\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"Section\" fullwidth=\"off\" specialty=\"off\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" inner_shadow=\"off\" parallax=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"off\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_2\"][et_pb_image admin_label=\"gears\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/04/Chalk-kids-gears-AS-310w.jpg\" url_new_window=\"off\" animation=\"fade_in\" show_in_lightbox=\"off\" use_overlay=\"off\" sticky=\"off\" align=\"center\" force_fullwidth=\"off\" always_center_on_mobile=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_image][/et_pb_column][et_pb_column type=\"1_2\"][et_pb_text admin_label=\"Description\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">Insight on PFA board’s progress in 2015 and 2016</span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">and </span></h1>\r\n<h1 style=\"text-align: center;\"><span style=\"font-size: 22px; line-height: 1em;\">2016 to 2017 election results</span></h1>\r\n[/et_pb_text][et_pb_button admin_label=\"Button\" button_url=\"http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/\" url_new_window=\"on\" button_text=\"Read news\" button_alignment=\"center\" background_layout=\"light\" custom_button=\"on\" button_text_color=\"#ffffff\" button_bg_color=\"#6370b5\" button_border_color=\"#6370b5\" button_letter_spacing=\"0\" button_use_icon=\"off\" button_icon_placement=\"right\" button_on_hover=\"off\" button_text_color_hover=\"#000000\" button_bg_color_hover=\"rgba(99,112,181,0.57)\" button_letter_spacing_hover=\"0\"] [/et_pb_button][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#3a4149\" inner_shadow=\"off\" parallax=\"on\" background_image=\"http://www.fiepfa.org/wp-content/uploads/2015/12/Stingrays-Reef-1200x805.jpg\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"2_3\"][et_pb_tabs admin_label=\"Overview, mission, here for you\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" active_tab_background_color=\"rgba(30,115,190,0.72)\" inactive_tab_background_color=\"#ffffff\" background_color=\"rgba(145,240,252,0.82)\"] [et_pb_tab title=\"Overview\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe Parent Faculty Association is an organization comprised of students\' parents/guardians and faculty members of Fleming Island Elementary.\r\n\r\nThe PFA does not charge membership fees, and any parent or staff member is automatically a part of our organization.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Mission\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n<ul>\r\n 	<li>To promote parent involvement to provide support in all areas of academic excellence</li>\r\n 	<li>To raise funds to supplement an enriched learning environment</li>\r\n</ul>\r\nIn short, we bridge the gap between what the school system provides and what our students and teachers need.\r\n\r\n[/et_pb_tab][et_pb_tab title=\"Here for you!\" tab_font_select=\"default\" tab_font=\"||||\" tab_line_height=\"2em\" tab_line_height_tablet=\"2em\" tab_line_height_phone=\"2em\" body_font_select=\"default\" body_font=\"||||\" body_line_height=\"2em\" body_line_height_tablet=\"2em\" body_line_height_phone=\"2em\"]\r\n\r\nThe PFA strives to create the best environment for all children. Should you have a concern or issue, we\'ll guide you on where to start to make your voice heard. Read more about the PFA in \"Info,\" then \"About.\"\r\n\r\n[/et_pb_tab] [/et_pb_tabs][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"4\"] [/et_pb_divider][et_pb_text admin_label=\"Text\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_text_color=\"#4184bf\" text_font_size=\"40\" text_line_height=\"1.6em\" text_font=\"Schoolbell||on||\"] How we navigate [/et_pb_text][/et_pb_column][/et_pb_row][/et_pb_section]','Home','Official website of Fleming Island Elementary Parent Faculty Association (FIE PFA) in Fleming Island, Florida','inherit','closed','closed','','83-revision-v1','','','2016-08-15 10:57:47','2016-08-15 10:57:47','',83,'http://www.fiepfa.org/2016/08/15/83-revision-v1/',0,'revision','',0),(750,1,'2016-08-15 11:47:52','2016-08-15 11:47:52','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dana.archibald@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kim.marks@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Secretary DeRousse\" name=\"Michel DeRousse\" position=\"Secretary\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:drsmc@aol.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-08-15 11:47:52','2016-08-15 11:47:52','',88,'http://www.fiepfa.org/2016/08/15/88-revision-v1/',0,'revision','',0),(751,1,'2016-08-18 20:58:21','2016-08-18 20:58:21','[et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" background_color=\"#222b34\" inner_shadow=\"off\" parallax=\"off\"][et_pb_row admin_label=\"row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Meet the team\" background_layout=\"dark\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1>MEET THE PFA BOARD MEMBERS</h1>\r\n&nbsp;\r\n\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"row\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" use_custom_gutter=\"off\" padding_mobile=\"off\" allow_player_pause=\"off\" parallax=\"off\" parallax_method=\"off\" make_equal=\"on\" parallax_1=\"off\" parallax_method_1=\"off\" parallax_2=\"off\" parallax_method_2=\"off\" parallax_3=\"off\" parallax_method_3=\"off\" parallax_4=\"off\" parallax_method_4=\"off\" column_padding_mobile=\"on\"][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Principal Archibald\" name=\"Dana Archibald\" position=\"Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dana-Archibald-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:dana.archibald@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Volunteers Campbell\" name=\"Julie Campbell\" position=\"Volunteer Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"]\r\n\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Faculty Kupfer\" name=\"Linda Kupfer\" position=\"Faculty\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Linda-Kupfer-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:lkupfer@oneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"Asst Principal Marks\" name=\"Kim Marks\" position=\"Assistant Principal\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Kim-Marks-Photo-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:kim.marks@myoneclay.net\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Comm Ivan Cobeiro\" name=\"Ivan Cobeiro\" position=\"Communications Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Fundraising Johnson\" name=\"Cheri Johnson\" position=\"Fundraising\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:johnson.cheri@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"President Webb\" name=\"Dan Webb\" position=\"President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Dan-Webb-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:fievolsteam@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"School Liaison Mestas\" name=\"Brad Mestas\" position=\"School Liaison\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Treasurer Pledger\" name=\"John Pledger\" position=\"Treasurer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\" saved_tabs=\"all\"] [icon name=icon_mail_alt] [/et_pb_team_member][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_team_member admin_label=\"VP Manalo\" name=\"Arlene Manalo\" position=\"Vice President\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Arlene-Manalo-225x300.png\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:gbmanalo@yahoo.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][et_pb_team_member admin_label=\"Publicity Catherine Echevarria\" name=\"Catherine Echevarria\" position=\"Publicity Lead\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"] [icon name=icon_mail_alt] [/et_pb_team_member][et_pb_team_member admin_label=\"Homeroom Vernon\" name=\"Amanda Vernon\" position=\"Homeroom Parent Officer\" image_url=\"http://www.fiepfa.org/wp-content/uploads/2016/01/Photo-Coming-Soon-225x300.jpg\" animation=\"fade_in\" background_layout=\"dark\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" body_line_height=\"1.4em\"]\r\n\r\n<a href=\"mailto:vernonaj@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_team_member][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Team','','inherit','closed','closed','','88-revision-v1','','','2016-08-18 20:58:21','2016-08-18 20:58:21','',88,'http://www.fiepfa.org/2016/08/18/88-revision-v1/',0,'revision','',0),(753,1,'2016-09-20 01:51:20','2016-09-20 01:51:20','','','','inherit','open','closed','','child-listening','','','2016-09-20 01:51:38','2016-09-20 01:51:38','',238,'http://www.fiepfa.org/wp-content/uploads/2016/02/Little-boy-listening.jpg',0,'attachment','image/jpeg',0),(754,1,'2016-09-20 01:56:34','2016-09-20 01:56:34','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"] If you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us! [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"] If interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"] Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nJulie Campbell\r\nVolunteer Officer\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Tracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Fast, easy and convenient, submit your hours by May 4, 2017, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong> [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n<p style=\"text-align: center;\">Sign up to our <a href=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\">newsletter</a> to be among the first to know!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"15\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health screenings\" title=\"Health screenings\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Little-boy-listening.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\r\n<p style=\"text-align: left;\"><strong>8:30 a.m. to 1:30 p.m. | Oct. 11 and 12\r\n</strong>It would be WONDERFUL to have at least eight volunteers each day to help our nurses test our children\'s vision, hearing, height and weight. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" target=\"_blank\">SIGN UP HERE!</a></strong></p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">fiepfa.org/fie-faculty-and-staff</a>)\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\nKathryn Bellin, School Nurse\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Parent Officer (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nCatherine Echevarria, PFA Publicity Officer/Historian\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-autosave-v1','','','2016-09-20 01:56:34','2016-09-20 01:56:34','',238,'http://www.fiepfa.org/2016/09/20/238-autosave-v1/',0,'revision','',0),(755,1,'2016-09-20 01:57:05','2016-09-20 01:57:05','[et_pb_section admin_label=\"Section\" fullwidth=\"on\" specialty=\"off\"][et_pb_fullwidth_image admin_label=\"Fullwidth Image\" src=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Volunteer-hands-1790-500.jpg\" show_in_lightbox=\"off\" url_new_window=\"off\" use_overlay=\"off\" animation=\"fade_in\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"] [/et_pb_fullwidth_image][/et_pb_section][et_pb_section admin_label=\"section\" background_color=\"#ecf9fe\" inner_shadow=\"off\" parallax=\"on\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Volunteer Central\" background_layout=\"light\" text_orientation=\"left\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">Volunteer Central</h1>\r\n<p style=\"text-align: center;\"><em>[icon name=icon_star] [icon name=icon_star] If easier, feel free to click on the respective icons (e.g., pen, clock, book, photo) for documents and links. [icon name=icon_star] [icon name=icon_star]</em></p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Join us\" title=\"Your gift of time\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%235%%\" icon_color=\"#8224e3\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#8224e3\"] If you have a little time to spare – or a lot – every minute makes a difference! If you like to work in a group, or bunker down at home, we have the role, event or task for you! From tweens to retirees, there\'s something for everyone! Come join us! [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign me up\" title=\"Sign me up!\" url_new_window=\"on\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%282%%\" icon_color=\"#0015ff\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#0015ff\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\"] If interested in volunteering, please complete the <a href=\"http://www.fiepfa.org/wp-content/uploads/2016/02/FIE-Volunteer-Reg-Form.pdf\" target=\"_blank\"><strong>county\'s registration form</strong> </a>for a background check. Our volunteer coordinator will send you a welcome packet and activity bulletins when cleared. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Sign in\" title=\"Sign in\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%275%%\" icon_color=\"#dd9933\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#dd9933\"] Please don\'t forget to sign in at the front desk and grab a badge before any on-campus volunteer activity. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Contact\" title=\"Contact\" url_new_window=\"off\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon=\"on\" icon_color=\"#81d742\" use_circle=\"off\" circle_color=\"#0d2035\" use_circle_border=\"off\" circle_border_color=\"#2caaca\" icon_placement=\"top\" font_icon=\"%%222%%\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" header_text_color=\"#81d742\" saved_tabs=\"all\"]\r\n\r\nJulie Campbell\r\nVolunteer Officer\r\n<a href=\"mailto:stingrayvols@gmail.com\" target=\"_blank\">[icon name=icon_mail_alt]</a>\r\n\r\n[/et_pb_blurb][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Volunteer handbook\" title=\"Volunteer Handbook\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%254%%\" icon_color=\"#25e8e8\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#25e8e8\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/08/FIE-Clay-County-Volunteer-Handbook-20160815-LR.pdf\" icon_font_size=\"80px\"] [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Log sheet\" title=\"Log sheet\" url=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%227%%\" icon_color=\"#dd4b4b\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#dd4b4b\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Tracking volunteer hours helps us win awards and grants. More on <strong><a href=\"http://www.fiepfa.org/wp-content/uploads/2016/04/FIE-Volunteer-Log-20160421.pdf\" target=\"_blank\">the log</a></strong>. [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_blurb admin_label=\"Submit hours\" title=\"Submit your hours\" url=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\" url_new_window=\"on\" use_icon=\"on\" font_icon=\"%%373%%\" icon_color=\"#3cb252\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" icon_placement=\"left\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"on\" header_text_color=\"#3cb252\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" icon_font_size=\"80px\"] Fast, easy and convenient, submit your hours by May 4, 2017, <strong><a href=\"http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/\">here! </a></strong> [/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_4\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\"] [/et_pb_divider][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#ffffff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Upcoming and ongoing volunteer events\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">UPCOMING AND ONGOING VOLUNTEER EVENTS</h1>\r\n<p style=\"text-align: center;\">Sign up to our <a href=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\">newsletter</a> to be among the first to know!</p>\r\n[/et_pb_text][/et_pb_column][/et_pb_row][et_pb_row admin_label=\"Row\"][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" height=\"15\" /][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_blurb admin_label=\"Health screenings\" title=\"Health screenings\" url=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" url_new_window=\"on\" use_icon=\"off\" icon_color=\"#6370b5\" use_circle=\"off\" circle_color=\"#6370b5\" use_circle_border=\"off\" circle_border_color=\"#6370b5\" image=\"http://www.fiepfa.org/wp-content/uploads/2016/02/Little-boy-listening.jpg\" icon_placement=\"top\" animation=\"top\" background_layout=\"light\" text_orientation=\"left\" use_icon_font_size=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" saved_tabs=\"all\"]\r\n<p style=\"text-align: left;\"><strong>8:30 a.m. to 1:30 p.m. | Oct. 11 and 12\r\n</strong>It would be WONDERFUL to have at least eight volunteers each day to help our nurses test our children\'s vision, hearing, height and weight. <strong><a href=\"http://www.signupgenius.com/go/30e0e4fada82da1fd0-fiehealth\" target=\"_blank\">SIGN UP HERE!</a></strong></p>\r\n[/et_pb_blurb][/et_pb_column][et_pb_column type=\"1_3\"][et_pb_divider admin_label=\"Divider\" color=\"#ffffff\" show_divider=\"off\" divider_style=\"solid\" divider_position=\"top\" hide_on_mobile=\"on\" /][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" fullwidth=\"off\" specialty=\"off\" inner_shadow=\"off\" parallax=\"off\" module_id=\"layouts\" transparent_background=\"off\" background_color=\"#f2f3ff\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row admin_label=\"Row\"][et_pb_column type=\"4_4\"][et_pb_text admin_label=\"Other opps\" background_layout=\"light\" text_orientation=\"center\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n<h1 style=\"text-align: center;\">OTHER VOLUNTEER OPPORTUNITIES</h1>\r\n[/et_pb_text][et_pb_toggle admin_label=\"Art Enrichment\" title=\"Art Enrichment\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\nBased on your availability and coordination with the teacher.\r\n\r\n<strong>Contacts      </strong>\r\nLori Butler, Director (based at Lakeside Elementary School) (<a href=\"mailto:lebutler@oneclay.net\">lebutler@oneclay.net</a> and 904-213-2916)\r\nElise Bishop, Volunteer (great for benchmarking) (904-237-4278)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"At-home projects\" title=\"At-home Projects\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts         </strong>\r\nSpecific teachers (Directory – <a href=\"http://www.fiepfa.org/fie-faculty-and-staff/\">fiepfa.org/fie-faculty-and-staff</a>)\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Clinic\" title=\"Clinic\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts     </strong>\r\nLisa Medellin, School Nurse (<a href=\"mailto:lamedellin@oneclay.net\">lamedellin@oneclay.net</a>)\r\nKathryn Bellin, School Nurse\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Homeroom parent\" title=\"Homeroom Parent\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Parent Officer (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Lunchroom Host/Hostess\" title=\"Lunchroom Hostess/Host\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nJulie Campbell, Volunteer Officer (<a href=\"mailto:stingrayvols@gmail.com\">stingrayvols@gmail.com</a>)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Parent Faculty Association or School Advisory Council\" title=\"Parent Faculty Association or School Advisory Council\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contacts      </strong>\r\nPFA: Dan Webb, PFA President (<a href=\"mailto:fievolsteam@gmail.com\">fievolsteam@gmail.com</a> and 219-488-7912)\r\nSAC: Dana Archibald, Principal of Fleming Island Elementary (<a href=\"mailto:dlarchibald@oneclay.net\">dlarchibald@oneclay.net</a> and 904-278-2020)\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Photography\" title=\"Photography\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact  </strong>\r\nCatherine Echevarria, PFA Publicity Officer/Historian\r\n\r\n[/et_pb_toggle][et_pb_toggle admin_label=\"Teacher Appreciation Week\" title=\"Teacher Appreciation Week\" open=\"off\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\"]\r\n\r\n<strong>Contact</strong>\r\nAmanda Vernon, PFA Homeroom Liaison (<a href=\"mailto:vernonaj@gmail.com\">vernonaj@gmail.com</a> and 904-707-8660)\r\n\r\n[/et_pb_toggle][/et_pb_column][/et_pb_row][/et_pb_section][et_pb_section admin_label=\"section\" global_module=\"316\" fullwidth=\"off\" specialty=\"off\" background_color=\"#f74b47\" inner_shadow=\"on\" parallax=\"off\" transparent_background=\"off\" allow_player_pause=\"off\" parallax_method=\"off\" padding_mobile=\"off\" make_fullwidth=\"off\" use_custom_width=\"off\" width_unit=\"on\" make_equal=\"off\" use_custom_gutter=\"off\"][et_pb_row global_parent=\"316\" admin_label=\"row\"][et_pb_column type=\"1_3\"][et_pb_text global_parent=\"316\" admin_label=\"News icon\" background_layout=\"dark\" text_orientation=\"right\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" text_font_size=\"100\" saved_tabs=\"all\"] [icon name=icon_document] [/et_pb_text][/et_pb_column][et_pb_column type=\"2_3\"][et_pb_cta global_parent=\"316\" admin_label=\"Call To Action\" button_url=\"http://fiepfa.us12.list-manage.com/subscribe?u=798c0cf8afa0cce87293ffc1d&amp;id=6a5929bf74\" button_text=\"Sign up today!\" use_background_color=\"off\" background_color=\"#2ea3f2\" background_layout=\"dark\" text_orientation=\"left\" title=\"Join our e-community!\" url_new_window=\"on\" use_border_color=\"off\" border_color=\"#ffffff\" border_style=\"solid\" custom_button=\"off\" button_letter_spacing=\"0\" button_use_icon=\"default\" button_icon_placement=\"right\" button_on_hover=\"on\" button_letter_spacing_hover=\"0\"]\r\n<p style=\"text-align: left;\">Help us communicate with you better and save paper through e-communication! Join our mailing list to learn about volunteer opportunities, PFA-organized events, fundraising efforts and more. We promise to not hound, spam or sell your e-mail address to any third party.</p>\r\n[/et_pb_cta][/et_pb_column][/et_pb_row][/et_pb_section]','Volunteers','','inherit','closed','closed','','238-revision-v1','','','2016-09-20 01:57:05','2016-09-20 01:57:05','',238,'http://www.fiepfa.org/2016/09/20/238-revision-v1/',0,'revision','',0),(756,1,'2016-11-28 18:11:08','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2016-11-28 18:11:08','0000-00-00 00:00:00','',0,'http://www.fiepfa.org/?p=756',0,'post','',0);
/*!40000 ALTER TABLE `wp_posts` 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=InnoDB 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 (117,6,0),(118,6,0),(119,6,0),(121,2,0),(165,7,0),(165,8,0),(165,9,0),(174,6,0),(237,7,0),(237,8,0),(237,9,0),(247,6,0),(314,6,0),(315,6,0),(316,9,0),(316,10,0),(316,11,0),(330,5,0),(337,5,0),(340,5,0),(355,7,0),(355,8,0),(355,9,0),(371,7,0),(371,9,0),(371,12,0),(374,7,0),(374,9,0),(374,12,0),(386,3,0),(404,7,0),(404,9,0),(404,12,0),(405,7,0),(405,9,0),(405,12,0),(408,7,0),(408,9,0),(408,12,0),(424,6,0),(425,6,0),(426,6,0),(428,6,0),(452,7,0),(452,9,0),(452,13,0),(452,14,0),(472,7,0),(472,9,0),(472,11,0),(473,7,0),(473,9,0),(473,11,0),(479,6,0),(480,7,0),(480,9,0),(480,11,0),(480,13,0),(492,7,0),(492,9,0),(492,11,0),(507,7,0),(507,9,0),(507,12,0),(507,15,0),(508,7,0),(508,9,0),(508,12,0),(523,5,0),(528,7,0),(528,9,0),(528,12,0),(528,13,0),(529,7,0),(529,9,0),(529,13,0),(529,14,0),(532,7,0),(532,9,0),(532,13,0),(532,14,0),(533,7,0),(533,9,0),(533,13,0),(533,14,0),(534,7,0),(534,9,0),(534,11,0),(534,13,0),(552,3,0),(552,17,0),(576,7,0),(576,9,0),(576,14,0),(576,16,0),(582,7,0),(582,9,0),(582,12,0),(582,15,0),(585,7,0),(585,9,0),(585,12,0),(585,15,0),(587,5,0),(590,4,0),(597,7,0),(597,9,0),(597,11,0),(597,13,0),(600,7,0),(600,9,0),(600,14,0),(606,7,0),(606,9,0),(606,11,0),(608,7,0),(608,9,0),(608,11,0),(610,7,0),(610,9,0),(610,11,0),(618,6,0),(629,4,0),(661,1,0),(663,7,0),(663,9,0),(663,11,0),(663,13,0),(670,7,0),(670,9,0),(670,11,0),(693,7,0),(693,9,0),(693,11,0),(698,7,0),(698,9,0),(698,11,0),(700,5,0),(718,7,0),(718,9,0),(718,11,0),(718,15,0),(731,7,0),(731,9,0),(731,12,0),(731,15,0),(732,7,0),(732,9,0),(732,12,0),(733,7,0),(733,9,0),(733,12,0),(733,15,0),(734,7,0),(734,9,0),(734,12,0),(734,15,0),(735,7,0),(735,9,0),(735,12,0),(735,15,0),(736,7,0),(736,9,0),(736,11,0),(736,15,0),(737,7,0),(737,9,0),(737,11,0),(737,15,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) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*!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,0),(2,2,'nav_menu','',0,1),(3,3,'category','',0,2),(4,4,'category','',0,2),(5,5,'category','',0,6),(6,6,'nav_menu','',0,13),(7,7,'scope','',0,40),(8,8,'layout_type','',0,3),(9,9,'module_width','',0,41),(10,10,'scope','',0,1),(11,11,'layout_type','',0,17),(12,12,'layout_type','',0,15),(13,13,'layout_category','',0,9),(14,14,'layout_type','',0,6),(15,15,'layout_category','',0,10),(16,16,'layout_category','',0,1),(17,17,'category','',0,1);
/*!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 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 */;
/*!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) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8;
/*!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,'Pre-header','pre-header',0),(3,'Events','events',0),(4,'News','news',0),(5,'BARB Newsletter','barb-newsletter',0),(6,'Main-menu','main-menu',0),(7,'not_global','not_global',0),(8,'layout','layout',0),(9,'regular','regular',0),(10,'global','global',0),(11,'section','section',0),(12,'module','module',0),(13,'Fundraising','fundraising',0),(14,'row','row',0),(15,'Volunteer','volunteer',0),(16,'District','district',0),(17,'Testing','testing',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) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=91 DEFAULT CHARSET=utf8;
/*!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,'nickname','FIEPFAlogin'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(11,1,'wp_user_level','10'),(12,1,'dismissed_wp_pointers','black_studio_tinymce_widget'),(13,1,'show_welcome_panel','1'),(15,1,'wp_dashboard_quick_press_last_post_id','756'),(16,1,'wp_user-settings','libraryContent=browse&align=left&wplink=1&editor=tinymce&urlbutton=file&advImgDetails=hide&post_dfw=off&hidetb=1'),(17,1,'wp_user-settings-time','1471256760'),(21,1,'closedpostboxes_page','a:0:{}'),(22,1,'metaboxhidden_page','a:5:{i:0;s:12:\"revisionsdiv\";i:1;s:16:\"commentstatusdiv\";i:2;s:11:\"commentsdiv\";i:3;s:7:\"slugdiv\";i:4;s:9:\"authordiv\";}'),(23,1,'wporg_favorites','gatorchristine'),(25,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(26,1,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(27,1,'nav_menu_recently_edited','6'),(35,2,'nickname','Christine Leon Vorst'),(36,2,'first_name','Christine'),(37,2,'last_name','Leon Vorst'),(38,2,'description',''),(39,2,'rich_editing','true'),(40,2,'comment_shortcuts','false'),(41,2,'admin_color','fresh'),(42,2,'use_ssl','0'),(43,2,'show_admin_bar_front','true'),(44,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(45,2,'wp_user_level','10'),(46,2,'dismissed_wp_pointers','black_studio_tinymce_widget'),(48,2,'wp_dashboard_quick_press_last_post_id','343'),(49,2,'wp_user-settings','editor=tinymce&wplink=1&libraryContent=browse&mfold=o'),(50,2,'wp_user-settings-time','1454432184'),(51,2,'nav_menu_recently_edited','6'),(52,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(53,2,'metaboxhidden_nav-menus','a:5:{i:0;s:21:\"add-post-type-project\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:20:\"add-project_category\";i:4;s:15:\"add-project_tag\";}'),(62,3,'nickname','Dan Webb'),(63,3,'first_name','Dan'),(64,3,'last_name','Webb'),(65,3,'description',''),(66,3,'rich_editing','true'),(67,3,'comment_shortcuts','false'),(68,3,'admin_color','fresh'),(69,3,'use_ssl','0'),(70,3,'show_admin_bar_front','true'),(71,3,'wp_capabilities','a:1:{s:6:\"author\";b:1;}'),(72,3,'wp_user_level','2'),(73,3,'dismissed_wp_pointers',''),(75,4,'nickname','Ivan Cobreiro'),(76,4,'first_name','Ivan'),(77,4,'last_name','Cobreiro'),(78,4,'description',''),(79,4,'rich_editing','true'),(80,4,'comment_shortcuts','false'),(81,4,'admin_color','fresh'),(82,4,'use_ssl','0'),(83,4,'show_admin_bar_front','true'),(84,4,'wp_capabilities','a:1:{s:6:\"editor\";b:1;}'),(85,4,'wp_user_level','7'),(86,4,'dismissed_wp_pointers',''),(88,4,'wp_dashboard_quick_press_last_post_id','756'),(89,4,'default_password_nag','');
/*!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) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
/*!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,'FIEPFAlogin','$P$B/TopBHQoDOYIdmixxQ1KcW0DpfJsI0','FIEPFAlogin','admin@healthwealth.email','','2015-12-04 18:16:16','',0,'FIEPFAlogin'),(2,'Christine Leon Vorst','$P$B.VN.y7aUgAYxAz/Pd2OKw7.dtJwIh/','christine-leon-vorst','gatorchristine@yahoo.com','http://www.fiepfa.org','2016-02-02 11:29:01','1454412541:$P$BlX4UfE0NjCEi51H424CbAAqgGtNxM1',0,'Christine Leon Vorst'),(3,'Dan Webb','$P$B3SNbppxOPRAFuLLWAesOSeWDQkJj./','dan-webb','fievolsteam@gmail.com','','2016-05-12 11:34:13','1463052857:$P$BSB31qtqczP2q2da4rOwrbzppPw8W6/',0,'Dan Webb'),(4,'Ivan Cobreiro','$P$BtBpNnNbD9DoK9achFMLC2Tn5Z5Fz/.','ivan-cobreiro','cobreiroi@bellsouth.net','','2016-09-20 01:42:56','',0,'Ivan Cobreiro');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBadLeechers`
--

DROP TABLE IF EXISTS `wp_wfBadLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBadLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBadLeechers`
--

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

--
-- Table structure for table `wp_wfBlockedIPLog`
--

DROP TABLE IF EXISTS `wp_wfBlockedIPLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlockedIPLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `countryCode` varchar(2) NOT NULL,
  `blockCount` int(10) unsigned NOT NULL DEFAULT '0',
  `unixday` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`,`unixday`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlockedIPLog`
--

LOCK TABLES `wp_wfBlockedIPLog` WRITE;
/*!40000 ALTER TABLE `wp_wfBlockedIPLog` DISABLE KEYS */;
INSERT INTO `wp_wfBlockedIPLog` VALUES ('\0\0\0\0\0\0\0\0\0\0Pc','HU',1,17133),('\0\0\0\0\0\0\0\0\0\0u(','IN',1,17133),('\0\0\0\0\0\0\0\0\0\0m_&\'','UA',1,17133),('\0\0\0\0\0\0\0\0\0\0b','IN',1,17133),('\0\0\0\0\0\0\0\0\0\0R','DK',1,17133),('\0\0\0\0\0\0\0\0\0\0\'.6','PK',1,17133),('\0\0\0\0\0\0\0\0\0\0sR)','MY',1,17133),('\0\0\0\0\0\0\0\0\0\01z','KR',1,17132),('\0\0\0\0\0\0\0\0\0\0-xaI','BD',1,17132),('\0\0\0\0\0\0\0\0\0\0Ú','FR',1,17132),('\0\0\0\0\0\0\0\0\0\0N','BR',1,17132),('\0\0\0\0\0\0\0\0\0\0bV','PL',1,17132),('\0\0\0\0\0\0\0\0\0\0C','IT',1,17132),('\0\0\0\0\0\0\0\0\0\0]W','RS',1,17132),('\0\0\0\0\0\0\0\0\0\0','CL',1,17133),('\0\0\0\0\0\0\0\0\0\0+5','CH',1,17133),('\0\0\0\0\0\0\0\0\0\0a<','MX',1,17133),('\0\0\0\0\0\0\0\0\0\0Yz','RO',1,17132),('\0\0\0\0\0\0\0\0\0\0.C','DE',1,17132),('\0\0\0\0\0\0\0\0\0\0s%','MY',1,17132),('\0\0\0\0\0\0\0\0\0\0X<','TR',1,17130),('\0\0\0\0\0\0\0\0\0\0zo6','AU',1,17130),('\0\0\0\0\0\0\0\0\0\0D','EG',1,17130),('\0\0\0\0\0\0\0\0\0\0 S','IT',1,17130),('\0\0\0\0\0\0\0\0\0\0mk-','GR',1,17130),('\0\0\0\0\0\0\0\0\0\0m','AZ',1,17130),('\0\0\0\0\0\0\0\0\0\0^','RS',1,17130),('\0\0\0\0\0\0\0\0\0\0','JP',1,17130),('\0\0\0\0\0\0\0\0\0\0q','PK',1,17130),('\0\0\0\0\0\0\0\0\0\0 H','PA',1,17131),('\0\0\0\0\0\0\0\0\0\0w_;P','PH',1,17131),('\0\0\0\0\0\0\0\0\0\0ȓ','AU',1,17131),('\0\0\0\0\0\0\0\0\0\0uИ','IN',1,17131),('\0\0\0\0\0\0\0\0\0\0Uʕ','PL',1,17131),('\0\0\0\0\0\0\0\0\0\0Oq3','RO',1,17131),('\0\0\0\0\0\0\0\0\0\0%','QA',1,17131),('\0\0\0\0\0\0\0\0\0\0w/4','PK',1,17131),('\0\0\0\0\0\0\0\0\0\0=','BN',1,17131),('\0\0\0\0\0\0\0\0\0\0WC\"','BE',1,17131),('\0\0\0\0\0\0\0\0\0\0I.','US',1,17131),('\0\0\0\0\0\0\0\0\0\0/2?','IN',1,17131),('\0\0\0\0\0\0\0\0\0\0','MX',1,17131),('\0\0\0\0\0\0\0\0\0\0+[F','IN',1,17132),('\0\0\0\0\0\0\0\0\0\0','DE',1,17114),('\0\0\0\0\0\0\0\0\0\0','UA',1,17115),('\0\0\0\0\0\0\0\0\0\0Úi','FR',1,17118),('\0\0\0\0\0\0\0\0\0\0','UA',1,17118),('\0\0\0\0\0\0\0\0\0\0.','DE',1,17112),('\0\0\0\0\0\0\0\0\0\0MN','SA',1,17129),('\0\0\0\0\0\0\0\0\0\0]>','HR',1,17129),('\0\0\0\0\0\0\0\0\0\0ihX','DZ',1,17129),('\0\0\0\0\0\0\0\0\0\0\r','RO',1,17129),('\0\0\0\0\0\0\0\0\0\0Or','RO',1,17129),('\0\0\0\0\0\0\0\0\0\0X','FR',1,17129),('\0\0\0\0\0\0\0\0\0\0N','SK',1,17129),('\0\0\0\0\0\0\0\0\0\0[','UA',1,17130),('\0\0\0\0\0\0\0\0\0\0Y{-p','RO',1,17130),('\0\0\0\0\0\0\0\0\0\02t','SG',1,17130),('\0\0\0\0\0\0\0\0\0\0','BR',1,17130),('\0\0\0\0\0\0\0\0\0\0','DE',1,17130),('\0\0\0\0\0\0\0\0\0\0ii','DZ',1,17130),('\0\0\0\0\0\0\0\0\0\0pW','PH',1,17130),('\0\0\0\0\0\0\0\0\0\01','PH',1,17130),('\0\0\0\0\0\0\0\0\0\02>f','US',1,17129),('\0\0\0\0\0\0\0\0\0\0x','BR',1,17128),('\0\0\0\0\0\0\0\0\0\0m_&\'','UA',1,17117),('\0\0\0\0\0\0\0\0\0\0m_&\'','UA',1,17118),('\0\0\0\0\0\0\0\0\0\0]','DE',1,17119),('\0\0\0\0\0\0\0\0\0\06','US',1,17119),('\0\0\0\0\0\0\0\0\0\0m_&\'','UA',1,17120),('\0\0\0\0\0\0\0\0\0\0[ғ','UA',33,17121),('\0\0\0\0\0\0\0\0\0\0','DE',1,17124),('\0\0\0\0\0\0\0\0\0\0>G','IT',1,17126),('\0\0\0\0\0\0\0\0\0\0','DE',1,17127),('\0\0\0\0\0\0\0\0\0\0W','UA',1,17127),('\0\0\0\0\0\0\0\0\0\0Ú','FR',1,17128),('\0\0\0\0\0\0\0\0\0\0>M','IT',1,17117),('\0\0\0\0\0\0\0\0\0\0[','UA',8,17129),('\0\0\0\0\0\0\0\0\0\0m_&\'','UA',1,17129);
/*!40000 ALTER TABLE `wp_wfBlockedIPLog` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBlocks`
--

DROP TABLE IF EXISTS `wp_wfBlocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocks` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  `wfsn` tinyint(3) unsigned DEFAULT '0',
  `permanent` tinyint(3) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`),
  KEY `k1` (`wfsn`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlocks`
--

LOCK TABLES `wp_wfBlocks` WRITE;
/*!40000 ALTER TABLE `wp_wfBlocks` DISABLE KEYS */;
INSERT INTO `wp_wfBlocks` VALUES ('\0\0\0\0\0\0\0\0\0\0b',1480343038,'Blocked by Wordfence Security Network',1480343041,1,1,0),('\0\0\0\0\0\0\0\0\0\0\'.6',1480361986,'Blocked by Wordfence Security Network',0,0,1,0),('\0\0\0\0\0\0\0\0\0\0R',1480361251,'Blocked by Wordfence Security Network',0,0,1,0);
/*!40000 ALTER TABLE `wp_wfBlocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfBlocksAdv`
--

DROP TABLE IF EXISTS `wp_wfBlocksAdv`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfBlocksAdv` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `blockType` char(2) NOT NULL,
  `blockString` varchar(255) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `reason` varchar(255) NOT NULL,
  `totalBlocked` int(10) unsigned DEFAULT '0',
  `lastBlocked` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfBlocksAdv`
--

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

--
-- Table structure for table `wp_wfConfig`
--

DROP TABLE IF EXISTS `wp_wfConfig`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfConfig` (
  `name` varchar(100) NOT NULL,
  `val` longblob,
  `autoload` enum('no','yes') NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`name`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfConfig`
--

LOCK TABLES `wp_wfConfig` WRITE;
/*!40000 ALTER TABLE `wp_wfConfig` DISABLE KEYS */;
INSERT INTO `wp_wfConfig` VALUES ('alertOn_critical','1','yes'),('alertOn_update','0','yes'),('alertOn_warnings','1','yes'),('alertOn_throttle','0','yes'),('alertOn_block','0','yes'),('alertOn_loginLockout','0','yes'),('alertOn_lostPasswdForm','0','yes'),('alertOn_adminLogin','0','yes'),('alertOn_nonAdminLogin','0','yes'),('liveTrafficEnabled','1','yes'),('advancedCommentScanning','0','yes'),('checkSpamIP','0','yes'),('spamvertizeCheck','0','yes'),('liveTraf_ignorePublishers','1','yes'),('scheduledScansEnabled','1','yes'),('scansEnabled_public','0','yes'),('scansEnabled_heartbleed','1','yes'),('scansEnabled_core','1','yes'),('scansEnabled_themes','0','yes'),('scansEnabled_plugins','0','yes'),('scansEnabled_malware','1','yes'),('scansEnabled_fileContents','1','yes'),('scansEnabled_database','1','yes'),('scansEnabled_posts','1','yes'),('scansEnabled_comments','1','yes'),('scansEnabled_passwds','1','yes'),('scansEnabled_diskSpace','1','yes'),('scansEnabled_options','0','yes'),('scansEnabled_dns','1','yes'),('scansEnabled_scanImages','0','yes'),('scansEnabled_highSense','0','yes'),('scansEnabled_oldVersions','1','yes'),('firewallEnabled','1','yes'),('blockFakeBots','0','yes'),('autoBlockScanners','0','yes'),('loginSecurityEnabled','1','yes'),('loginSec_lockInvalidUsers','0','yes'),('loginSec_maskLoginErrors','1','yes'),('loginSec_blockAdminReg','1','yes'),('loginSec_disableAuthorScan','1','yes'),('other_hideWPVersion','1','yes'),('other_noAnonMemberComments','1','yes'),('other_blockBadPOST','0','yes'),('other_scanComments','1','yes'),('other_pwStrengthOnUpdate','1','yes'),('other_WFNet','1','yes'),('other_scanOutside','0','yes'),('deleteTablesOnDeact','0','yes'),('autoUpdate','1','yes'),('disableCookies','0','yes'),('startScansRemotely','0','yes'),('addCacheComment','0','yes'),('disableCodeExecutionUploads','0','yes'),('allowHTTPSCaching','0','yes'),('debugOn','0','yes'),('email_summary_enabled','1','yes'),('email_summary_dashboard_widget_enabled','1','yes'),('ssl_verify','1','yes'),('securityLevel','2','yes'),('alertEmails','cleon@healthwealth.email','yes'),('liveTraf_ignoreUsers','','yes'),('liveTraf_ignoreIPs','','yes'),('liveTraf_ignoreUA','','yes'),('apiKey','d20334f1f18e161e6864bc41ad94bbd2a0eaadce30c6349297d2993522673c6c9dcb725435231f88aceae7b076dd984c57fd4b5f7faaf60fa86483605d88a547','yes'),('maxMem','256','yes'),('scan_exclude','','yes'),('whitelisted','','yes'),('bannedURLs','','yes'),('maxExecutionTime','','yes'),('howGetIPs','','yes'),('actUpdateInterval','','yes'),('alert_maxHourly','0','yes'),('loginSec_userBlacklist','','yes'),('neverBlockBG','neverBlockVerified','yes'),('loginSec_countFailMins','5','yes'),('loginSec_lockoutMins','5','yes'),('loginSec_strongPasswds','pubs','yes'),('loginSec_maxFailures','20','yes'),('loginSec_maxForgotPasswd','20','yes'),('maxGlobalRequests','DISABLED','yes'),('maxGlobalRequests_action','throttle','yes'),('maxRequestsCrawlers','DISABLED','yes'),('maxRequestsCrawlers_action','throttle','yes'),('maxRequestsHumans','DISABLED','yes'),('maxRequestsHumans_action','throttle','yes'),('max404Crawlers','DISABLED','yes'),('max404Crawlers_action','throttle','yes'),('max404Humans','DISABLED','yes'),('max404Humans_action','throttle','yes'),('maxScanHits','DISABLED','yes'),('maxScanHits_action','throttle','yes'),('blockedTime','300','yes'),('email_summary_interval','monthly','yes'),('email_summary_excluded_directories','wp-content/cache,wp-content/wfcache,wp-content/plugins/wordfence/tmp','yes'),('allowed404s','/favicon.ico\r\n/apple-touch-icon*.png\r\n/*@2x.png\r\n/browserconfig.xml','yes'),('encKey','6a2760a84a1a0c08','yes'),('cbl_restOfSiteBlocked','1','yes'),('vulnRegex','/(?:wordfence_test_vuln_match|\\/timthumb\\.php|\\/thumb\\.php|\\/thumbs\\.php|\\/thumbnail\\.php|\\/thumbnails\\.php|\\/thumnails\\.php|\\/cropper\\.php|\\/picsize\\.php|\\/resizer\\.php|connectors\\/uploadtest\\.html|connectors\\/test\\.html|mingleforumaction|uploadify\\.php|allwebmenus-wordpress-menu-plugin|wp-cycle-playlist|count-per-day|wp-autoyoutube|pay-with-tweet|comment-rating\\/ck-processkarma\\.php)/i','yes'),('welcomeClosed','1','yes'),('totalLoginHits','8072','yes'),('totalLogins','78','yes'),('lastAdminLogin','a:6:{s:6:\"userID\";i:1;s:8:\"username\";s:11:\"FIEPFAlogin\";s:9:\"firstName\";s:0:\"\";s:8:\"lastName\";s:0:\"\";s:4:\"time\";s:30:\"Mon 28th November @ 06:11:04PM\";s:2:\"IP\";s:11:\"73.35.28.45\";}','yes'),('totalAlertsSent','82','yes'),('lastScheduledScanStart','1480302736','yes'),('totalScansRun','638','yes'),('wfKillRequested','0','no'),('currentCronKey','','yes'),('wf_scanRunning','','yes'),('wfStatusStartMsgs','a:17:{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:\"\";i:7;s:0:\"\";i:8;s:0:\"\";i:9;s:0:\"\";i:10;s:0:\"\";i:11;s:0:\"\";i:12;s:0:\"\";i:13;s:0:\"\";i:14;s:0:\"\";i:15;s:0:\"\";i:16;s:0:\"\";}','yes'),('wafAlertOnAttacks','1','yes'),('wafAlertWhitelist','','yes'),('wf_summaryItems','a:16:{s:12:\"totalPlugins\";i:6;s:10:\"lastUpdate\";i:1480302831;s:11:\"totalThemes\";i:1;s:9:\"totalData\";s:8:\"47.47 MB\";s:10:\"totalFiles\";i:3012;s:9:\"totalDirs\";i:400;s:10:\"linesOfPHP\";i:587254;s:10:\"linesOfJCH\";i:242007;s:10:\"totalUsers\";i:4;s:10:\"totalPages\";s:2:\"13\";s:10:\"totalPosts\";s:2:\"11\";s:13:\"totalComments\";s:1:\"0\";s:15:\"totalCategories\";s:1:\"5\";s:11:\"totalTables\";i:40;s:9:\"totalRows\";i:12255;s:8:\"scanTime\";d:1480302831.976171970367431640625;}','yes'),('scanFileProcessing','','yes'),('wfPeakMemory','82505160','yes'),('wf_dnsCNAME','www.fiepfa.org points to fiepfa.org','yes'),('wf_dnsA','fiepfa.org points to 70.39.150.106','yes'),('wfsd_engine','','no'),('wf_dnsMX','','yes'),('wf_dnsLogged','1','yes'),('lastAttackDataSendTime','1480272722.072198','yes'),('lastScanCompleted','ok','yes'),('totalIPsBlocked','3384','yes'),('totalIPsLocked','5','yes'),('tourClosed','1','yes'),('cacheType','','yes'),('autoUpdateChoice','1','yes'),('disableConfigCaching','0','yes'),('lastEmailHash','1479125960:494f2b26e367696f0ca01a1919974072','yes'),('scansEnabled_checkReadableConfig','1','yes'),('scansEnabled_wpscan_fullPathDisclosure','0','yes'),('scansEnabled_wpscan_directoryListingEnabled','0','yes'),('scansEnabled_suspiciousAdminUsers','1','yes'),('scan_include_extra','','yes'),('liveTraf_maxRows','2000','yes'),('signatureUpdateTime','1477667972','yes'),('adminUserList','a:2:{i:2;i:1;i:1;i:1;}','yes'),('total503s','4549','yes'),('emailedIssuesList','a:34:{i:0;a:2:{s:7:\"ignoreC\";s:32:\"407e4193e3da90556601d4b9e0c43bb9\";s:7:\"ignoreP\";s:32:\"407e4193e3da90556601d4b9e0c43bb9\";}i:1;a:2:{s:7:\"ignoreC\";s:32:\"5e62a1439907acd70631e2fc1617fc26\";s:7:\"ignoreP\";s:32:\"5e62a1439907acd70631e2fc1617fc26\";}i:2;a:2:{s:7:\"ignoreC\";s:32:\"a6d4911b5472b51d7440854d6e07efc5\";s:7:\"ignoreP\";s:32:\"a6d4911b5472b51d7440854d6e07efc5\";}i:3;a:2:{s:7:\"ignoreC\";s:32:\"120d558ed69f3ae6dc50d1aa15417556\";s:7:\"ignoreP\";s:32:\"120d558ed69f3ae6dc50d1aa15417556\";}i:4;a:2:{s:7:\"ignoreC\";s:32:\"82ff16712ecb32c6bf560e33e1a8bc80\";s:7:\"ignoreP\";s:32:\"82ff16712ecb32c6bf560e33e1a8bc80\";}i:5;a:2:{s:7:\"ignoreC\";s:32:\"975f7c1d632e5c8341750f78f2a9bd30\";s:7:\"ignoreP\";s:32:\"975f7c1d632e5c8341750f78f2a9bd30\";}i:6;a:2:{s:7:\"ignoreC\";s:32:\"f41e246bd47570ccfe214545fe737364\";s:7:\"ignoreP\";s:32:\"f41e246bd47570ccfe214545fe737364\";}i:7;a:2:{s:7:\"ignoreC\";s:32:\"99935a49cfeabf6337128ecfa929a91a\";s:7:\"ignoreP\";s:32:\"99935a49cfeabf6337128ecfa929a91a\";}i:8;a:2:{s:7:\"ignoreC\";s:32:\"ea15b282be411877d2db5e43e2dd5336\";s:7:\"ignoreP\";s:32:\"ea15b282be411877d2db5e43e2dd5336\";}i:9;a:2:{s:7:\"ignoreC\";s:32:\"7c29b8ffe943315e952480c9a99684a7\";s:7:\"ignoreP\";s:32:\"7c29b8ffe943315e952480c9a99684a7\";}i:10;a:2:{s:7:\"ignoreC\";s:32:\"b194e6e1c032cac2255cf4cc117aac0b\";s:7:\"ignoreP\";s:32:\"b194e6e1c032cac2255cf4cc117aac0b\";}i:11;a:2:{s:7:\"ignoreC\";s:32:\"1c9156eed73cc63186c1e1d15215b246\";s:7:\"ignoreP\";s:32:\"1c9156eed73cc63186c1e1d15215b246\";}i:12;a:2:{s:7:\"ignoreC\";s:32:\"5c7965cc9d6fad5fe5ceab7bbd277ac2\";s:7:\"ignoreP\";s:32:\"5c7965cc9d6fad5fe5ceab7bbd277ac2\";}i:13;a:2:{s:7:\"ignoreC\";s:32:\"38160fdf8046624d592a9680f0e8b276\";s:7:\"ignoreP\";s:32:\"38160fdf8046624d592a9680f0e8b276\";}i:14;a:2:{s:7:\"ignoreC\";s:32:\"9f27db5a30d6d11f88937131f46e36c7\";s:7:\"ignoreP\";s:32:\"9f27db5a30d6d11f88937131f46e36c7\";}i:15;a:2:{s:7:\"ignoreC\";s:32:\"f276135096d6b09b4f71bcdabae9a86a\";s:7:\"ignoreP\";s:32:\"f276135096d6b09b4f71bcdabae9a86a\";}i:16;a:2:{s:7:\"ignoreC\";s:32:\"f4da24709e62ff4b6abc9de0df0ca2b1\";s:7:\"ignoreP\";s:32:\"f4da24709e62ff4b6abc9de0df0ca2b1\";}i:17;a:2:{s:7:\"ignoreC\";s:32:\"22d80b7b0420d5c517c5c68917862950\";s:7:\"ignoreP\";s:32:\"22d80b7b0420d5c517c5c68917862950\";}i:18;a:2:{s:7:\"ignoreC\";s:32:\"4d8a1871a8708913a5d0f1a6bff2afa5\";s:7:\"ignoreP\";s:32:\"4d8a1871a8708913a5d0f1a6bff2afa5\";}i:19;a:2:{s:7:\"ignoreC\";s:32:\"4adef41b704d131dfde70e970c9232f5\";s:7:\"ignoreP\";s:32:\"4adef41b704d131dfde70e970c9232f5\";}i:20;a:2:{s:7:\"ignoreC\";s:32:\"216033e42663ecafe3cac07259e0f7b3\";s:7:\"ignoreP\";s:32:\"216033e42663ecafe3cac07259e0f7b3\";}i:21;a:2:{s:7:\"ignoreC\";s:32:\"de63d417f39e76b257f783ca2889e6f8\";s:7:\"ignoreP\";s:32:\"de63d417f39e76b257f783ca2889e6f8\";}i:22;a:2:{s:7:\"ignoreC\";s:32:\"39959b7a52f127517eee7c896f9e85be\";s:7:\"ignoreP\";s:32:\"39959b7a52f127517eee7c896f9e85be\";}i:23;a:2:{s:7:\"ignoreC\";s:32:\"4a33bf3b1a3a394d53cfd9b9f74b8f66\";s:7:\"ignoreP\";s:32:\"4a33bf3b1a3a394d53cfd9b9f74b8f66\";}i:24;a:2:{s:7:\"ignoreC\";s:32:\"4fcbfdc6b8c13ab90c4eae45adeb563f\";s:7:\"ignoreP\";s:32:\"4fcbfdc6b8c13ab90c4eae45adeb563f\";}i:25;a:2:{s:7:\"ignoreC\";s:32:\"62d6847f1633b5abe96eb178b31580bd\";s:7:\"ignoreP\";s:32:\"62d6847f1633b5abe96eb178b31580bd\";}i:26;a:2:{s:7:\"ignoreC\";s:32:\"1ee59edd1ff457ccd691efdf17a57f54\";s:7:\"ignoreP\";s:32:\"1ee59edd1ff457ccd691efdf17a57f54\";}i:27;a:2:{s:7:\"ignoreC\";s:32:\"50f2f1c70b35f4bc996af216c551f7c5\";s:7:\"ignoreP\";s:32:\"50f2f1c70b35f4bc996af216c551f7c5\";}i:28;a:2:{s:7:\"ignoreC\";s:32:\"9d2d4d3df762838e5524f401273e01eb\";s:7:\"ignoreP\";s:32:\"9d2d4d3df762838e5524f401273e01eb\";}i:29;a:2:{s:7:\"ignoreC\";s:32:\"f4fecd94886d34db6bc04f78133ea4b7\";s:7:\"ignoreP\";s:32:\"f4fecd94886d34db6bc04f78133ea4b7\";}i:30;a:2:{s:7:\"ignoreC\";s:32:\"123b8ab0af354f864de9241d118d61a7\";s:7:\"ignoreP\";s:32:\"123b8ab0af354f864de9241d118d61a7\";}i:31;a:2:{s:7:\"ignoreC\";s:32:\"23afbdb1b9308cf0d2afe07680f756fd\";s:7:\"ignoreP\";s:32:\"23afbdb1b9308cf0d2afe07680f756fd\";}i:32;a:2:{s:7:\"ignoreC\";s:32:\"215a341f74f2b6c6239bdcda339437a8\";s:7:\"ignoreP\";s:32:\"215a341f74f2b6c6239bdcda339437a8\";}i:33;a:2:{s:7:\"ignoreC\";s:32:\"dc4ca158a94b496294de326ef320def9\";s:7:\"ignoreP\";s:32:\"dc4ca158a94b496294de326ef320def9\";}}','yes'),('loginSec_disableOEmbedAuthor','0','yes'),('ajaxWatcherDisabled_front','0','yes'),('ajaxWatcherDisabled_admin','0','yes'),('scansEnabled_coreUnknown','1','yes'),('alertOn_firstNonAdminLoginOnly','0','yes'),('scansEnabled_suspectedFiles','1','yes'),('wf621HadFalconEnabled','1','yes'),('alertOn_wordfenceDeactivated','1','yes'),('wafAlertInterval','600','yes'),('wafAlertThreshold','100','yes'),('allowed404s6116Migration','1','yes'),('lowResourceScansEnabled','0','yes'),('lowResourceScanWaitStep','','yes'),('alertOn_firstAdminLoginOnly','0','yes'),('disableWAFIPBlocking','0','yes'),('cbl_cookieVal','5811bf89256e5','yes'),('scan_maxIssues','1000','yes'),('lastBruteForceDataSendTime','1480343041.205576','yes'),('scan_maxDuration','','yes'),('betaThreatDefenseFeed','','yes');
/*!40000 ALTER TABLE `wp_wfConfig` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfCrawlers`
--

DROP TABLE IF EXISTS `wp_wfCrawlers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfCrawlers` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `patternSig` binary(16) NOT NULL,
  `status` char(8) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  `PTR` varchar(255) DEFAULT '',
  PRIMARY KEY (`IP`,`patternSig`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfCrawlers`
--

LOCK TABLES `wp_wfCrawlers` WRITE;
/*!40000 ALTER TABLE `wp_wfCrawlers` DISABLE KEYS */;
INSERT INTO `wp_wfCrawlers` VALUES ('\0\0\0\0\0\0\0\0\0\0BB','>b0oQ1','verified',1479886062,'crawl-66-249-66-247.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BB','>b0oQ1','verified',1479886242,'crawl-66-249-66-239.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0z','>b0oQ1','badPTR',1479827467,'mka.co.jp'),('\0\0\0\0\0\0\0\0\0\0z','i| OoD!','verified',1479827467,''),('\0\0\0\0\0\0\0\0\0\0BB','>b0oQ1','verified',1479879352,'crawl-66-249-66-243.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@t','>b0oQ1','verified',1479747464,'crawl-66-249-64-116.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@p','>b0oQ1','verified',1479752186,'crawl-66-249-64-112.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0B@x','>b0oQ1','verified',1479771294,'crawl-66-249-64-120.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BOp','>b0oQ1','verified',1480247729,'crawl-66-249-79-112.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BOt','>b0oQ1','verified',1480326268,'crawl-66-249-79-116.googlebot.com'),('\0\0\0\0\0\0\0\0\0\0BOx','>b0oQ1','verified',1480350092,'crawl-66-249-79-120.googlebot.com');
/*!40000 ALTER TABLE `wp_wfCrawlers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfFileMods`
--

DROP TABLE IF EXISTS `wp_wfFileMods`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfFileMods` (
  `filenameMD5` binary(16) NOT NULL,
  `filename` varchar(1000) NOT NULL,
  `knownFile` tinyint(3) unsigned NOT NULL,
  `oldMD5` binary(16) NOT NULL,
  `newMD5` binary(16) NOT NULL,
  PRIMARY KEY (`filenameMD5`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfFileMods`
--

LOCK TABLES `wp_wfFileMods` WRITE;
/*!40000 ALTER TABLE `wp_wfFileMods` DISABLE KEYS */;
INSERT INTO `wp_wfFileMods` VALUES ('\0+OW+','index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%0;sDm\\:['),('[/9}`:wP','license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e1x'),('\\v.^Df{','readme.a9f262ab37327fb573bef73facba8cd7.html',0,'Mf38+5','Mf38+5'),('Kgo#0','wp-activate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zx΁o\n'),('-)75y8cWv','wp-admin/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͆>ѐ6'),('XH奥(:Z','wp-admin/admin-ajax.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TFXIl'),('!1b݅9*\\','wp-admin/admin-footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Ԇg]Qkv'),('KUg0MU/ʇ','wp-admin/admin-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F$s:9m%aF'),('@mOW','wp-admin/admin-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`1X\Z'),(']@\n>ĺYn','wp-admin/admin-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>[s+,h'),(',H(b_FO','wp-admin/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nZ74=\"R4!'),('	Xt\\4vNI5j','wp-admin/async-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ƃDB|<SH'),('\"6\r+K{\Z!a','wp-admin/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QC($2('),('kM̙Ysp','wp-admin/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ÊW0[nʕ'),('*O-Lτ\r[u','wp-admin/css/about-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mz\'<a'),('Unɓb4lZ,I','wp-admin/css/about-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gp6l	'),('A7\'C#wSs','wp-admin/css/about.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xDWh2'),('J!2\0','wp-admin/css/about.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \\H\r{c/\0'),('mn9F6','wp-admin/css/admin-menu-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tO=%9oa?#'),('T]\\g4źuP;','wp-admin/css/admin-menu-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lQ̀Ywx޲'),('\"Z0\0ؿeԦp','wp-admin/css/admin-menu.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zǒ0'),('E58yWsO','wp-admin/css/admin-menu.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aʭ0x6;'),('Pa`Xu','wp-admin/css/color-picker-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<JpH(D'),('rW3᥾V','wp-admin/css/color-picker-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%(Տ*5Oo'),('F?C;$H\r\r','wp-admin/css/color-picker.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ptd\Z`j\n-V=b'),('ܡ9u_\\\n9\'','wp-admin/css/color-picker.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vբ\Z]U#n'),('J|6}P,\rٛ','wp-admin/css/colors/_admin.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3}K`f#İ4=r'),('ue,\"\n	hg.','wp-admin/css/colors/_mixins.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\"mz2JǕ<P'),('=CѠ*TX4','wp-admin/css/colors/_variables.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':	k\Z	rLZ'),('58d`S61K>ۮv','wp-admin/css/colors/blue/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q0Iл()'),('D8hFޛBViR','wp-admin/css/colors/blue/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TC94Āq;P'),('FZYC83E','wp-admin/css/colors/blue/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8{x~v~\0a'),('tm6ۗq.=j','wp-admin/css/colors/blue/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M>/UF'),('L>tN','wp-admin/css/colors/blue/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Iהg,)ZYM'),('juGCtO','wp-admin/css/colors/coffee/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zjo{$'),('q?%rp07q','wp-admin/css/colors/coffee/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f:3Rv\'$'),('ϴ 3P`#8^Z','wp-admin/css/colors/coffee/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2+ 3e|t3~'),('eCDi!','wp-admin/css/colors/coffee/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uC('),('xIH.9YBO','wp-admin/css/colors/coffee/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9~8 z#C0^%a'),('jmEAXuw>܆','wp-admin/css/colors/ectoplasm/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',{~Н/!U'),('Dչ$Oa','wp-admin/css/colors/ectoplasm/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BQ,f\r'),('H\0ۙhC','wp-admin/css/colors/ectoplasm/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J:8Hb'),('[#ܧ\Z>]<','wp-admin/css/colors/ectoplasm/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZ\rʈ׍Y1\\+'),('MTq&[?>칊\n','wp-admin/css/colors/ectoplasm/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q9+\"+'),('q%ű m+','wp-admin/css/colors/light/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SQ*֥8%lE'),('-f4]#\"ul','wp-admin/css/colors/light/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"h>\'Љ^'),('v{#lb\0}B','wp-admin/css/colors/light/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z%Md;u0'),('9(FRj2n6]','wp-admin/css/colors/light/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y) w2'),('KS+e׎A@','wp-admin/css/colors/light/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HG#<^o'),('L?@.~O','wp-admin/css/colors/midnight/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7UZx6X\r'),('ᗏ3-4','wp-admin/css/colors/midnight/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kfTgQ'),(';bfȖ0x','wp-admin/css/colors/midnight/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VdSfL`~'),('_\rJL#@B','wp-admin/css/colors/midnight/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W	ߥ_j'),('w=ŢO&F','wp-admin/css/colors/midnight/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&܍|DW!E4'),('<(*A]O','wp-admin/css/colors/ocean/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`{l)U5W]'),('{^WC','wp-admin/css/colors/ocean/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NEƝnlr'),('Ê5ff;,G!\'\'-','wp-admin/css/colors/ocean/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M\n\Z=r'),('*Tu\r~m','wp-admin/css/colors/ocean/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fQ+}0|z'),('-Ǹ%w=','wp-admin/css/colors/ocean/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z|[l|ٱf%h'),('j׻q.*;2','wp-admin/css/colors/sunrise/colors-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ɳ	t\0\\'),('2jL,W\rW$','wp-admin/css/colors/sunrise/colors-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rǖ}8Xg/'),('y85æb','wp-admin/css/colors/sunrise/colors.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_7jA56y'),('-+emu\"x','wp-admin/css/colors/sunrise/colors.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|6j9U\"7'),('SCRCl','wp-admin/css/colors/sunrise/colors.scss',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Zz	h='),('W2DG7V','wp-admin/css/common-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*Z+d7'),('XHov','wp-admin/css/common-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','My:9+'),('p96èR','wp-admin/css/common.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6MWzd'),('\rvN[B&SL','wp-admin/css/common.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*u-\ZC8'),('Vk9۴sֿ','wp-admin/css/customize-controls-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z߆qwI7'),('pj֛`w','wp-admin/css/customize-controls-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӒʠrK%g'),('?\n5H?','wp-admin/css/customize-controls.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rMp@\"$'),('.նZg{=','wp-admin/css/customize-controls.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q5NRvNxh[]'),('Oy k	b','wp-admin/css/customize-nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NcM\0ҿaJ'),('HAf,$F-','wp-admin/css/customize-nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=!rSii=!J'),('AlA~i^uØ','wp-admin/css/customize-nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OG5/\n\ry'),('\0]pޑ	\rG','wp-admin/css/customize-nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TVolfzt.\''),('NHV}4G','wp-admin/css/customize-widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1wg['),('4T(\\9\'3)','wp-admin/css/customize-widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G sF\rЖ6Qƌ'),('6$[O','wp-admin/css/customize-widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ҩ^'),('b|e~','wp-admin/css/customize-widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\"@	'),('5?y<2','wp-admin/css/dashboard-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']@V'),('Ms;\',-E','wp-admin/css/dashboard-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KCb\n\Z)T6'),('KqM{','wp-admin/css/dashboard.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nJ,<RE'),('+.eF','wp-admin/css/dashboard.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0=Q\"'),('8@)6yg[ysQR','wp-admin/css/deprecated-media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I+ZOtEv'),('pt_ Y7LKt','wp-admin/css/deprecated-media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[+q5\\ʖV'),('X\"-{$48sx','wp-admin/css/deprecated-media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"W*ׁqY4^'),('4a[I}Hm)','wp-admin/css/deprecated-media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̀0뚀o/|'),(']\"}[YR','wp-admin/css/edit-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[K-[|'),('BH*mzN83','wp-admin/css/edit-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x`uD	hH\\pYj'),('\r::HH:d','wp-admin/css/edit.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U#iR\"j>pc'),(',o!zj\"','wp-admin/css/edit.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2c>TYr\n*'),('6;I(Hm%f','wp-admin/css/farbtastic-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@!!Ek'),('OXg]<f@','wp-admin/css/farbtastic-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZL	czG0~l0W'),('«-j=uN\\q\'','wp-admin/css/farbtastic.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)}{Ch2U'),('KnҋD&sRWU(','wp-admin/css/farbtastic.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0i)3\\۸/;'),('OlqCcێ','wp-admin/css/forms-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Br4/ʝ'),('{]\\ֵ	d','wp-admin/css/forms-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?;|v\"rz'),('(%#9yn','wp-admin/css/forms.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̮n7RjjK'),('łjDߋ.˖D','wp-admin/css/forms.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vʜxud{'),('kM?uX','wp-admin/css/ie-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wE}=D:iD=4'),('vs%zF','wp-admin/css/ie-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-vWM31\ZT'),('E&VN\"N','wp-admin/css/ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L&p4/\ZO'),('ѧ_4a!F','wp-admin/css/ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZIQ 9\ZΛ,'),('w9=_\"h%v','wp-admin/css/install-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eJL[p'),('i-X8V[~E','wp-admin/css/install-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{I3Y\0l}@'),('<9uj!$','wp-admin/css/install.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o]hod^Iާ'),('ʆnD㮖(','wp-admin/css/install.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QPq짟+bjQ'),('\'-p-f','wp-admin/css/l10n-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iR{峪,D_J'),('vâ,\\+Q֧','wp-admin/css/l10n-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9^y2=F'),('2Die','wp-admin/css/l10n.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĸP)|qr'),('H4.\\:#','wp-admin/css/l10n.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uֵ} ف0m2n'),('y%Ǻ~ne\"V','wp-admin/css/list-tables-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uDQf0LDE\Z'),('F%C0,','wp-admin/css/list-tables-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RNq6U'),('|jx7(Q}0\'','wp-admin/css/list-tables.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yst?'),('kLN\0x6@','wp-admin/css/list-tables.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' q;OD~P'),('A{& V>Νs','wp-admin/css/login-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CT\"RJ~- '),('h@Z%RF;ti\\m','wp-admin/css/login-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c,?\'|F'),('|jX|fb','wp-admin/css/login.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0SkG{'),('`&锥~K3/d','wp-admin/css/login.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	s(8T'),('r\nb#','wp-admin/css/media-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_~t..Y &Q'),('zݿ&X❙6s','wp-admin/css/media-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<{K@&E'),('TDFK1','wp-admin/css/media.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mb]x{`'),('%Pb.8Gdt','wp-admin/css/media.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u7jku'),('\Zy8R#Oy','wp-admin/css/nav-menus-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ReU'),('D 2K|&','wp-admin/css/nav-menus-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','69^sm9'),('qhnJj','wp-admin/css/nav-menus.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӳtj5V`'),('ZWtpNh','wp-admin/css/nav-menus.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q=u6F$'),('.B|xӳE','wp-admin/css/press-this-editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FMHv7\ryd'),('&XB`]\"?װ\Z','wp-admin/css/press-this-editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=yͣ8|'),('\"jǧ`1','wp-admin/css/press-this-editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AF7!mKMxf'),('|1QAE`1','wp-admin/css/press-this-editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',4L7b%2Yj_'),('HMz@A','wp-admin/css/press-this-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dZC݆ݸ'),(' (T5!hu','wp-admin/css/press-this-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hX{F'),('F|\nMN,8ݪ\'','wp-admin/css/press-this.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%?qe\rl'),('.Z{=UuߩAJ*','wp-admin/css/press-this.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u\Z~vI`:Zi9'),('PhrV','wp-admin/css/revisions-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','һu/ًB2E'),('@tR>GHhס','wp-admin/css/revisions-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǝMqO'),(' a\"KwTbc1S','wp-admin/css/revisions.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#zBa{6'),('\nGƙn\Z@1+U]','wp-admin/css/revisions.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0Nwk{P'),('0rH\"YK]T','wp-admin/css/site-icon-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' bɹVbPP9'),('QWsA7d\n','wp-admin/css/site-icon-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rb\0{q\n'),('\'=!ZaajUQ','wp-admin/css/site-icon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|U-ͥ<N '),('n&n!崬','wp-admin/css/site-icon.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f3bmɇGdHq'),('g~w\Zhh','wp-admin/css/themes-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';h=LMJ3'),('5At߂m0iz','wp-admin/css/themes-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ܪBD҉ӱ]\00'),('Rш޿0','wp-admin/css/themes.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Bô(zs'),('fSuBͥ?^yO','wp-admin/css/themes.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pEDl4`Q'),('3vU\Z3P^O ','wp-admin/css/widgets-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\"\"2+}VQ'),('sEΞqpB','wp-admin/css/widgets-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V8gB\0Ig'),('!HUN&\"z','wp-admin/css/widgets.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S^sH>yU'),('E}~M-]a','wp-admin/css/widgets.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')k'),('֗]NRS{qv?','wp-admin/css/wp-admin-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tfo,is'),('$(g(P/','wp-admin/css/wp-admin-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݚ*7\"GŪ'),('d4j2UV$P','wp-admin/css/wp-admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','佐5\0!*['),('j0wE}®R','wp-admin/css/wp-admin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v&o0l\Z'),('?0|5uơ','wp-admin/custom-background.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6F髎Ewm\Z`'),('uqg\Z\08hԭ\0','wp-admin/custom-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"+ҝap4'),(';?2S\0p','wp-admin/customize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ч<Y<Cvr'),('p?E^@\'PE','wp-admin/edit-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N	xe!{7'),('\rb\\ɍ\Z','wp-admin/edit-form-advanced.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D9C:ro`3*s'),('G7\ZI&:x','wp-admin/edit-form-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pL	?4R	Bb'),('\nb-V:|m','wp-admin/edit-link-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|A]t_4['),('%8^V<t','wp-admin/edit-tag-form.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x?N/?A'),('h)UG@xv	','wp-admin/edit-tags.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C|E*iV5'),('YLah(','wp-admin/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=*G/s'),('1|}dQ','wp-admin/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' /0c򅤻'),('O&r蓏 ','wp-admin/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7|4V$\0~'),('W\"Sk:','wp-admin/images/align-center-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-r5*J7If'),('&*dĆָ	H5','wp-admin/images/align-center.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	\Zݶ4ydY1e'),('V9KgoX7','wp-admin/images/align-left-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i8O^c'),('mMtWB','wp-admin/images/align-left.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\y0dZo.h'),('].ooȦM-n	','wp-admin/images/align-none-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XC)[-4'),('MW	:ي','wp-admin/images/align-none.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eqd2u\r'),('vG.gA#r','wp-admin/images/align-right-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hl>r]lWx'),('tnRؔ%^','wp-admin/images/align-right.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BOe#l@:P+\"v'),('[QH\"pS1Ȫc','wp-admin/images/arrows-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Q}ydb#6'),('E#lL_&ܪ','wp-admin/images/arrows.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v$>>Y'),('DS3.įy};','wp-admin/images/browser-rtl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\"ӠA\Z%̝'),('H06','wp-admin/images/browser.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\b$F'),('G9q=ʥ[3?a','wp-admin/images/bubble_bg-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R=[;c'),('QuoPX\0Sڞ','wp-admin/images/bubble_bg.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=,(\Z2cV 8'),('Lt593u^)','wp-admin/images/comment-grey-bubble-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TYŝ2s,\rm'),('ebWA0d','wp-admin/images/comment-grey-bubble.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y*\'tF'),('I\\jxg','wp-admin/images/date-button-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')R,$k)6Cc'),('a\'@T瑓','wp-admin/images/date-button.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.IVď'),('j%Mɍp)Z','wp-admin/images/generic.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'[#98!'),('\Z{g?3gڢ\Z','wp-admin/images/icons32-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*g'),('&N,6P','wp-admin/images/icons32-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*04G4F	&Zi}\"'),('L Ufu<','wp-admin/images/icons32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',P*{>vUf'),('1WV(26','wp-admin/images/icons32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','۬[m9J4\Z'),('L8\\ݼ+','wp-admin/images/imgedit-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\'6Ut'),('{?\r\n\'','wp-admin/images/imgedit-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\\2}Gi;O'),('4ge>ߝ','wp-admin/images/list-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hջIS2ig'),('Z\nuoK T;e','wp-admin/images/list.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>*ӳS'),(')M^ûoz','wp-admin/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-[tPd'),('\0%3[$x\0.(','wp-admin/images/marker.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3*O2/3I2'),('@;5XVOZ','wp-admin/images/mask.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g~\"J䩎'),('@sZ^qv','wp-admin/images/media-button-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#WI\\?'),('1EfQv#)\n0EkQ','wp-admin/images/media-button-image.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~WÎ@brճ'),('a\\c,I\"5T#̋','wp-admin/images/media-button-music.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']2\\Z/ޕ'),('NQ\"*hzrw|\Z','wp-admin/images/media-button-other.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƴk|,O\"'),(')z]!?a','wp-admin/images/media-button-video.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rx4Q'),('a)TMWOoQ|','wp-admin/images/media-button.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6@pz^ye'),('\"N߬jj)\0N','wp-admin/images/menu-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jG{>^;$'),('* aF4uvU','wp-admin/images/menu-vs-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JZY<iYb'),('t]ٟuuj','wp-admin/images/menu-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qL,_;1/E'),('@XD\n\nRNt','wp-admin/images/menu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r9#dY`	'),('F 8+)rP','wp-admin/images/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kd$ܟV7'),('+DFܿTZ[H7','wp-admin/images/post-formats-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SlH\\'),('\0וoxi3%\r+]kg','wp-admin/images/post-formats.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K\0%3'),('n]j7<3ISsQ','wp-admin/images/post-formats32-vs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t.E5GN\Zv'),('œϔ=#6','wp-admin/images/post-formats32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WY~O{+_LkE;'),('?{o_\'n','wp-admin/images/resize-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e?&h.\n'),('3!9=6ݡ','wp-admin/images/resize-rtl-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɞ@T0:}'),('I{?r]7','wp-admin/images/resize-rtl.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ےcZY6'),('~?JIb*׺eC','wp-admin/images/resize.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?D$\rXva'),('\nfY4&L','wp-admin/images/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȔB`.}\'7:'),('X:8+˓2>V]8','wp-admin/images/sort-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nQ&] 0-'),('[65+	n9','wp-admin/images/sort.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ˍlHj]'),('J&_#3Sq','wp-admin/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q9)hdxR]l'),('fi`=@To','wp-admin/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c~\'dvvHq'),('P1$\\*C','wp-admin/images/stars-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A#SMe.^'),('Fj!Y{.J=,','wp-admin/images/stars.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[><k{('),('VrmKEpj6','wp-admin/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0'),('Jf3?_rC','wp-admin/images/w-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nJvۢ~y\\'),('+gq6^\0','wp-admin/images/wheel.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E0 q0m\ZY%VX'),('%\\MA','wp-admin/images/wordpress-logo-white.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qPC-SPD'),('tZQYz0跫','wp-admin/images/wordpress-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ưyo88S`'),('c\"ml Ǟ>o','wp-admin/images/wordpress-logo.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N%dgp'),('ںuM[\r','wp-admin/images/wpspin_light-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}3Y(Im'),('\"w%_K\\u','wp-admin/images/wpspin_light.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nmh;\Z@'),('<la,bX,','wp-admin/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/'),('mz4LK','wp-admin/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H'),('M&3\r3CMaQ{','wp-admin/images/yes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+7܉\rqZQk'),('TV\\','wp-admin/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.<S\Z\'Q'),('ĳJ\n`|5,HT','wp-admin/includes/admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rm|>{r'),('D)bak{','wp-admin/includes/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VbZ^%5ޅ'),('Ҫ*H\n;t','wp-admin/includes/ajax-actions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':&;\"'),('ΝH**.ځS','wp-admin/includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^Y\r\\.'),('\"wh','wp-admin/includes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ўW&L6'),('nкvnj=ͮ','wp-admin/includes/class-bulk-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_qp{[W$&6Q'),(' \'_U;0/<','wp-admin/includes/class-bulk-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ALc.G@m\Z'),('W7{(;:P?','wp-admin/includes/class-bulk-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*oc|\n=?W]YG'),('jUUX\Z/J/','wp-admin/includes/class-core-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2##+KTڞ'),('M\0c_d','wp-admin/includes/class-file-upload-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9lqj|w'),(':8Iaølm','wp-admin/includes/class-ftp-pure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6-KwypV-ҧ'),('afh=FT:6','wp-admin/includes/class-ftp-sockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' s̚;y*'),('rp.u3zx','wp-admin/includes/class-ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!|*d'),(':X@\0{*֯','wp-admin/includes/class-language-pack-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/$ot3'),('g~)~sʞI','wp-admin/includes/class-language-pack-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(<HǼ^'),('\"ơ7vs+','wp-admin/includes/class-pclzip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YИυWYp'),('W&ִ )+ڱ','wp-admin/includes/class-plugin-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?OuUuF\\f[uS'),('h/͔jC\0n','wp-admin/includes/class-plugin-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\'Me\'Q'),('v)F~q?b','wp-admin/includes/class-plugin-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','72D}kPT8Cs'),('sIqF','wp-admin/includes/class-theme-installer-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IdaQvS'),('H`\\ rYC','wp-admin/includes/class-theme-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|p^`L\\'),('3aDwPq','wp-admin/includes/class-theme-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#߼-&'),('{y\"ҵݩ{','wp-admin/includes/class-walker-category-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J_eq_5'),('Qs|cL؜VH)','wp-admin/includes/class-walker-nav-menu-checklist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n'),('ر-_}Zh\n\Z','wp-admin/includes/class-walker-nav-menu-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^hS	^[h'),('!yF]','wp-admin/includes/class-wp-ajax-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E2wXz'),('Z\ZaYH\0 5~ ','wp-admin/includes/class-wp-automatic-updater.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e^TQ.\r'),('Ye.0s','wp-admin/includes/class-wp-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A_j1..u{Y^'),('%f\\+,\0\\Y','wp-admin/includes/class-wp-filesystem-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\n?@m='),('hFM<@`%q-','wp-admin/includes/class-wp-filesystem-direct.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tx(>\0'),('6̠,_qu','wp-admin/includes/class-wp-filesystem-ftpext.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4~A\'s.ߧ'),('PQE|E}7+','wp-admin/includes/class-wp-filesystem-ftpsockets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/FH\0!k'),('j(g~jU#','wp-admin/includes/class-wp-filesystem-ssh2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','``s D\Z'),('v]z3tB','wp-admin/includes/class-wp-importer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^)=A@'),('vA\nGr3C9`','wp-admin/includes/class-wp-internal-pointers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','INt#S#A'),('_(CM69','wp-admin/includes/class-wp-links-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rZZIL:'),('O	S#Yiv','wp-admin/includes/class-wp-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȅƂu+ݰD'),('Vb(ktW\"6(;ƴ','wp-admin/includes/class-wp-media-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.(9.w_ci'),('spe','wp-admin/includes/class-wp-ms-sites-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[_öTWL$'),('wV!','wp-admin/includes/class-wp-ms-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']<QK6ڑ'),('i)33ܥs*','wp-admin/includes/class-wp-ms-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 )'),('e.PȴNBSx[&','wp-admin/includes/class-wp-plugin-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݌G-uaC\noN7'),('[:q','wp-admin/includes/class-wp-plugins-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')7*POʗ'),('c4L]˞Mc','wp-admin/includes/class-wp-post-comments-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\4ZeN]%D'),('Gȩ6\0Y','wp-admin/includes/class-wp-posts-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yk1@\"G'),('<p\Zo@Sq','wp-admin/includes/class-wp-press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i{n@4Z\r'),('TMl','wp-admin/includes/class-wp-screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yl$k9y$1,'),('\'Mw񑍷\rKj','wp-admin/includes/class-wp-site-icon.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\Z\";t0'),('L#/۰*3\r','wp-admin/includes/class-wp-terms-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r%ċ?;\"2'),('\"ڕK[@G9','wp-admin/includes/class-wp-theme-install-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x+PdUu@Uh'),('\"IFn@a}9','wp-admin/includes/class-wp-themes-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mw\rčuei'),('=@\\JpQm\\6','wp-admin/includes/class-wp-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'6\rOV^W'),('zJXw{!\rF','wp-admin/includes/class-wp-upgrader-skins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','743L#('),('XGzX','wp-admin/includes/class-wp-upgrader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o`(CB6fC~J'),('x8[!>X','wp-admin/includes/class-wp-users-list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iUXb0'),('|&;rLs5','wp-admin/includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ЗO>\rX'),('3koW5	k[mq','wp-admin/includes/continents-cities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dq.OB6\nf'),('<	f%nO','wp-admin/includes/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"_Mj]Q$o'),('\\т?$̈́8','wp-admin/includes/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y;G_r*\r'),('?E_)xڅ$','wp-admin/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0r>U\"}X'),('x[e>M','wp-admin/includes/edit-tag-messages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*yd|'),('>AB7Sz!e','wp-admin/includes/export.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','of@dGw50LS'),('QT*fP.','wp-admin/includes/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ļM7̕\''),('7E#wŧj','wp-admin/includes/image-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q\0Ckh4vmj'),('\0|9ue@','wp-admin/includes/image.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a=_h/'),('Ah)I\Z]GrE','wp-admin/includes/import.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']([Jq'),('cwk(43','wp-admin/includes/list-table.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aH\"&2o8-'),('R=*dn','wp-admin/includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Єeʡh.R'),('\nqoqZVyX9','wp-admin/includes/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l2qlm+?Lv'),('HýiZU,HL','wp-admin/includes/meta-boxes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h^7:8\'g`g'),('1eUMV^','wp-admin/includes/misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n(+lrq;j'),('j<MDd4m','wp-admin/includes/ms-admin-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q79l;'),('7*\"{\nK<','wp-admin/includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' omߚoµM'),('f霰f؟|hUL','wp-admin/includes/ms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KlQOѰ'),('(љ\0H<_','wp-admin/includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i+A~){#'),('V׀\'hĈ+:','wp-admin/includes/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Im΋LPܪ[l'),('w`M>{','wp-admin/includes/noop.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KИd԰/'),(';pR9+qpծ','wp-admin/includes/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N1;:]*Z`'),('R|Rx/bzn9\0*J','wp-admin/includes/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n|\rMې'),('q\"co>2Rh]','wp-admin/includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\ZW^zyT'),('5V\"$$_','wp-admin/includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YPkBl%'),('x^m]̲/L4vU','wp-admin/includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7FlAo'),('ǫ=m/^','wp-admin/includes/schema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\r]^^'),('(v|T— ¥','wp-admin/includes/screen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0#l;!'),('Z %/Zz9','wp-admin/includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6/1?F,Ȫ0['),('2@jj\0kӲӘ','wp-admin/includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Fvwܾ'),('~L*,<:','wp-admin/includes/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mCsl\0g'),(']W/>}<8 VF','wp-admin/includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','es{Jܔ'),('8R6DHq-{:`','wp-admin/includes/translation-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FfQ	v~o'),('Uy/*%;','wp-admin/includes/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{5Lq{hᚾ'),('].1\rPXL','wp-admin/includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_G6Zrhqދ'),('=cه','wp-admin/includes/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4D6J2bO=$z	W6K'),('Q (;ؠ|~R8b','wp-admin/includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѷ*\ry1o'),('I.$U0]\'S_','wp-admin/includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TI-1otpi><\ni$'),('Ѻ\"P5^U\Zi','wp-admin/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5~T2o7Gi'),('Bj)qDS','wp-admin/install-helper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dV`1&\Zl'),('6|;;8Q4k','wp-admin/install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wxktQf󵅸'),('z;j2WD6[V','wp-admin/js/accordion.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?=L/%NZ\\\n'),('^.jT}<I','wp-admin/js/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"kIz-VS\r;h^X'),('TÇ=w','wp-admin/js/bookmarklet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5jŕC'),('~79hg$+=\\0','wp-admin/js/bookmarklet.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ϥ+s@,Դ'),('5\rk','wp-admin/js/color-picker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':_W-ZNj'),('Hl{!D#!','wp-admin/js/color-picker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','檐,v([zc*'),('C/;)ّo','wp-admin/js/comment.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0MLE]˜U'),('Qlg-','wp-admin/js/comment.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6\rwġ'),('w:}VP','wp-admin/js/common.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=kGHVA׻'),('_f $O<o','wp-admin/js/common.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\Z|A\r '),('d1쵓-;O','wp-admin/js/custom-background.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j)Nˈ¨iv#'),('} yTZHcDJ','wp-admin/js/custom-background.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#Y>W e'),('C\nU','wp-admin/js/custom-header.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\0X`ouf'),('nvpe}','wp-admin/js/customize-controls.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ryul5'),('dA#*Źo7','wp-admin/js/customize-controls.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','? 3\r>SdM'),(':DJ$hǅ\r','wp-admin/js/customize-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zh6I'),('HGh\'xR~\n','wp-admin/js/customize-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y<qޕZJ'),(')[\"JH|jk$','wp-admin/js/customize-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\rEa\'AV'),('fMx	+9U','wp-admin/js/customize-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v>ӄWA'),('ĸ:,p1Hr','wp-admin/js/dashboard.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZÜAʢ>5'),('zpKC{\\>','wp-admin/js/dashboard.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r3j3Q'),('`%ֽj\'P','wp-admin/js/edit-comments.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','פ7h'),('F\'B/4{J{w','wp-admin/js/edit-comments.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v\"[7v'),('R5?- S^H','wp-admin/js/editor-expand.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?p&$Rp1'),('IV/6s','wp-admin/js/editor-expand.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0J&;sv\Z\\y'),('8=Ia%k~','wp-admin/js/editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Uz\nSM_&S'),('⣣MOU','wp-admin/js/editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z謚已&a@(>'),(';RyhRxK\r','wp-admin/js/farbtastic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':T2Aq]4'),('/GΞӶ[ǜC','wp-admin/js/gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xϩe9em嵫'),(' I_X?','wp-admin/js/gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N{%3t9Ze&Qw'),('G_bc.,]&','wp-admin/js/image-edit.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&1Ջ8}'),('-Z:E:','wp-admin/js/image-edit.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S(m\0>>&ov'),('%nTߒ	^gXΰ','wp-admin/js/inline-edit-post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uG9p'),('1o%qA','wp-admin/js/inline-edit-post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"9#@a'),('(q4P}5Ozk','wp-admin/js/inline-edit-tax.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n`\n%CO%\Z'),('pl4[e','wp-admin/js/inline-edit-tax.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}_4\0a['),('lFc뒕L','wp-admin/js/iris.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u5`@ĦUe߰'),('i\\=Xh$','wp-admin/js/language-chooser.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	PV0tJJ'),('Z\Zxcyd\'','wp-admin/js/language-chooser.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\"8Jq	tF'),('QR\"@3vS','wp-admin/js/link.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u5ϳt{z'),('|#԰#{','wp-admin/js/link.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F0;3%-'),('nZ/1T:{&^/n','wp-admin/js/media-gallery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|f8}+&'),(':%H`!\rZ','wp-admin/js/media-gallery.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 Ғn'),('^\\XPvS\\{','wp-admin/js/media-upload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dkTTy_$m'),('el5sEúQ','wp-admin/js/media-upload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' N=u&MT0	'),('r(n՞jb\"','wp-admin/js/media.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mv-[,^XQ\\'),('מy7mE5O_','wp-admin/js/media.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':ۯZZUw}'),(' It13&','wp-admin/js/nav-menu.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZZJV'),('fyħ*!','wp-admin/js/nav-menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d#]7ո9?'),('\"\rJ\04\'i','wp-admin/js/password-strength-meter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(GWnR\00N&)'),('Ȁ~_qIS','wp-admin/js/password-strength-meter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZtJ+I'),('t6O\raȆf','wp-admin/js/plugin-install.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+cSkKњ0'),('!Y0-z1dm>','wp-admin/js/plugin-install.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FREJ\r䉶L/'),('V댏$x','wp-admin/js/post.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sB)?tz߁T\"\"'),('M?,5*K*f','wp-admin/js/post.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+N1QV4'),('P\'(?+z$','wp-admin/js/postbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h֖vѽu'),('ORrD?','wp-admin/js/postbox.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'s{	i'),('@bHfQ\"$S','wp-admin/js/press-this.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\n}x-N8,c)'),('Ր(@','wp-admin/js/press-this.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']GX	'),('\\9ѕFw','wp-admin/js/revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N$]>Mb\nm*yw'),('ke<F4','wp-admin/js/revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M4ߠH.'),('KW&\0\0K\06G','wp-admin/js/set-post-thumbnail.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+QSWm@~Q'),('TgslFʞLy','wp-admin/js/set-post-thumbnail.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8կ!1z['),('Z/{LtծF$','wp-admin/js/svg-painter.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/|ĩz'),('U<?Y,ػ(','wp-admin/js/svg-painter.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\Z[*q&'),('G|$p֠+(','wp-admin/js/tags-box.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\raRLwޑd'),('J1MF<','wp-admin/js/tags-box.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5h6'),('{tE~PA1','wp-admin/js/tags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LBfZ</s'),('fkjNUei4=%','wp-admin/js/tags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N®f6\n\"tq0'),('#\\/vXR','wp-admin/js/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fWM^;'),('G6U2\01RJ','wp-admin/js/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*9(Ĺ5N{8='),('+9[BUEe','wp-admin/js/updates.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4*N7VNHU'),('([dBQ','wp-admin/js/updates.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =4+4'),('\'>[·','wp-admin/js/user-profile.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%قRA4'),('HS!; ','wp-admin/js/user-profile.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H˟5lH̷'),('R¥Leq	&','wp-admin/js/user-suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3)()ݰ4}\n'),('X$aB^','wp-admin/js/user-suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\\\\|\r9'),('RQb7f |~ۓ(','wp-admin/js/widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\r,d9w'),('Sx4@owN','wp-admin/js/widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IG>Xcr&mh'),('P73o	\0=','wp-admin/js/word-count.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@]\\cݪ'),('Cg}|E','wp-admin/js/word-count.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_J\'䓖AE'),(')f><z0-AUi','wp-admin/js/wp-fullscreen-stub.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(2Tq\0W%'),('\"p\"-Cw','wp-admin/js/wp-fullscreen-stub.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\nL{AgJ5'),('v4|><','wp-admin/js/xfn.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t+n(k'),('頻yN<9o\Z<','wp-admin/js/xfn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\'(.J9\r^'),('|Y>	Ɔ','wp-admin/link-add.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!q!T	ʢ'),('B%v6I\"Jb4ӡT','wp-admin/link-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B4.\0SY6f'),('~rC','wp-admin/link-parse-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J#/|ھI'),(':{{79','wp-admin/link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nAsC5	+'),('6]jvWk\r3-','wp-admin/load-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CTr[ۉC\''),('W})Ӗ7e}59,','wp-admin/load-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+r~Q{'),('KOȖ93|<','wp-admin/maint/repair.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ဣ7[/'),('J{ֹZi^ùxI','wp-admin/media-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\\?LkF'),('}','wp-admin/media-upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\"ik{l4'),('ÏuL,&Ǒ\r1','wp-admin/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>uıVe?UAaZ'),('$īI^3','wp-admin/menu-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nc'),('\\D >F,','wp-admin/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','זg^hZY['),('W{g- X\'=n8','wp-admin/moderation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TBYR\"4o'),('vw@HzF','wp-admin/ms-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ͯEb6'),('&ee\n3KvZ','wp-admin/ms-delete-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mDrtizU'),('EV,%,SM=','wp-admin/ms-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/Ħý:E'),('\"(}Gr	0V(','wp-admin/ms-options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\0}:ㆯ'),('-18;T/X]','wp-admin/ms-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']b$qh'),('=b6hst','wp-admin/ms-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RK$IZ1i%'),('\\9','wp-admin/ms-upgrade-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|&\"Sm8hm'),('kULǡ$','wp-admin/ms-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H#f{#ʃ	6G'),('\rxݍ^\Z<;','wp-admin/my-sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aIrG3&'),('Clo','wp-admin/nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+&0k&^jzс'),('ol>x~I ','wp-admin/network/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=SVV'),('ZQ4\\(܇','wp-admin/network/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RNL(	$%BymM'),('+t%R?','wp-admin/network/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8,4,Xu'),('\'ڞ\0;?+VҪ','wp-admin/network/edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r^Y&;^\Z'),('uF^GE+c','wp-admin/network/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pO~+~1'),('\0C_\njD@k','wp-admin/network/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','srW'),(']PTkvt8A','wp-admin/network/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','At:5{%'),('[ixTq~Wve','wp-admin/network/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?͚GMXZ\ri='),('p$^dZ','wp-admin/network/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kOy_4)\Z'),('\"Sέ`t@','wp-admin/network/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A|MM0\0'),('=}CiHT','wp-admin/network/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i&Q\\Ӣ綨'),('\Za]]A\'h','wp-admin/network/settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˊBUQN'),('/sC4','wp-admin/network/setup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bm>n9z]њ'),('+G*#f','wp-admin/network/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' J|QD5;c'),('yG\\`MR','wp-admin/network/site-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݲNtF'),('yc0Og)ρMf','wp-admin/network/site-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\!.8\'uQ/'),('qhBc92','wp-admin/network/site-themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*j}3?@'),('q@/ꦑٞ-M','wp-admin/network/site-users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2\"?HDg'),('n@AF','wp-admin/network/sites.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ƴw\ZvDbM$'),('{N2Qu=	','wp-admin/network/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OFdmj'),('h|hEf:Ʊ2~','wp-admin/network/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&շ1Up%1=$'),('!}=`*gZ=','wp-admin/network/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m6XFؔO'),('7|oOUz\0Ef','wp-admin/network/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"?}R2{8\\?R'),('\\(wBI','wp-admin/network/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E^!u)u'),('rhvLk/','wp-admin/network/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cnG\"UEMn*/$2'),('\00#9Z4j$','wp-admin/network/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1s̶>Ѕc'),('6K1(}/AX','wp-admin/network/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9`O\ZF'),('	09-bͩW','wp-admin/network/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5}=jv_}!'),('dlPOI','wp-admin/network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!X\ZU7D'),('JTV0DoTA［@','wp-admin/options-discussion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-1`p̻6qI'),('o[n3uʹP5','wp-admin/options-general.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FAo	.fv'),('\rѪ1s1=`(y','wp-admin/options-head.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','an}hI`q\r'),('\\.1-:','wp-admin/options-media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p}Td,:,˔'),(')t\r,Jڼ','wp-admin/options-permalink.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%7rF'),('ҲE5|ѵCd闼','wp-admin/options-reading.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̈́\')7(='),('L>ٟ#{6p}Y','wp-admin/options-writing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʜdGJ]ץ\"C'),('d(%J@G','wp-admin/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','69ƽ&\'gΆ4gX%'),('acCH\r=l@ĸ','wp-admin/plugin-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QA._*k'),('xjP!cx','wp-admin/plugin-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"OH_.'),('O\\P5{R','wp-admin/plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n!4LPV@'),('kzߣboR','wp-admin/post-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dWQY0EY'),('vAdsK]','wp-admin/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#6du,`d&'),('Q`8M8','wp-admin/press-this.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"3AuOz'),('h4#3`-݈\"','wp-admin/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>zͩz&'),('\\\0>+Fb','wp-admin/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\0q`N~͠k'),('c̎$\n\'@\r','wp-admin/setup-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n(TGM\"D R'),('|f,2T	','wp-admin/term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p΢!;.0\n	\0'),('&`OQ5Q43','wp-admin/theme-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XIk?-aҗd%'),('\n\rBp̭','wp-admin/theme-install.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ly퀄\'3B*'),('^[Xi	','wp-admin/themes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r=+#J'),('7s\\]}AAwe1','wp-admin/tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z _PO\"'),('!LT3ix','wp-admin/update-core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7n8*b?'),('!o\rAv7e','wp-admin/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iYQD<A@\Z'),('^@ղ{\'_92','wp-admin/upgrade-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\r6Wd˻'),('j7r[,Z','wp-admin/upgrade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0:I%0\0'),('&t!0^gbJc,>3','wp-admin/upload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MW,mhk!'),('^9(-(Ųy 0q*','wp-admin/user/about.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0ڍKN N-'),('1s)6ӶCΗ','wp-admin/user/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p-R VEo$'),('~\r\ZK4(#','wp-admin/user/credits.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ǀ[K}Z'),('R;lzO8m<3Nie','wp-admin/user/freedoms.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˹޳Hti.'),('[ꠏ|Koیb7','wp-admin/user/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-xNb'),('y\0\"Q','wp-admin/user/menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')»gEp'),('`&X<aQVh\\','wp-admin/user/profile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0yݤ&-'),('=q\rljA+','wp-admin/user/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*zucm	Je'),('Jh|0`ZpE','wp-admin/user-edit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vCvvziPa^G0'),(' *@ADғ=puE','wp-admin/user-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U<=/{UMj'),('Pizta}a','wp-admin/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zWBP5f'),('ThzPr','wp-admin/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZME8x}J.'),('I:Bs#@','wp-blog-header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taMm?%,=tz'),('Sp>WrYE','wp-comments-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/;TDY]6޴4NY'),('~ťs\01y$L}h','wp-config-sample.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I?Ie V'),('vK;@saU1;	^','wp-config.php',0,'gIy7wZ.','gIy7wZ.'),('-^g̺@\0/','wp-content/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gD,V=\\bP'),('wi.w(M;0D','wp-content/plugins/akismet/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9|2-#'),('I*:o','wp-content/plugins/akismet/LICENSE.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4MiHjJBc'),('L\rȦ:nh\'','wp-content/plugins/akismet/_inc/akismet.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e>yZJY'),('̽ X$oB','wp-content/plugins/akismet/_inc/akismet.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','()Ě7SqQe'),('<BʱA51ӱ','wp-content/plugins/akismet/_inc/form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'4l*&i'),('\'PT]	6~','wp-content/plugins/akismet/_inc/img/logo-full-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!MpP`-6'),(')̃2kh! ','wp-content/plugins/akismet/akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=hГGt'),('jK&Y','wp-content/plugins/akismet/class.akismet-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cΙ=6^'),('f餧xMP]~B','wp-content/plugins/akismet/class.akismet-cli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ZyJŎ;M*[G'),('lg<=l','wp-content/plugins/akismet/class.akismet-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٱzPټS'),('pb~oBkZ','wp-content/plugins/akismet/class.akismet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\"\r*q(9'),('A$h՝`Qa','wp-content/plugins/akismet/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h PZݢ`Ef'),('o/d4x`','wp-content/plugins/akismet/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';Sw&k'),('>Zbo&','wp-content/plugins/akismet/views/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gŨu)'),('bE3g\'cZ (','wp-content/plugins/akismet/views/get.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MWBNT'),('Wd;C\rO','wp-content/plugins/akismet/views/notice.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kJ#5!i9Х'),(';;/JKmR0','wp-content/plugins/akismet/views/start.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q̡O`٠W8'),('sӣJ~k','wp-content/plugins/akismet/views/stats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','waVP*aĄ'),('\r` 7x','wp-content/plugins/akismet/views/strict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N$+CU'),('dF=jHc','wp-content/plugins/akismet/wrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z&M\rLBE#'),('T~xZ','wp-content/plugins/black-studio-tinymce-widget/black-studio-tinymce-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_93po\"P;l'),('P|@IY&','wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1?7'),('7Z5})\0JQ','wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?:m{w)+>'),(' Q!r\\3ݱ','wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' V^`oHh=8nU'),('Im^n[ػ!','wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\ZYļ!K'),('bn\"cdW','wp-content/plugins/black-studio-tinymce-widget/includes/class-admin-pointer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ǒ{nA'),('%%30','wp-content/plugins/black-studio-tinymce-widget/includes/class-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0&5Z3y'),(';\0>عk2+b','wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-plugins.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-T};\0'),(',Ǆ]4ʢ[','wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-wordpress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\nDuS'),('QK=L07]/','wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YTS\Z4oe/6'),('D\"Ī	ZSw','wp-content/plugins/black-studio-tinymce-widget/includes/class-text-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FSp		\riX^'),('|Um+','wp-content/plugins/black-studio-tinymce-widget/includes/class-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hse﩯'),('\n+WͭCXNr','wp-content/plugins/black-studio-tinymce-widget/includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%*{fS:h%Z'),('D/\"_\"1','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':N2_ue'),('x	kPQT,,nc','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h_\0aWݦT^'),(' *w\"sEB孕\0^','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q9f\Z*'),('pQjMLkI','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','އvʁ[\''),('e#!׺ktZ`','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BF#~D<ڠ>g'),('GipLt','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\Z<QLs>'),('?b,<=B6fE\nB','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t,ƉJkz\0<\'@'),('Z<\r#.','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q4\\ 3z1'),('JirKQ','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(=.WF>!'),('\n[EGh ','wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FJGY3<^'),('؊\r¤2','wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fqDrOytʃ'),('ݖM>_','wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')-@k%'),('\0>ÕX3ڍOAl','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ZIٜ)K^`j-'),('MJp1^d/O','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CEpr\'ծx;'),('`QQ5l,o','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˘Kׅ3'),('~,3FO7`H}','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|BEX\\('),('d.Tʴ<r','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EOuG?Ox{fY'),(',0s:،5C','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','te</ҩ}z'),('OM1\Z˱!%h','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d9D22\0'),('u3_?]/','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3)\'̒IDz㛬%'),(' KO{X','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iB8}Iʦ'),(';aA\ndXr','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ro>ʻ5N'),('w,\'׻UQ;7\n]','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W-ja%'),('-QFÔ.','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z@,dt+;'),('Z>>s','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AGmx$\\'),('8sɭ9KPe','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tl(-g,'),('k(!k9j*','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OdHdWlv\n'),('b}r&s','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~79ד[7'),('\"=\rݫž6v','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v9؉\Z	D'),(':e/(','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[qb棢\ZC_r'),('dxs6 6\'{Tn','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P7JӠck'),('?$uZI׸{','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lxRH9<'),('ib	1Ou0f~Kէ','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W	Y8F/%d'),('H#l:-U!6','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h*zmh=Pw'),('hX	G@+t>f','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PCSd垆'),('%V;)\\Ѣë','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J9kMǫ'),(';I\nS','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']diqU>'),('5Ex,/GK{','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@\0=KbP[`|'),('a#ue;+W','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sM|2kU'),('G&[hmH\n;6','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','őȳՁP<\Z'),('`s)WY<O','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=Ȍ`ǽP'),('jएSu*᫏','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*=KK6j'),('gh9&\r5A','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J%6+<>xh_'),('I>%N','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l|xEM'),('xEnp','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8;BFD'),('8\n}4^ܩﳋ','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Ut'),('x*G)/i{0>','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nK$!R护\"'),('z-ȀH:}1E','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hOgtj'),('CQ]΍H','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ٗi\Z\rR2'),('\0\n\Z?','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t:7	\\ )7dx'),('W`239[V','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?.[*Vd'),('=T{\"c_','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qfٕMv\"N`n'),('4cc{\ZУ','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݿWr4Ojp'),(')Ʊض:_','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','643MvF8#'),('T@WSo','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŹmQҏX'),('0Dvdzmj)f','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l~L\Z.m3]'),('u1~8G+p','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!&G{s3bik'),('=wP%]~4Z','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1CW8«Wd\r'),('5L^څըjSdV','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V	R\re2[KY'),('\\\Z,h[熼؋','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y4?iux'),('1<횀a','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߧ=aAyey'),('t	GUl؄W','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ihn'),('G/?FO','wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9խu'),('\0@kvX	H','wp-content/plugins/black-studio-tinymce-widget/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fwSw-gi5'),('NN8Cj','wp-content/plugins/elegant-themes-icons/assets/css/etfonts-style.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rr(o̫'),('toZX&36ʼ','wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*5@xWI'),(']\'X_$nߥ','wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ta.i͞3'),('6\rH+?v','wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yx2Ȯb'),('1/ANg^0','wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WagSCQ\0B+'),('\\<Gp\r5@1','wp-content/plugins/elegant-themes-icons/eticonfonts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n JPf.'),('ڸxSS>\n{(','wp-content/plugins/elegant-themes-icons/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/>oi3s<'),('Rz$f.oFRV','wp-content/plugins/elegant-themes-updater/elegant-themes-updater.php',0,';/rK>g',';/rK>g'),('0*W','wp-content/plugins/index.php',0,'gD,V=\\bP','gD,V=\\bP'),('%hBAA~)t','wp-content/plugins/updraftplus/admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nN=ֶBAl7'),('_IxF','wp-content/plugins/updraftplus/backup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>MEL,XrGo}'),('W>i=k+','wp-content/plugins/updraftplus/central/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rP-=\noHe'),('_)q!|cH','wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͹ec_\n5i'),('`Hpֈn\'!г','wp-content/plugins/updraftplus/central/commands.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8Q=>Å.r'),('Ṩ\n-Mu/$Al','wp-content/plugins/updraftplus/central/listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0Gɓ~I ,(5'),('gm P	Yޞ\r','wp-content/plugins/updraftplus/central/modules/core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-K}gfR'),(',\"\\$-h?y@\\','wp-content/plugins/updraftplus/central/modules/updates.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':!b4'),(']6jE8N-SX','wp-content/plugins/updraftplus/central/modules/updraftplus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NftF6t9cl'),('6ōxU','wp-content/plugins/updraftplus/central/modules/users.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\'74$H~M'),('ʆ\n>P7\"','wp-content/plugins/updraftplus/changelog.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7&j@BiS'),('h}Mv1\ZQlO','wp-content/plugins/updraftplus/class-updraftplus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4b@mLKk\"'),('NhUXJGiQ','wp-content/plugins/updraftplus/class-zip.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L+(c'),('0lx(\"ۼ','wp-content/plugins/updraftplus/clean-composer.sh',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	|E(zJ'),('?fҸtQ','wp-content/plugins/updraftplus/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','筃yc-'),('!TXc%u\nM(','wp-content/plugins/updraftplus/composer.lock',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f};gw'),('/Ff ǚe!','wp-content/plugins/updraftplus/css/admin.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y<2{&'),('q,<wLG\"E','wp-content/plugins/updraftplus/example-decrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᒴ1-vC1{J'),('˥BmNi','wp-content/plugins/updraftplus/images/automaticbackup.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+tnjK'),('ɯbd','wp-content/plugins/updraftplus/images/azure.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ֱxgY'),('\0W5)3wx','wp-content/plugins/updraftplus/images/copycom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']}EKfڊ'),('J/I','wp-content/plugins/updraftplus/images/dashicon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vlcaf'),('N-g<-w\ZEV','wp-content/plugins/updraftplus/images/dreamobjects_logo-horiz-2013.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.\ZwJ뙧@E:/'),('}@$B:^','wp-content/plugins/updraftplus/images/dropbox-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zG0>o'),('x{Α\"^a6\r','wp-content/plugins/updraftplus/images/googlecloud.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Af\0L X&'),('hf\'2ӔUw','wp-content/plugins/updraftplus/images/icons/azure.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r~I>	iX*'),('V5̮Cn','wp-content/plugins/updraftplus/images/icons/cloudfiles.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\ryzj,lg\nn'),('	tlH->W','wp-content/plugins/updraftplus/images/icons/copycom.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#pG^VoB'),('i[{','wp-content/plugins/updraftplus/images/icons/dreamobjects.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b9扷G%2^~'),('_-ݧ.\Z','wp-content/plugins/updraftplus/images/icons/dropbox.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٘0Ex31?]'),('ԿepZɟy','wp-content/plugins/updraftplus/images/icons/email.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E.cKo|s-'),('S!wnN7M)m]e','wp-content/plugins/updraftplus/images/icons/folder.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\0!T<\ZA^0'),('8 wa5','wp-content/plugins/updraftplus/images/icons/googlecloud.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VJVQYJa?'),('`0Vm=Yc','wp-content/plugins/updraftplus/images/icons/googledrive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6:\022m=v'),('e&@j\0','wp-content/plugins/updraftplus/images/icons/onedrive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\LMl흜Z]\''),('#=gA-j<k\\','wp-content/plugins/updraftplus/images/icons/openstack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DnR$	H`'),('[r M_A7O','wp-content/plugins/updraftplus/images/icons/s3.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zč?7!G'),('m +7f\">)','wp-content/plugins/updraftplus/images/icons/updraftvault.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A	RʂD,d'),('}gWcX]OY','wp-content/plugins/updraftplus/images/icons/webdav.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rd(>'),(']d5TPt\\','wp-content/plugins/updraftplus/images/onedrive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Mz8J$g˱'),('W]}$SK\"N6','wp-content/plugins/updraftplus/images/padlock-150.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\\&_{}['),('M#|(R;','wp-content/plugins/updraftplus/images/rackspacecloud-logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b7[ ]'),('g\'kJ\n','wp-content/plugins/updraftplus/images/ud-logo-150.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SҬTd6uP'),('udVN;<f|OG','wp-content/plugins/updraftplus/images/udlogo-rotating.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Z]zG2ІhG.,'),('rQ}SD5%Ar ','wp-content/plugins/updraftplus/images/udp-logo-white.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ot#,\\~g'),('P+jR','wp-content/plugins/updraftplus/images/updraft_cross.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a/=dW`[?'),('+H:RȊKM','wp-content/plugins/updraftplus/images/updraft_freev.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~I+b$\0~[A~{+'),('V>-23y','wp-content/plugins/updraftplus/images/updraft_premv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2 ]Fx\"'),('D>[a}RO','wp-content/plugins/updraftplus/images/updraft_tick.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7u{/=$\nhK'),('һ_\"sŤ\rF!','wp-content/plugins/updraftplus/images/updraftvault-150.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';\\VbXç'),('	pieD.v&p#','wp-content/plugins/updraftplus/includes/Dropbox/API.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MR[,oUP'),('9Ǽ)ц >','wp-content/plugins/updraftplus/includes/Dropbox/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U$af*on'),('\"q܂8a5','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a}Pl'),('t\\k:+sTΐ','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/Curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~]\0f'),('6۰_AŬvR~','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/WordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P(T.5	'),('Ե@{®}V','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/Encrypter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B=*9XPR;E'),('UEʓdR|.','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/StorageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wb\\9'),('y+y.8=UAYmKp','wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/WordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hTОo'),('Kmr.Dŧ\\}','wp-content/plugins/updraftplus/includes/Dropbox2/API.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JcK\\'),('i?!,j4','wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U$af*on'),('Cv4','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%]auA,'),('df\")=6b','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X%uWsJ'),('EN#CĴ.3','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P(T.5	'),('ܷJL>#','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B=*9XPR;E'),('V,յ','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wb\\9'),('\n|ˬӜcj`{','wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hTОo'),('\\X\r:l]@H7','wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']r31Vp='),('23Qۿ-4','wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\n	jwեM0'),('|iHr','wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2|va=ϧ]޼'),('eӐD\"\\','wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HLʘXs)r'),('*\rh}h(','wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(^A+ Cr'),('yk_Uk,e=','wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!+\\)3a\nc'),('`%ֆY','wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';z*N4냗Ʉw@'),('q8','wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Phx3X\"6'),('2$$K&fw ݪ','wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0]\'9w'),('Ys\\\nd','wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JY^V*JǱ^'),('\na08','wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur*vOxqf'),('yAoډ','wp-content/plugins/updraftplus/includes/Google/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VQ~l<$T'),('bl	-vr$L8','wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SG5ޏ}r+'),('M1	Zg&\'ѫ','wp-content/plugins/updraftplus/includes/Google/Cache/Null.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TpF8\'٫Ƌ'),('n/Ρ~Zx~6','wp-content/plugins/updraftplus/includes/Google/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?mHoA'),('}Ob >?2y','wp-content/plugins/updraftplus/includes/Google/Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y6x5Mq'),(' uFPjkq=k','wp-content/plugins/updraftplus/includes/Google/Config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l!W8աRM]'),('6\"ג','wp-content/plugins/updraftplus/includes/Google/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ZK/'),('}ġ\"Zѝ\'','wp-content/plugins/updraftplus/includes/Google/Http/Batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5kkL&ވ'),('ixE@VE\"','wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wOT| th$x'),('#SVպ','wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7gm)0U'),('ZfZS#T','wp-content/plugins/updraftplus/includes/Google/Http/REST.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RU\"fPJ}'),('uGP3*xOӍe','wp-content/plugins/updraftplus/includes/Google/Http/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wc,&0;d'),('AT{nN]','wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';QJ ?`?$2r 8'),('OHB{(','wp-content/plugins/updraftplus/includes/Google/IO/Curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<jf#-X'),('WԾޥ9)','wp-content/plugins/updraftplus/includes/Google/IO/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7԰-}6'),('2WEbeYYi','wp-content/plugins/updraftplus/includes/Google/IO/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\\<@ '),('8QIf','wp-content/plugins/updraftplus/includes/Google/IO/cacerts.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'>qGYٖCd1'),('0߁.8n4k_M','wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'5y;=5+ҝϰ%'),('odeZ','wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','þ?P||0r'),('XUqn\ZҸ\'2@','wp-content/plugins/updraftplus/includes/Google/Logger/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ׁ8_p@}'),('1D\Zu#O','wp-content/plugins/updraftplus/includes/Google/Logger/Null.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ig+ 3'),(':Jo%','wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׳π{\\6}'),('oM2B0!4S','wp-content/plugins/updraftplus/includes/Google/Model.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GWŹx'),('9ڊ$F.{','wp-content/plugins/updraftplus/includes/Google/Service/Audit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','36!LleD'),('{\"`[(','wp-content/plugins/updraftplus/includes/Google/Service/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\"L;s'),('B5A1EAg3k5','wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}vƈZX_'),('^tK>Txu','wp-content/plugins/updraftplus/includes/Google/Service/Directory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y$]j;{N'),('\'q{Z>','wp-content/plugins/updraftplus/includes/Google/Service/Dns.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<<j*'),('(i\'r>A3','wp-content/plugins/updraftplus/includes/Google/Service/Drive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A6o6QH'),('6@0^zcJq-','wp-content/plugins/updraftplus/includes/Google/Service/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cE-QJ7Ύ'),('Ŀ7md[t<','wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=}Κ/<y'),('8Lomf~','wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n-ӋGxѠume'),('.qBOcUF5','wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ڋ=QeeH?'),('xt{ܨ>	J','wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C/brA'),('6)xTzތ\0','wp-content/plugins/updraftplus/includes/Google/Service/Logging.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*A@rQGXy'),('*z8nZS','wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iyby4MgcΞ'),('6BC3cE6','wp-content/plugins/updraftplus/includes/Google/Service/Reports.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aBU-K'),('կpQz\Z','wp-content/plugins/updraftplus/includes/Google/Service/Resource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P!^((Ni4'),(']mˍ b','wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qVN+X_'),('fR9]V#rs','wp-content/plugins/updraftplus/includes/Google/Service/Storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ha;x.^~}'),(';A','wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%E[Ys\0ֿ'),('c\Z%','wp-content/plugins/updraftplus/includes/Google/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƣyu\rXON,'),('8!?Η`t','wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6SW'),('z!38T_މ:','wp-content/plugins/updraftplus/includes/Google/Signer/P12.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.g?Ѳ9'),('\reKg.q','wp-content/plugins/updraftplus/includes/Google/Task/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b48	BI$Z'),('Z=ӓj` ','wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qeS4'),('M[?ObU6$ޚ','wp-content/plugins/updraftplus/includes/Google/Task/Runner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{a\"Z*/Df'),('p{UʏКtecC4CDj','wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߘ	zg('),('ٯ]+Wf','wp-content/plugins/updraftplus/includes/Google/Utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʻc+#%*a'),('ŸMȻՠIך','wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qz\'N'),('ٙ[y?m\"','wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xiH=]'),('*q*6\r6z\\','wp-content/plugins/updraftplus/includes/Google/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˪OC$E9AS!'),('؆[Br̳$W','wp-content/plugins/updraftplus/includes/S3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W,X3yT<0y'),('^Psiy/a','wp-content/plugins/updraftplus/includes/S3compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	rIO5n'),('o$ܳ','wp-content/plugins/updraftplus/includes/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.叐j\ZM\nRݯ'),('5Fc?','wp-content/plugins/updraftplus/includes/class-partialfileservlet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_4/F('),('hɝru','wp-content/plugins/updraftplus/includes/class-semaphore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OOc*d~Pql5ߡg'),('C-4^#yN T','wp-content/plugins/updraftplus/includes/class-udrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{䎶M3B\Z'),('U!]ɲ^W.\\','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򘉱#q~O'),('\\!&z','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v!e(i:hZ'),('@1uM{','wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&gKdC.ĵ&'),('P`D#|H!-u ','wp-content/plugins/updraftplus/includes/ftp.class.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$YнZ'),('5(Ƴn;ӎmA%\Z','wp-content/plugins/updraftplus/includes/get-cpanel-quota-usage.pl',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w3kߚ'),('Yt\Z6A','wp-content/plugins/updraftplus/includes/google-extensions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' CCzX95J'),('ǤB\"(~g','wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_18_b81900_40x40.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?X\'G9h\\d1$U'),('Qu}WN','wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_20_666666_40x40.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']8TP\nFL'),(')˼*$aT','wp-content/plugins/updraftplus/includes/images/ui-bg_flat_10_000000_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R:7g D4'),('gCA\riNb','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_f6f6f6_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|=`\0O4A	'),('ԽG3P*K','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_fdf5ce_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѿCTrW\'dc'),('IB{θZ*_','wp-content/plugins/updraftplus/includes/images/ui-bg_glass_65_ffffff_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȩ_=n>6'),('Iqt5GmƧ','wp-content/plugins/updraftplus/includes/images/ui-bg_gloss-wave_35_f6a828_500x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UeZEKx?r L'),('&kh\0F','wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_100_eeeeee_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-*`@'),('Au2?m0','wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_75_ffe45c_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0N22&'),('Wkl','wp-content/plugins/updraftplus/includes/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"Pw?mvt-S{'),('FC˄4~.','wp-content/plugins/updraftplus/includes/images/ui-icons_228ef1_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	eo\n4#~}W'),('ݽԦDUu','wp-content/plugins/updraftplus/includes/images/ui-icons_ef8c08_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{.7+\0K'),('_ef','wp-content/plugins/updraftplus/includes/images/ui-icons_ffd27a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P7419'),('%(7s&ܻ','wp-content/plugins/updraftplus/includes/images/ui-icons_ffffff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cj6@Oΐ'),('OX\ra87vb','wp-content/plugins/updraftplus/includes/jquery-ui.custom.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2cn@'),('}ǽ','wp-content/plugins/updraftplus/includes/jquery.blockUI.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s؁49'),('4lAj,','wp-content/plugins/updraftplus/includes/labelauty/images/input-checked.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ah<jH#늭\n'),('S4`Z8\ZMi\0','wp-content/plugins/updraftplus/includes/labelauty/images/input-unchecked.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k5 /hl*'),('n1v-\0kqf','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BIM596m-:2'),('B\'Ll\nABK`?','wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ª/9T9I'),('iǝCx+Ʀ&+	','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/AES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x)0R'),('xBO;<','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bɫmGU>>	'),('\Z]ޜap2;','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Blowfish.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-`E+߼ut'),('oFY f-<\Z','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/DES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*<дH,\n5$'),(')kd^_ֹ&','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Hash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{vfbAi\''),('x堙^CR\Z','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@DWXxe[v'),('K*H4dg','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	a<'),('Uww9ξ3kz8','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RSA.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jkYнN9T`'),('3ࣩT','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mMV3uh'),('M^.-','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Rijndael.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xrxak\rG'),('͓MԘْpZ','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/TripleDES.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iڼM>('),('Qjl`#/@b@','wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Twofish.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zco/'),('AB]~!\\z/Ij','wp-content/plugins/updraftplus/includes/phpseclib/File/ANSI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','urD]8hfN038r'),('$u','wp-content/plugins/updraftplus/includes/phpseclib/File/ASN1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n%&p(V'),('\Zwn.ߦ˳e','wp-content/plugins/updraftplus/includes/phpseclib/File/X509.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K-51BTby'),('W]zgt@h|','wp-content/plugins/updraftplus/includes/phpseclib/Math/BigInteger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z`y+T'),('c(ݖƛ\nuЕ','wp-content/plugins/updraftplus/includes/phpseclib/Net/SCP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iΗC?`ђT'),('DR#Y `<O','wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-_]A0xtM'),('Ia+V','wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T)WBŘk['),('@\nA{^BZAع','wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ZmѯkR;'),('=CqelikY+/','wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\"x=ibzLF'),('DbSތ/#y','wp-content/plugins/updraftplus/includes/phpseclib/System/SSH/Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{BPǐNh]	^'),('=\'Ѩ6!}','wp-content/plugins/updraftplus/includes/phpseclib/System/SSH_Agent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';b\r5E'),('kMMcf-,҉#{b','wp-content/plugins/updraftplus/includes/phpseclib/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\Z̪[uU'),('%́/|ˡ9rX}','wp-content/plugins/updraftplus/includes/phpseclib/openssl.cnf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@#V,aq|Mg'),('\0RKo s','wp-content/plugins/updraftplus/includes/updraft-admin-ui.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=q_Kpr'),('H;c)[','wp-content/plugins/updraftplus/index.html',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݫ0XX(w}Qv'),('쾅<jv','wp-content/plugins/updraftplus/languages/updraftplus-ar.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"/\'ZPGyɟ<E5\'o'),('D͝WS','wp-content/plugins/updraftplus/languages/updraftplus-ar.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ާHMk8'),('ӹʱ4Y#c+,','wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڊ),]'),('$͔p腴3y','wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ȀD4W 8b'),('$5/ޑ*W','wp-content/plugins/updraftplus/languages/updraftplus-ca.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rG;^ɩ)'),('k2.g/\rn','wp-content/plugins/updraftplus/languages/updraftplus-ca.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RP}mI4z'),('gı\rPI[','wp-content/plugins/updraftplus/languages/updraftplus-ca_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~'),('7MB8|N','wp-content/plugins/updraftplus/languages/updraftplus-ca_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~'),('g8\\\Z:y_','wp-content/plugins/updraftplus/languages/updraftplus-cs_CZ.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ћ\'Pyaz'),('m±s0k\'z[','wp-content/plugins/updraftplus/languages/updraftplus-cs_CZ.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yny\''),('%HZՄ*','wp-content/plugins/updraftplus/languages/updraftplus-da_DK.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vU-K!Mfh:'),('E>\0:%)C<','wp-content/plugins/updraftplus/languages/updraftplus-da_DK.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a?_b4!9u'),(')\0bRVPU\'','wp-content/plugins/updraftplus/languages/updraftplus-el.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QϚ5`/#@\0)'),('*m<Dqmh(ۙ','wp-content/plugins/updraftplus/languages/updraftplus-el.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','re>XA-'),('BO\'\r2Ǚ','wp-content/plugins/updraftplus/languages/updraftplus-es_CO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ەWi4G'),('p DE','wp-content/plugins/updraftplus/languages/updraftplus-es_CO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','njh3.0gu'),('f\07\r/I!N','wp-content/plugins/updraftplus/languages/updraftplus-es_ES.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K+\Z(QȆKT'),('Lct\'Z','wp-content/plugins/updraftplus/languages/updraftplus-es_ES.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.P*^~5{=W'),('\'p?uK','wp-content/plugins/updraftplus/languages/updraftplus-es_MX.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\\Wxb'),(';yǌ','wp-content/plugins/updraftplus/languages/updraftplus-es_MX.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KE\r\ni(eٙ\''),('o2%F^ף4','wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[J0\n??*Vn'),('76{ &~lg','wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MThQ	'),('a1I 3Ƈo6','wp-content/plugins/updraftplus/languages/updraftplus-fi.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 2L\\1,#'),('PzW3|/A&Wr','wp-content/plugins/updraftplus/languages/updraftplus-fi.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R/l	]I8L'),('c4*)]+6eoY','wp-content/plugins/updraftplus/languages/updraftplus-he_IL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oՎGv_$F'),('jԏmbq݅ͥ','wp-content/plugins/updraftplus/languages/updraftplus-he_IL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ytA/:'),('\Zpif)Jܨ7','wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Ϟtҳd9'),('\\\rSj{','wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RLKսGΡI'),('Fxb\\WZT!qY','wp-content/plugins/updraftplus/languages/updraftplus-id_ID.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<bWW%j.L	'),('PLN}0윣^','wp-content/plugins/updraftplus/languages/updraftplus-id_ID.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T[\'PLi'),('(ouIO]OeHy','wp-content/plugins/updraftplus/languages/updraftplus-it_IT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|5lR7*='),('IT+x0ƇE','wp-content/plugins/updraftplus/languages/updraftplus-it_IT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Qn:'),('E؜f`^','wp-content/plugins/updraftplus/languages/updraftplus-ja.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=\'q9rnL\0f'),('H.Kp/sBn','wp-content/plugins/updraftplus/languages/updraftplus-ja.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4/;'),('+arDt2','wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@@G6ItO'),('$%ւU','wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!Im۰U0\'\r/U'),('@ø.BTyI','wp-content/plugins/updraftplus/languages/updraftplus-nb_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PxI\r\0D'),('G\nGEe\nÒJ','wp-content/plugins/updraftplus/languages/updraftplus-nb_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|K1Q$t'),('kCjS<<b%','wp-content/plugins/updraftplus/languages/updraftplus-nl_NL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`L86]fn'),('zm^','wp-content/plugins/updraftplus/languages/updraftplus-nl_NL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7>ƀ\nz&\r'),('},y&izsź','wp-content/plugins/updraftplus/languages/updraftplus-nn_NO.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~'),(']ޕD;7F~X/','wp-content/plugins/updraftplus/languages/updraftplus-nn_NO.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ُ\0	B~'),('	\Z0G;]:G@','wp-content/plugins/updraftplus/languages/updraftplus-no.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\rhI`y\Z'),('\0e_vJ/J','wp-content/plugins/updraftplus/languages/updraftplus-no.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QN|1ĺF'),('cS#EJ4Jё','wp-content/plugins/updraftplus/languages/updraftplus-pl_PL.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e	iVFMYJv.i'),('*G-PXZc','wp-content/plugins/updraftplus/languages/updraftplus-pl_PL.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KvrvE)<a'),('<r٣\"qܸ','wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U4vͲ*'),('%Rfx?\"D','wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T4;\"P '),('q %Pd','wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cs9]kó'),('f,b','wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','St.h#'),('˜cr_4}','wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WjvtPp7Y'),('S]/}rt','wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';m*DVŢ5V\Z'),('gHԅR\'/\08x','wp-content/plugins/updraftplus/languages/updraftplus-sv_SE.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NL9sId,r'),('yc^*V\nRdQ','wp-content/plugins/updraftplus/languages/updraftplus-sv_SE.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8	g.Db'),('q*J7','wp-content/plugins/updraftplus/languages/updraftplus-tl.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(j%Q2'),('-0@恎Q','wp-content/plugins/updraftplus/languages/updraftplus-tl.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T^؄'),('T(2z','wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ff0*r+KCWH0'),('6wd3ƎQ}g','wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~݈J3bcU	&'),('2=6\\','wp-content/plugins/updraftplus/languages/updraftplus-uk.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2z?bt7Rj['),('x}m\'K','wp-content/plugins/updraftplus/languages/updraftplus-uk.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{9o /o'),('Awb~_}<	','wp-content/plugins/updraftplus/languages/updraftplus-vi.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','83mmM@Y1np'),('RxfGDgV','wp-content/plugins/updraftplus/languages/updraftplus-vi.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7xA*'),('tΐw)(!RcO','wp-content/plugins/updraftplus/languages/updraftplus-zh_CN.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6qSt'),('R:!ٺ`\n','wp-content/plugins/updraftplus/languages/updraftplus-zh_CN.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' k763'),('R {pH*\0','wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.mo',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>uޔ#*4Sp'),('ʡx\0Nn0','wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.po',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ndq߳a@?'),('j(i,q0ҙ Ȟ','wp-content/plugins/updraftplus/languages/updraftplus.pot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K=1!z=8VoG'),('{gb$tI','wp-content/plugins/updraftplus/methods/azure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|h\\R*'),('.z!\\-Aaj','wp-content/plugins/updraftplus/methods/cloudfiles-new.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֯Y|mʹ;'),('ukJ]{VTԥI','wp-content/plugins/updraftplus/methods/cloudfiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>[3ܧYM'),('xqqc|!','wp-content/plugins/updraftplus/methods/dreamobjects.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' :HR&H\n'),('s2\0e)܋','wp-content/plugins/updraftplus/methods/dropbox.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']=̺YJ'),('+Tx*0r~','wp-content/plugins/updraftplus/methods/email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':QֶFW?P'),('`-}i_pB','wp-content/plugins/updraftplus/methods/ftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]iꄇE.D'),('s\rY0h[8 4~','wp-content/plugins/updraftplus/methods/googlecloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ύ^Ӂd'),('f{r#y`#','wp-content/plugins/updraftplus/methods/googledrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';O2I'),('m<%}W($','wp-content/plugins/updraftplus/methods/insufficient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bpeso/sM<'),('+tabғ','wp-content/plugins/updraftplus/methods/onedrive.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>GPW?FqIJ\'S'),('`Pn7\0 ','wp-content/plugins/updraftplus/methods/openstack-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aP,W@*'),('NKa]Q/','wp-content/plugins/updraftplus/methods/openstack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b=׸%Ⱥ>'),('hTԕw\0\'F','wp-content/plugins/updraftplus/methods/openstack2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AgM	\\i '),('|F(-}ݧ\"H','wp-content/plugins/updraftplus/methods/s3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\Zt/^E`P'),('P0Z\nSgd','wp-content/plugins/updraftplus/methods/s3generic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nH~O\"akN'),('5o%8|֚','wp-content/plugins/updraftplus/methods/sftp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GCeg`J-i]'),('hIKr(','wp-content/plugins/updraftplus/methods/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4OYťm#T'),('m\'I\"TMW}','wp-content/plugins/updraftplus/methods/updraftvault.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bXBQi'),('[xEf7NAAO','wp-content/plugins/updraftplus/methods/viaaddon-base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.:Q64hГ'),('Jn>c` ','wp-content/plugins/updraftplus/methods/webdav.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\ZQq\rC3L*@D'),('*A1^)͡','wp-content/plugins/updraftplus/options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U#\\-1Y'),('(7V@+TMC','wp-content/plugins/updraftplus/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8X7|y|/n'),('*kK,{JS/d/','wp-content/plugins/updraftplus/restorer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӯ\niwe=H'),('i:xAH=\r3N','wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2T.?	,w'),('5Λ\0eo','wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g\ngN1'),('p >*oȃ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r}?@B=l}'),('Ƞf1hf','wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','in@\0*-'),('sE\01J_p0yŹ','wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')%('),('*4ЬJRRI<','wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8LP_K'),(':82EB','wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\\4H@|^γs'),('Vq(¨a#','wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i)\n\"V6[c}'),('$n+F*c\Z','wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/B-!y('),('\rۯjo\Zm?	`];','wp-content/plugins/updraftplus/updraftplus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fh\Z&+.'),('#RyGU,','wp-content/plugins/updraftplus/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Zтu\rrv'),('bx肞+?\"','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/LICENSE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JX+/*F'),('$Ҹ-蓼ٖҵk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/NOTICE.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N#bd'),('6Dzj[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˫p\0︽%4 u['),('VJLR(o!Sh+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ބأW+y|'),('J+iJ%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z]<Q{c'),('~-FA&+-?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TR]A@+4g'),('=0T\\Ņ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hwɗZ\Z&c'),('\rIڡXvm','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EozO=K'),('k٦#CHge̗y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ﯕKS+'),('O\ZXf͜','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','21G$['),('jnVR=4ʔ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?i]'),('v_I7:W$ֈޅ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P5+0$!|'),('=+n6y!]1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','diTܘ'),('rB.xl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k^|KSLsg'),('mG@}bETZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GH}l	g'),('+^$7Y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EzziW[Z\"|9H'),('JB?!\'Ax','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','棔5,.ը!'),('?j[-~0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k#\\tLh;='),('s_=g\"V;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';l-a۬Z%G|'),('Ag#1ԏV]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sʙU6aZN'),('n~M#k|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',8.6'),('4\'g#4ʯ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',8.`PHDևN'),('qC4Ǵ5u\'/yd','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѠUn!lL1'),('F ?1aFc\"6','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@QI1d\naiP/'),('9Vͷi=%04(','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A+)d'),('F׽Tr<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uHW_++'),('.6<[;So','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-I@=<'),('t*ƨ<[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_nv1'),('8+X','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BS2Lo'),('ݨNVЈ9tfLl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`qϵ=wf4'),('i94+蝙䋂','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rҳ'),('I[Hm/','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u, !\n'),('iajKq','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6eC\\XU='),('6<l','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`廦*&a>O<'),('Eݽ\'`ch#C','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',HiySU~'),('P$qo$Kؤ:H','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!킖(\'I0fC'),('~ۛ .Db','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0enjeR>7'),('o=BK,4mx','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SvBtO*.m'),('Qq؂noP','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1a5,7׻'),('f=׼','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Τd].'),('b`sX Y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ںmʸ]'),('nH*|wg','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZVVBSy9-u,:'),('/m>I#vnk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R@={}QV{&\r'),('\'A\0UZjt4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@Y6㎚7'),('c','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	d<WhJU'),('Tc==g#I','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';M༄Л2o'),('gdCZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ktN0+Я'),('9\"@RZ4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')G熵\Z\"'),('>7L','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iBʷA.\\Ӗ '),('4V#7JNZ\"o','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','><v艗$sHt$'),('z\0EtV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iv)4JQ{[]@'),('BesA53','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	-C_+'),('e?sH8','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S\"NRz7'),(',ʓCn+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GH6mw='),('];\0 `\")ӶL','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d}Cf=Fc%'),('fv!(0Dgkx-1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ԓ\\YdoM'),('\n?0#t^|`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|̫&dDԤk'),('\'PAww5bW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[<aua_%P'),('$M=m','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vk:M'),(':CtD4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':snb'),('[oE))sZaE','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VYug&9('),('$@yѡ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D\Zf1?Ӿ'),('r|81=','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ؙ+oߦ&'),('W\'#A[7<9','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CMU;d򫳅1'),('R\r\rxl]e','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=iJwXB+'),('eG\"J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\"tUB\rGT'),('#82嘨\r	Ѝ`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>=@Xee'),('Jn;MS6O\ZFr','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o s}\0R'),('}Y}Yy','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\[F)3'),('Mw^rL<+Dd','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l`\rtiqZ'),('bp=Z\\Qڿ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zRV6#.1'),('|D)v8','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'$^sl.2;\n/'),('BnNJG','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ɛ'),('L$IOn;\rZ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','11Ja\0\Z'),(']k2-4+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@8E[̴_t'),('4xyKt4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߫ؔ^U='),('f\\ i	v ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zm=jiZOW'),(':rpg{1JK','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fpaf\"_l '),('y{fPG͕','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IV{B.'),('O3$(aoZe','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W݅+-'),('	]X','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YTCge˨'),('xB|þ\r.[;q','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"20WRZ'),('9w|.','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Wk3	N'),('-7;v`!(','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\rLޕ'),('f*	$!}_*N`=','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w:gGAyt'),('ȐhufDvé3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ύ`4C'),('*q0utGf','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eTM+)y7'),('L)D-?k','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s򺰧)9сI5'),('\"\r8s8ޘ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hv4bpڞ'),('Ѩ>p','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ځ|A0g~b'),('U	sSR+4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K#4k]'),('R2|jn','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\30P'),('\njW;!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k0\ZhxV\'x'),('_\nxK[L?\Za','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\\YBǶ#Io'),('C〿Ib','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zj%,Y$D#9K'),('Eoj]Vۜ\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A;VMu3>Z'),('eǋƳc{*!K','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';֩Z@h\'M'),('	U;`d?m','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\"jvo'),('?ooX\"!\0~','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/T8y+%!'),('NJkgbs','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Fe(,S8'),('ϴ@AHL®5M','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҀkhM86'),('j	vM@RJW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6M$|6e]Uś\r*'),('<$-ԇ\0','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','` Rrt'),('mKm_:Ի','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p@Ғ /'),('?˓nQg','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n:Ki6'),('S\'F','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vf1|2y>'),('ِ3V7a','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"q=IJ:Ac'),('}p={NuhH','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.x5FNxB'),('\Z.93#@&v','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+8U3VZ,='),('DmIvB[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SU\rьlz8\\'),('ޤI\Z(ִ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GbM۪8nB46'),('\Z(Q^ʰ,nwЩt','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G\rM.> ^h'),('VѰU9+5ep','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AսL	9F˵'),('4`	fc%p','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~S{Oիxg%>'),('-.8U`u*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0.!8GRBw'),('{7ժpA','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p\"+o6x	'),('7QDPSl<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^9tP\Z#\'Ì'),('%kyKK1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',|c\\yGGO'),('KuԊE%Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zBؾj'),('$`.Ob	','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$1e)'),('ηWC<g-PBk','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}ɹ_!o^('),('(ͫ8?t#3TH','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lA0_'),('F|.$#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!axv^uK8\n'),('I[\0}i	','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'N@ZtTa'),('Oqo%9t','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z8a֞'),('Z{rZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','٠k,\"9G='),('\"͹*>\r.3qH','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ӿnYcfp'),('fTu};r!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HӤ@@jA '),('1\'V\"57','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ow\'k'),('g!\'ERK+cVsr','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f/At:M%'),('[	cC`ĆN76V','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','66]N<%g->ȭ'),('M֓_-?>\n','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϛ~3D@mԔ'),('u!,Mw1Yե','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NjOf=$=&ƚ'),('wO+oz','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\1~<fo/'),('N`@j<.%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|S}-:ZFA^'),('&Ӛ2n`','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\':\rcGxA'),('*ɜ;5/P32','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rƝ\ZP'),('*`z//;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\nF\\|'),('Iy+VB\"J20J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ߊvİ}!'),('\'~\n>鋅%','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fC/˿^ .`&'),('0XӍ̨Rzc','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^EݫʗZ'),('O4zb>.{V','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c[a@YQmiX'),('%[?XI]eJ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DіNN'),('POY','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<=<Y'),('J[/ϘoߢBX','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u0ʛyb8a'),('+>qFh[(t]q','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8hW?KAif~^'),('P fz\'%]UG#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w{7*)l'),('\r58O	DLu6x','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\C3Qm<`'),('\r\"1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vi5P\r\n(J'),('U%3vgI','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2o3vBۋ'),('r)m\'Qtt','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V#g1'),('Mcجخ;	','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Ma\n|/	YY'),('ҺEV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8wLgR9ZqL\r'),('H`Jg2J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S=I\ngk|'),('Ɓ̊e,ck','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I,#0@'),('1_\'Qs08@','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d)L2*if'),('.@yx[&M','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yrENq(*K.'),('/+gUY*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(DJBÿrPVT'),('lHe@ϑ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f/@>M\0GXm'),('ͮLQBfq','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$p#\ZX3*a'),('{D3+cC5$','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ΠPDq2'),('&ioDT8I','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DhQk'),('H=6ܹXZ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y<aZZ[K'),('h-=	o:','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2]z`ϵE,'),('*N7Ɨ\n!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W0qxi!8'),('lXPciy6','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\"f]h0\"Ѹ\'N'),('K~16','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tCn`'),('4ar','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DYr\r;f'),('PSpR','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\\Lfxf,fG'),('7?߽oi(?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LIH\r'),('}#\Zgc','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','71IL̷b'),('nBP-`\"6)','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\rO.}q^8'),('7pE48Ƙa0\Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?>\rgJա'),('D\r֤a3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','㘲\r3a&G['),('\\Wm7\'/}BHl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','</0Su?e3'),('fx=<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IpZUatom'),('^?Vks3Q6\Zr','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8^$_Z\0s'),('}Df6]\n4YǸ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ؙftn o\''),('a.~Nr$d\"J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u!\Z/uÑ'),('[xbҊ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@+FC!L\nI'),('\ZOTi A1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<n\"\0DR>d'),('?UGo^T','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PH|xjY'),('&B&eb','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';UMX++='),('|׵\\O+X','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ggqۧc̕'),(' At','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PẁC~}?5p'),('7HҜOYC4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xD3K402fȕ'),(' ߒSǽ9Z?','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yڛWҰ?߫'),('þ1\r6}','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'!,@m!W+'),('ǩVߪB','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kPV?JLQe2'),('<ճlb) j','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgtIʳ*'),('X6\Z~T*K','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}rv5~Y2G|'),('YYm\\DT4','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Qv3Q\\V'),('JWQ&%Xn#!-2','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ثDޕ;L]'),('#$PTL zl','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ms0_ɵp'),('s@C4 	9','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+jY\Zr|x'),('˽AVzd{9`\n','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qK+p̴'),('ژpǛ$','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I*Iʫ6X'),('8L)s0ӣx{J','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':v.\rQ'),('@7o;{ ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+M`c}'),('@@ʹgc@Ϙs','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','સv,6c'),('\n%̽5ꢊ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aFN1<˝ޝn'),(';wO?0ښB\Z}a','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	b)ɐ9h]'),('or1sw2S1','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%삆U|Ȃ D'),('dk[D&	D%N','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#9xzFI3'),('@Ck5V82tF;B','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+ty\"WoM?'),('-\"9\"J%xm.','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3.\'2\Z@UP'),('֫ɚیr97*','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b]`NU7$'),('QC','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D\\TwkclJ'),('cq}adx','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ServiceUnavailableException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N[	m|`,'),('l@Ďm+]l;','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' y<\"PϮEE'),('9t~`M3Kor','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',jV|eͻkf'),(',2BLh>3','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=-YJV-tI'),('<5u*+R=_+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':0Zކ\Z'),('B=*O/>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7G`E3o 5C?'),('vΙlH$1<','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zz\Zp^\"8>'),('&*45	;8H','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݬM42+'),('[oTNhh$|','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pA\"ǣ|'),('J{-mR\"','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	WNa	/m^'),('@UB\0@[Wq','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')cF_%'),('mh١6[w?a','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ː[Z?\r\Z$'),('1ZBHxh; g','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\>y2]'),(' Z','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ipJe-'),('X#	\r\rp\r','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z@P#2'),('*B3ss$7\Z)\r[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=u5FJ/+D'),('R}<[(1!','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|=\"`(r'),('{y\r\rT1\n>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RJ꾽r\0'),('Iiu񅬔7','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$l̅!8!'),('(Ιztc','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BEpc'),('^7}$)t4BW','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pkr\\ܚ'),('?z;_','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k6r;HpjԪ'),('eY/	nc,T','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')27@n\nHG;'),('I\'nI\'','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Af\\$ep5P;'),('dTF/p/l','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pN3\ri'),('\rRl0+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EHLrhƣF_Yb'),('B#|5*޻I҇/','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!i}ط]'),('3Fj$ِl:]','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	%؄!la'),('A&n6~9o+ F','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','))\rb?'),('xir8zb#','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fs#G8^'),('%v[8+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qI{\0(0TM\"&'),('𧩏1ĶP','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WfQ[['),('Z	F#\Z+I8>','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g34VN߳-'),('ZKpJP[','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a!fʟD'),('ꙺUҹ4\"#*Y','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 7[Ud'),('GE3?D','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8+<Wx/G'),('\Z }%;|ɝ3w','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?! |k,[N\0'),('[g0A\\qԥS3f','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ưk\'f\0	|Ha'),('Pc/o5,','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wDFӉ6'),('3YSV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')5=SV;'),('WAYV+','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ϓ|g~$'),('{L','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mU{'),(':=c\\Zϑ`KBC','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`}VtPSapw#'),('P!.Xb%:PJ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+>ZQ'),('RیyfºbjV','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D1<H-Z'),('tjrn1NE','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6}YNm}'),('[gn_rpx','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˨\\.Zd	H'),('Q5PAd','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'rz+2以G'),('\0,Qlx ^CQ','wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Tܷè\")!i'),('xճ=,=','wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~1ηP *.'),('F6g{Y R','wp-content/plugins/updraftplus/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oj{e}#'),('b<SKz;K\n','wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',L-;!-'),('8cDHz万q0','wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5FLlQy'),('A?OyA/Z<','wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\I&\Zu5ە'),(']=\r65','wp-content/plugins/updraftplus/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p@5%4K7'),(')Crp),=e','wp-content/plugins/updraftplus/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P8Og.?*'),('\Z)Z>z=','wp-content/plugins/updraftplus/vendor/eher/oauth/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':K)rNbP/v'),('l5bK	\Zz ','wp-content/plugins/updraftplus/vendor/eher/oauth/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xf WoӶR'),('-mDdͰ','wp-content/plugins/updraftplus/vendor/eher/oauth/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aon#煵'),('<vKŨf+hM','wp-content/plugins/updraftplus/vendor/eher/oauth/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Q95j*>LqX'),('9bEg<n','wp-content/plugins/updraftplus/vendor/eher/oauth/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ouW	:'),('cx~9*Ru','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<MWz'),('x\nԇt,,:n','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eꮲI56{4U'),('J@p[+;','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(IY'),('V)-Vd','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ȍbxw)Q'),('?>hkx/m','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yp?m}'),('BrIu)b','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`|2j?3'),('4pٺgv猔#','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oX>>LZ4\\'),('о.k','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s	׵Fa>'),('*y4b=^_0','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xw+;axjt|'),('9 Lk_','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qw<\Z-60'),('QUWܕ味','wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t>XQ!V'),('H97$z3>+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e!CEad)'),('=Q	]R','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3qsH`0ҋ	o'),(':t1Χ%Neb','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VO'),('sG}-+vqi','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B,n\Z:tUɾ'),('O_gHgM|A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4p%3v'),('SǴl>U*\r=','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/UPGRADING.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{!\Z\rHDZL'),('QLd}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/build.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VO~`CX};`Y'),('c\r?8wF}#','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VymT*,b '),('Oj~ּk86','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WDKXa'),('z80Ct','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F(;biMa'),('otp4u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','յk!&'),('口SfF\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',1@b9'),('WV\rI~','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XEm3+O^[(u'),('Qyqmr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T]^P\0k	n'),('xsgrS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CVsybo3`>j#'),('P}L3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q)XMԭ`@Fv'),('$2(j,Ѷ?h','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`?2K4t'),('==xD>*y3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0#%'),('\Zad8p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qӨ\'=]'),('#FĚn','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(#hW_Ev[29!}'),('\0빤>ߡb','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.$E5s{m'),('ʘGʥo`D','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?O$+dz\0\0'),('(#D(4ڛf','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.ʹoCc*Yq'),('3y0K bxu','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nl)sc'),('7?/qm.','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bʼ:Qs'),('C\ZO\"v![','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӑqhj!$:EB'),('O\r8ƳsO','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VwP3Pi_DGuC'),('Fj8\n97T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҙ[e9\rT'),('F1	ٛ)H','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CڥK*Z|4t'),('v竸6Kڐ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j&y\"@tQ'),('<6ˤhlb>R_','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a|	XŤD5Su[~'),('CDE','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}RDjƻd@'),('\ncn$8:n#j.','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sB.QoWkG_'),('arqAb@r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*I\\V:rd'),(']L<|<2V=T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[&E\rR37Cg,'),('*[h5i^s','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=^_\0F7S'),('7#i/74ZB','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ngb<g['),(']\"!29mD7','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$HLj 	['),('w.YsT]6]]r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9%	(²'),('y]|Q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Mߌu.<'),('qp|<\0*\"=l','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' 7o-&hR='),('iy91a*s3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tVLmm8b-{e'),('n+zohsW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vFό:p&`'),('RĢAYH','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P_:)q`{#'),('\Zs)`','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!3,S\''),('0%v+BɌ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>bY	PHV'),('P$u匨((]oRd','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۨ0k~l<J4'),('&	4|xun','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TfXO\'0x'),('(\ni	0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\05;ZW'),('gIk@i@#','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\0y>eg'),('̤3kM62D]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Ԧ#hlܞs'),('HL[k%̸qp','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\nfvQ_x%c'),('@)z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-%5vF\0*'),('k;f5k','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@l7	3;5sS'),('F; !~l^m','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ll8_6$-	Hg'),('qšbb53','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%xqZlZ<?s'),('\"!O\0[]\04<','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u~i84YkC'),('H/%,/6','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڊI_\rtW0'),('դi_玝ΚD\r4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xW }t]-'),('B((ƹݵ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rQlW$'),('#dbiV<','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^}NYs}7'),('\ro(>R8Gts','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɣ/\\m[~q)'),('}RR^6n,xŁ-I','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.5}ֲ&6j(~'),('T))jG|I	Qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʰL@j\nn'),('٬OƤ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$tkW'),('@s@/fDS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/OAIΗP'),(')\\EA&b','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y\0leԄ1,}\r'),('Fuйs`!','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r{_d]أ	To'),('|+7>!ܨr?M','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}d	'),('^^[(J@`5i','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&!K<UZʛ'),('C\';Mb5\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sl'),('VWo/\\HY','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D@<(xHm'),('4P\0ze8zB','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oSO'),('~HN6|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Hޥ0i5'),('Zt\\\0!>\nTIAt','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tNJS8'),('\Z%OH%p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_.@ap'),('.[=\nc0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RG0n\ny\nh'),('q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z4ۡ(g['),('䋊V!2d-\n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Eɿ\'j+.T}'),('Н_O%^\0)Ł','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wq{:|e&M'),('Y5g','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\/]dCHo-'),('.\\_kfHO','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ஃLz*Bg'),('︀ܹXu_J','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k2bQ-?a'),('\\LlA*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}9mZ'),('\\WdϞ+\nnW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' &ʾ\0\"d'),('0^\r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','æY-[~ '),('lic`V-,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';7:ǐY\n,'),('xb\rrW','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nhaw*'),('qXo9F+_','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CǡhF.I`'),('4R	:|WTӶBb','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l	\'Cٽ'),('+>h )','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')o<Yb\\f'),('/UREǬ6','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gjGm*fYE\\T'),('[]cim]Z42','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']/p=}qd	;'),('X12mƇr','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&&4K'),('\'tZ<.ն','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\Zl-cNX\'*7'),('[x%0hN,z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tTnJxx'),('=K3p*=2l','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s,sqԟ\0߭b?'),('LGE$74','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2,E4lCA'),('~7y&EI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Resources/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l32hL-YL'),('RK1Z&A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_s7=Iǚ'),('Hr>\'=y','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kNc*&bԏ9F'),('Υq:q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B]jaGCc'),('GK\n-','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	BPKS0'),('bFD\n;+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u3UGT>-'),('I扙m|h','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	z).N<QWT'),('ڊE5^d;','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+~P3'),('ȣ˕v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.7N?gK\r}\\'),(';n7Ϸ2','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~#[hoD'),('\ZUcsچH{=','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~jmd'),('zFGUk&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\rUFb{iI˦'),('\n19o','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(/D.OUtk('),('j\\hյ\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EW!\"`h2'),('30i]G;','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\nY)X'),('.Bݝ]P\0yuŴR:p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NYf-&}'),('J?<B<kI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%r(Z2jvۿ'),('aGQ7E','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\؏Ͷjh/4'),('kvcу}1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF_\0W7ψ'),('GNП>e-1vk.de','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gIz.FV:%'),('OEA:)(N.ɹ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TM*c4E-\'a'),('MlN# x','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IpF߷o'),('PB)^.L*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\Z+@D1'),('nQC_$','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V_k\0yĴ'),('Da\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nŶYpAkb߉0'),('Riݨ	Y&j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q /y SkP5'),('^Jb]ryM','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~p_\ZGr 4]'),('>A1@a?,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fq͚|#lf'),('n0_ڃ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڲ9c%4k(A5'),('@tQ.}խla+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',O/ݷ)'),('j!iOگA^','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?So\0\Zq9'),('x	Ptw\r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l|1aSÉ8'),('NSw\'Vey','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8WYl@\n'),('ӠQVժ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O qYYsi'),('AF؅+6U','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ś!^۴+EB'),('>}^ۛj','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ⁀*νjDX'),('ۉvD{','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ef\rh2+\Z1Ԍ('),('*قI8AR','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ˌ:Z-'),('{+BSY\0K(','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b2A\'%k'),('^\'6ْ{DwBz','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kt'),('Lǰ@v~','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۭgZ]̓i7NW'),(':v{V~,','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&=_r2'),('*C.\\zx1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sÿ1.k'),('aBr9d1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.څR`uDLHP'),('b]$vn\rE','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RR͔%'),('b~no4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5Խ18/|o/'),('\\݊;9vC@sԭ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n/h>'),('\\h~vgdvS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8H].̇n\"В9'),('p`vDX}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z\0ݽDhĻ%'),('03VAtx]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bt,p7bT'),('$\'XRѥʶ۠','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DCiun550g'),('dփ4ױM/','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z3]^\0sm'),('Ք{۪55ͥ\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EJs@qNB>0'),('#.ɷLc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Qf{B9A'),('=zA4','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','${A\" _K'),('š_1]99)}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a^q-5EZCRA'),('AqR','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';0K=2g@͍'),('%1<qWf	&١','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F<)ҿ՜l'),('L*̕$G','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&/{h4x2'),('SdRI*⌈G9O','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY(XwK7'),('QGgXkq;j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_e㙩ͮ+'),('`C*r','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p~\\\'acl'),('\nΌbm0!1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rܜG#i=ö/<'),('GQΚͣ`A\'','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⩩mPyS'),('ΡfWyL,YU','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w5y؝w]bg'),('>q^8č/Q','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ETQFu'),('^pI|\0_yfѹ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M9a\''),('\Ze_m','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l*3E>'),('%,R_ۀF','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2aC?\rfqn'),('s<B){KgO','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g;5JDc'),('.RF4	jyn','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'Xw<hJLڏ'),('4xI:uoQ.\'','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/>!LG'),('D=xX6ت','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[t.ޱƳuu8{'),('^輹L&L:','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jzm#Ir\ny'),('yBYW\ZV=5','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MgPyR%:P\ra'),('43ko3q1W','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5j>?~[-{'),('@uX\n\"','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7(]/I3\"'),('WbLU^,=@','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&3f=g-\n'),('d2[*^Mtlc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ez{8;j\Za'),('%O6O8','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9CZg'),(';F0ߍ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$1yRmq'),('@Hd3&ʩ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eHs\rORif'),('*9\rSb;;','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7!,3#$2`'),('*YF	N7F`7	','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{(A,d1B'),('9=tiv','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6I0$6m'),('ʨv.p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dIJ>\\'),(',L+AO8a=','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!+vmٷ޲|'),('ʯ①1W','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j`nhY\r`'),('/?\rhg;E&T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~S5>,oV.ϡle'),('RlVRѪ@̧','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hٞ9l'),('Ii軼\Za','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_mAB\rM%FQ'),('	v5ߙt','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0o֬ļq*'),('I$)ӄ.i\rߖ\0A','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r:{yiQ(b*'),('5qn`s~n˝','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݢyi1+Ɛ^'),('Dl)4-0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'\\/	v'),('W)YG0Aւ?J\Z','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e U\n~ɹ'),('$ltyu;R3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Sdu\0Nkga'),('wDs.}P4H','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',iS\'d'),('\'\"(̟BҬZ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h~gx#}u'),('zԤХE\'64','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ibZKhdL\\'),('{(zM','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^ުz)~c'),('LTn3T+]Op&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8v0~ۜ߭R$'),('[2:S?/j','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OA\'9\'+;姗ax'),('&	Jko','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3n.nPh='),('\r~/t1jIe*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p)]zj'),('\\,p4T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OjjbwX3'),('aGj>','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rUQGjD5_;'),('*\ZJ\ZX7n','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\\AbQ*wDD'),('}Dx\">. qq','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n\nz!w><T'),('*K)]pȡ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`r?}\\'),('$)J\r`?3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DEW\'&'),('7ThSm{\r]','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hPmpC3V'),('9w','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E!fD]rKԚ'),('ߪnnp|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mYQy'),('%eݍw|','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"lѼ)&L{6gG'),('/E?','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t>e=8'),('+}>c,-','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	:gJď'),('vڝvJ3','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%k7ۻ+'),('./CA\0v','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jJI`\rLw'),('>9.p;ql','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']D.,Xe'),(' qqUzA~\"','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZJ@M/e_L'),('Mtm@0IU*T','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UUx3Je)&'),('\0XnS#5MJ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kȅ{G߭'),('vq5B@Pf]6Hha','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1ͩ#3'),('?U\\|R΢','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2O?LJ.\"'),('k-ow&<}}','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƫY\\Ӥ7iIчU'),('0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nAjJm8W^IM'),('D\"enC[`','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#)^sP$'),('$};/ꃲ{1','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>{O<܅b1'),('dd!\n\'0+','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\"W.r`xD'),('jxҁl\\G','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','72c,Y'),('g\nVT+5','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SO6-7#h\r'),('#;bM[sF,J','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','es!\Z'),('7Ҏ)5?_\\','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'$Cd\"}|k@'),('gn\Z@','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pyud#΁S$5'),('_3t cT!X','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xNwy[8'),('i뽼i?=','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+	qL+Sm'),('H$`\rDG|BY','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EVI%wF'),('\r\nٽl\'wR7[','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Yc٬D[nDK'),('ԗBLYЄd','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bmu\ZU@'),('/[H3}[F(','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S5»9'),('=܀AjAc','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W9Pڠ&B'),('|js','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{<B[224;͎='),('*ɬ~|$','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pvRGUy\r	f'),('%hi\r\0IV','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"1:o8c'),('KV	llhkukI','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pjmɑ>gGT'),('YB3$','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X:4tqnhm'),('Z(aK1\'Ẏ','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W.h.C^d'),('k$`1.Jr.u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^{oq>'),(']KU%9-7)','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\'Sh]8B?='),(']H߹v;	TLc9','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$iMrIa&#'),('s(#</4\0','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',(^N4'),('eZ|˸	v*','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',&e5jƛR '),('i3,\"uĉZ4\"E','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kBGbw>!+'),('!QKbY.&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ow&kc'),('g??a\\-','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rp=þk\n'),('00ɝ4ɥ^u','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I&殀!!T.\"'),('Clpt.','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	sHYӨ*'),('\Zb@k.i.p','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bb=x\ZS'),('\"soƯaa晐','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$H7RE~'),('5^Uy#x\rIHt','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lN6Y)K/R'),('z[R5v3x','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ghGi\0*T\"\n}'),('ðJ:KqS7Iv','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ge_d٬\n'),('COU0.&','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z=L9|CR_'),('Ƽ®p}tQ$N','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVѐFQ#ԂB'),('T(Tved$f','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1\0!'),('٪#|1\\2Um','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2,ANS['),('[gPYϖD','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v-HXH/0D'),('B2U/HDS','wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\";K9,>s'),('Vad|mW&S','wp-content/plugins/updraftplus/vendor/psr/log/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F^l@'),('YwzKσ','wp-content/plugins/updraftplus/vendor/psr/log/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZtbryI79J2~'),('\Zg+o9/bv','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|A;rГ\r'),('O','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}/X5$9/e'),('S\rUk~Fb+s','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uq..\0'),('|[f','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';vWe\0'),('7\"zZJNs','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[:lO	t,ij'),('{6UP\r$P','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8j&}ZQf'),('A9G]D#M#q{','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mυl|	z'),('yK:x}0JFm','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y#tA!Ǿ['),(')\n/]\n5J\'','wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6L52$pEN$dX'),(' HzK~E=r','wp-content/plugins/updraftplus/vendor/psr/log/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JqzǗQv'),('XO1{F`','wp-content/plugins/updraftplus/vendor/psr/log/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Ҫx0:3\Z'),('&\0oa`\ZgRB','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.coveralls.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ur˨\"^'),('Ge]4̡F','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',gZRCq'),('_Ĥz߅','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.travis.yml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q@?iE'),('-AJfۭb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CONTRIBUTING.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\0uWD$,bEW6'),('])Ѻg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[dcӮ$'),('~fgk','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?i5:.8X'),('$87O_c','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/apigen.neon',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s}Xe{.9\\'),('wVk{K*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=/Iki'),('܂&:/\0\"_HF_','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w|ZTs>Yՠ'),('I}9Lg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-PV=lAY'),('4puDI','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~eoVU-'),('GƦ<-','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DKUIjwB'),('Juami\"d','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ץ/%#kvF_('),('a)[+o91a\Z)','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8.LLp^'),('۩^*%ANiA','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w\"Q3C\\'),('0_j}8IAh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2uMf'),('aóhG^i','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*cwmĎf'),('uӨ+̧xTd','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3i&j%9ݜ2'),('nFu}҉','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4<k5M\'_D'),('\0\'rO5,8B','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f6\'Z mˡI'),('cҤ|.L~','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r2:&t~m'),('3kN%_IT','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JЃː&D}'),('NRi|CW','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߝECMI`'),('#>Cjӈb!','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hvM?0qh'),('S?5L!	*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W{]m	emH'),(')	wJa^(','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$u9$hoy%'),('a\'[~p','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ց\\:vø'),('&K&ڄXg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dwU@71	,5'),('J[dEb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\0+6}F\Zٽv3'),('\Ze\n/]\Z1','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uU\'x~1ÞK'),('y)wQ!\03`M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bB!~-Ȇ٭'),('gD	S','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nCiS<:Ӹ'),('j@u','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tԞBޓr7'),('Oc[\'ɭ}G','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Șz3('),('_185','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',7fS\'G\'C'),('LVr@sRC}','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Jc1z{\'/@EHl>'),('u\\itz+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U ,26LM'),('Zʧ#cg/~','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oجѢ3;]T\Z]'),('gRN','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' ⮆<_jS<J'),('cОM','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FY?ʊ1s/'),('2:]\Z<Atb\0,','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	t2npU^'),(':RL?&=','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';yCh}V~>Y'),('^^\\ .޻v\\','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*soTP29\",]n'),('l\nVgƪ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ku'),('CdQ}s_Z $','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=e@M=&;'),('~y\0dx![>&','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')z<a 0x\"'),('[t>mк0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Ov'),('[$ַYN;d\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nmulv:'),('UT}^C	<+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~j\"W '),('nL@H9`','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+%DV=\r~\rL'),('U^$lD=Y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XoS\\,J\'e'),('!\'\Z^SUJo','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ji\Zm LZ	D'),('#3J:qɭ_','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P^ZF{t_K'),('Kߨ)@\Z-','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\']{xN}'),('u1>Jel6','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pm/d^\rJNo'),('ڌ\\D2f&c','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!ą,\\kTw'),('UpHs,M\r*a','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3D0ɺ\'1>M'),('Q.izU/Q>','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9#w>ò7~<?'),(')»F&ڮh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/{܇AK&'),('LwfxΘM','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','שa_}Gֶl'),('d\\oܕκZ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{LƲ('),('vzZqr\\@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n,(O'),('01ޟs','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \rVjԈQa'),('Ţ%8vs6','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ztKi\ZIAW'),('\r!ޗL0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q59,\rE[9+'),('6BT	8ѝ8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kth*-x8'),('R~P}*cI:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6+5I燋Vp['),('IA@fAb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BZI^'),('b]a255la','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a\n3p*~\ne=\r'),('&C|\rUC8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ri4Db-${\\I;'),('\0OiVi`]','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/I;FAr'),('ՐWB\"Q','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W+^?ŚЦt\"'),('.t9kst7r','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZaJyN_'),('i些b6eg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aMZX	K'),(';X!\0k.','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nͣMİ97y;'),('ڛ!{EM$','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K7hh.:k'),(']E4jd)(\Zx+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԝ-+GJ垸'),('v(>1{L6','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\0t\0Cng'),('j\n9?KCgO5','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	hI09*wQ'),('35SZ;׎x%@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>1}nafZc('),('	˦3;e\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z1M	gՎ\r'),('9 Á!m','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qGlX\ZpJ'),('$\0Slaşq|\'','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`imq\r{l\Z'),('G0YVr޼*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';&γe!xh>'),('\n¢#ȮU','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7Js?K'),('p:7j!=b#3M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B}6K~S'),('<n|ޫ0);z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|G -As'),('@b$YD!A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|N\"g)RH'),('<ajYwr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&p	NK'),('Սs0LBO0&A','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R[h\r}$z'),('U|Jy>߄cc','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V;Ǎc{'),('p*1E\'J-S','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k$b\0R'),('~c5R\"@2','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vi.()v4'),('n|MOs','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']\\B{0G'),('cKK{7ⴔ)','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l{A(F'),('FSNfZ\"u','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8)wd'),('h5oC[֒\\˘^Vq7','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/\"΃Yp&F`'),('H\0E6@','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(M+Cmk>Bh'),('%^p','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K6-Sh\"t0˹w'),('(BY]2\\~Ky','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'JWf*'),('<;H=t~bc:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ąK?↖\\b'),('Wf&[Oص?Sȏ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','./*Mi͗'),('eRWUʖhr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR);\Z`زy8'),('tx^z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|JtvnUn%%k'),('-\0a[Q>','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nq\0M_0K'),('J2<\\8Z%','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cG<ӈ޼/'),('b//)A1','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';RcP\ZM'),('lG_Jt','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e`o>HLRU'),('G9\0&&','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i#҃{9N溵'),('UbxBUA[m`J','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=5\n-~(bjg]Z}('),('??#$K','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<}\rBƕ70q'),('}_pHD<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n8&i\"'),('>͙xft\n','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2E!EsGe?_'),('}a][ܪ^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KS+2HAN'),('_9w[o','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7`\"pq!Y\\'),('B](P˶','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4yEM3f'),('6#-y','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f^;.#x!n'),('tNZ3Ҿ°','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M8\\3<nBeo'),('<ae7z*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q\"HqyDMB'),('o%@g)`M','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<8l%W9O'),('<U֒-\Z/k\Z?Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*4k<M'),('(+,VvP','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P^oձ,c'),('hOM->J-Q:','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˃$f'),('%4>]\Zw','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ő%uHI'),('x(-MmWL2','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FQ:X'),('4*6k\\,Yhv','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5m7`Y,o¾v'),('PnyK','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>ǯɇ\"Q\Z, '),('BGF@k+ѓ<s+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>~@Jb.'),('l\'yK~K ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֙\rCӳ]E'),('<\\g	F','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#,ZE'),('j@PrF͊馕','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',<B>_C#'),('fOߠ%bi\Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nKTq'),('~[\"+\Zqu','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G	&\"˸'),('Z;s~X','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ERtH@GqVV\Zc'),('<Y{䕾]$j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N(ڢP6ʚ'),('fYûmEgxD','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l3T&qK.'),('!CaP-%v\"`','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~%D ;CF'),('؂i>Ǯd','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?㽷Ƶ븆'),('gJӯE--+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*+_@{4Gc'),('w6?k_+R','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C@\\dP'),('Aǟ8;%\0Eg','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(\Ze\nExqX'),('>E~\0擾W','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#@~;#hZ&QI'),(']9Qo.\nO','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_7:-UMkJe'),('7W_%9Z','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tCD|i'),('~#\rϳ1e','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٚF870F'),('ЋVjLMzثѺ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rB^}<CO\"'),('oxƗW7','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t*#5/\''),('Mϩ,ҁXGK','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڵ@q\'='),('ǂM}GA','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7ESe<'),('vP6)U3ah','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pxe%Ȁ8'),('[\r1K8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8*آsz!'),('2 =5a~+,\'j','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#7@>\"B*'),(')t*b<[','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƕ-p%\nrk'),('aKvꬩFF','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x쑡p6JXr0I'),('f/,\\!\n\n','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q*+\"2t'),('1LgzB<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9#z#X('),('XQ:Iqա0cr','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z$+_'),('eckO*]','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D}ΤwSo!fp'),('ɱ0,x(!c','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҝI\n R'),('h#ٕQY-ai','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p.͋S4;ɭC+s'),('0jYr\r[{\0','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\0%ql'),('?_t׺P','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ۂth0Ht{'),('ļ	Y|pt4(','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RTU'),('.7f[','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xE)*o^d?'),(')knVmGe','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bi\r:\r@P'),('yvfsYb','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<^Pj%^6{'),('Б!t$0v&$8','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}\Zyb7#'),('H	)','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kZohݏa'),('<&laL(4V^+','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"sC>X'),('\n(ٓh','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sF߳Mi/'),('Qٳ4f|\nN','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N?dLt'),('(]Ex{<3','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŀ޷v,Z3kCD'),('~\rr㴄}\\*','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JbK$C'),('HF]w?yvy','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lo_YҼ'),('lLXiUv8F','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!-0\r#`1U=b$71'),('Hbh519','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[Օ#5Mm:i'),('AuPsaUs\"','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_ASx'),('\0m`!st\0P\0 ','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kzs>靡'),('JvOB Ri<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%>ߗH)RM'),('拳ĉ3no9','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J<ӧsvL%'),('\\Q^z7Kb\nh^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͒#\rcN'),('1\ng4F.Ke','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WåHx'),('$q|#\"	ҹ<','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĵ֜Pb'),('$K>w`^','wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߿\Z|{j:s6'),('rg6:\r5w','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/.gitignore',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\P4齩C&j'),('OX,ԫza\"','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/CHANGELOG.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t]gN+8J;q'),('d@Qۅ-Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' >!h0'),('> jꈬZRÏ0','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hD}%^pӟ?'),('AÙ} ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	ZU\\#En(P'),('N3I՛;$','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^{Fc`n~hcF'),('D\'iQI','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ٌF]\rm'),('t$0	,]b&','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';!.C'),('Jwޏ.?','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-S Nv'),(',㺢z] !0Y','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';ed*~E;w<L6'),(',Z\nK(','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dT̚d'),('e&cay~k!','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FIzR)1}v^\n'),('3+oY	','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ĩh2=8'),(',iT Ne!g	','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5r\rh%'),('3b<ף|lZoq','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/README.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3`t\0c^8Eg'),('(\"j|}۠`','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⠅Bős\n4'),('u̞dDyV]#','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','np\\>$^zr+'),('$\'KMIj','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eDUA~T\"_'),('+sЪzjзb','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6#mp.Ӟ!'),('x=B+R','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':z5'),('m]*E*','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V!:p>E'),('be`j','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ncR:6'),('L8{Ii)','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n P5!<ѥ֍'),('qH6','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/composer.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g{r56*v\Z[܃'),('ɊWisG~ ','wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/phpunit.xml.dist',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fm9'),('<86KoX','wp-content/plugins/wordfence/css/activity-report-widget.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rmEdb'),('!@A;1)SJb','wp-content/plugins/wordfence/css/colorbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jR S7M'),('ŷN	\0f\ZT','wp-content/plugins/wordfence/css/diff.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"y14Z'),('a|\n|@X\nfM\r','wp-content/plugins/wordfence/css/dt_table.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[f\Z}I+o'),('5ZoҮ<','wp-content/plugins/wordfence/css/fullLog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Wjw˄}'),('!0tT( ','wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\KKGлSA'),('LW]=\0;:','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\ZKȚ-\"a{*0'),('?>\0%lD[T','wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F\"I~\0GͲ'),('Qc$26.i','wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',');7/EwAg'),('nmq\0@pFd*','wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0(5&3lh)W'),('P⩣-ƅi','wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m8O@d8<Qž'),('Ŗ/PIcD=Y','wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':<Thzģ *ˌ'),('E0fۿoi\r\"&','wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ōo8%'),('M$!\\z','wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u3<j'),('MJdB.*','wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Aa+JD$2J'),('jo+s78','wp-content/plugins/wordfence/css/iptraf.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+	<dq7^'),('?$ O;>ե','wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ef#`P~7n'),('WN	b%9pY&','wp-content/plugins/wordfence/css/jquery-ui.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N3(-M\r'),('h{nV\"0','wp-content/plugins/wordfence/css/jquery-ui.structure.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\@1D?'),('rti. :vV&','wp-content/plugins/wordfence/css/jquery-ui.theme.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{_#S'),('oaw5h@+w\r','wp-content/plugins/wordfence/css/main.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','05HO~1S'),('sYX㞗','wp-content/plugins/wordfence/css/phpinfo.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<`,7Ju\0'),('J	4/|	','wp-content/plugins/wordfence/css/select2.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XN|7Z(C'),('9`翭!b!','wp-content/plugins/wordfence/css/wordfenceBox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^+C.f'),('様7^b\"','wp-content/plugins/wordfence/images/back_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hgi>'),('׮Fps4','wp-content/plugins/wordfence/images/back_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']H'),('^yG=ڜFg;3á','wp-content/plugins/wordfence/images/button-grad-grey.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RCTy?'),('$8.VpjB@','wp-content/plugins/wordfence/images/flags/.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή'),('\r:Uˣ','wp-content/plugins/wordfence/images/flags/a1.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή'),('\nƥuoefan','wp-content/plugins/wordfence/images/flags/a2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4.M:<K0ܟή'),('\'}H WԜ\n{','wp-content/plugins/wordfence/images/flags/ad.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\Z tV[E؜K'),('T.d8y','wp-content/plugins/wordfence/images/flags/ae.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','74%E\'M}l'),(';cS#nv','wp-content/plugins/wordfence/images/flags/af.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5{dQÜ'),('b`Ҥ-17@','wp-content/plugins/wordfence/images/flags/ag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\$, '),('/','wp-content/plugins/wordfence/images/flags/ai.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7֖*솼'),('PvdI4u','wp-content/plugins/wordfence/images/flags/al.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\reݴOojDO'),('~pE*TE4','wp-content/plugins/wordfence/images/flags/am.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$/cC\\&P%'),(';-#n9|?=','wp-content/plugins/wordfence/images/flags/an.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ڇ0sw1Z'),('yn6Kz9G','wp-content/plugins/wordfence/images/flags/ao.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Am$٧wh'),('NCW','wp-content/plugins/wordfence/images/flags/ap.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^d\rٍ_P'),('u\ra\"\rW','wp-content/plugins/wordfence/images/flags/aq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uw 釚d'),('ᯰӦ0ncm','wp-content/plugins/wordfence/images/flags/ar.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l˼Ucph\ZK'),(':Pb4	u','wp-content/plugins/wordfence/images/flags/as.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_W^5F^'),('QB xMBa','wp-content/plugins/wordfence/images/flags/at.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\"O;'),('Q2\'-O94','wp-content/plugins/wordfence/images/flags/au.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/CsY'),('MSk쥘\n','wp-content/plugins/wordfence/images/flags/aw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3uyju3'),('GT!A','wp-content/plugins/wordfence/images/flags/ax.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fuwb̅(w\r'),('.B99&i','wp-content/plugins/wordfence/images/flags/az.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?\"7^`}]@'),('Sm$\\xH4','wp-content/plugins/wordfence/images/flags/ba.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TDX,Jy$'),('pA^s%','wp-content/plugins/wordfence/images/flags/bb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',4u\n߯?g'),('HE1&Y','wp-content/plugins/wordfence/images/flags/bd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(U!¸!s'),('\0IJ-$','wp-content/plugins/wordfence/images/flags/be.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a٣\Z%z'),('{_9έe','wp-content/plugins/wordfence/images/flags/bf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cY8i3'),(')\Zcq&#,O','wp-content/plugins/wordfence/images/flags/bg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','},zd@@^'),('E58BC)Js','wp-content/plugins/wordfence/images/flags/bh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@T&V'),('>X@Pd~R','wp-content/plugins/wordfence/images/flags/bi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڴBp+Ğ'),('b32N?RVMCR\'','wp-content/plugins/wordfence/images/flags/bj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N,X\nlY%_'),('3yuE1wĎ','wp-content/plugins/wordfence/images/flags/bm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|	9eX'),(' -A&W','wp-content/plugins/wordfence/images/flags/bn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zD(+J'),('gMBM}ޭ!','wp-content/plugins/wordfence/images/flags/bo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&7_ |>)'),('U}5&`J[u:','wp-content/plugins/wordfence/images/flags/br.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mH%WQ['),('ƄH3H׏!','wp-content/plugins/wordfence/images/flags/bs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XsYI}T'),('ޞQ,n','wp-content/plugins/wordfence/images/flags/bt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiKu<_պv%'),('f+WKZ\"','wp-content/plugins/wordfence/images/flags/bv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҒTǯWF5~'),('g˺3C,','wp-content/plugins/wordfence/images/flags/bw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E.g;z'),('kQcd','wp-content/plugins/wordfence/images/flags/by.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_6\rAv'),('eG=U\\l','wp-content/plugins/wordfence/images/flags/bz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ߠe^ze'),(',܎<9Tj`','wp-content/plugins/wordfence/images/flags/ca.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"J+/<6('),('Y*M$','wp-content/plugins/wordfence/images/flags/cc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TÒ;+R@'),('/ȯȩsc\"ҧ','wp-content/plugins/wordfence/images/flags/cd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wjmk'),('tpo\"|:U%','wp-content/plugins/wordfence/images/flags/cf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*t)M؋F)'),('`X[r횎E','wp-content/plugins/wordfence/images/flags/cg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UXB\'#Tw{'),('^,^戉8','wp-content/plugins/wordfence/images/flags/ch.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7_\ZeM\r'),('e>Y9S&','wp-content/plugins/wordfence/images/flags/ci.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hzPF+dy&'),('܉]je*:p','wp-content/plugins/wordfence/images/flags/ck.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sάiԛ'),('/t;/b4!\"&','wp-content/plugins/wordfence/images/flags/cl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h1ܮ8'),('Q;꼡ʿ','wp-content/plugins/wordfence/images/flags/cm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ThWFCJ'),('Z%na?\Z/','wp-content/plugins/wordfence/images/flags/cn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F[MZN8'),('Sd:jr-IF','wp-content/plugins/wordfence/images/flags/co.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\"}ˀ'),('Q	1ޕb PSWr','wp-content/plugins/wordfence/images/flags/cr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"q컔m.'),('B¾CJB','wp-content/plugins/wordfence/images/flags/cs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zm@\nn#'),('\nKnEH[_t\Z','wp-content/plugins/wordfence/images/flags/cu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ѻ7ν-T\nĤ'),('[hi&.E\r5S','wp-content/plugins/wordfence/images/flags/cv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5`	xJBW'),('q>%<HB%G','wp-content/plugins/wordfence/images/flags/cw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P%:\'_zfh'),('o(Q<ڐ(','wp-content/plugins/wordfence/images/flags/cx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':	B2'),('6j41]o','wp-content/plugins/wordfence/images/flags/cy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȕ2csry8<%\Z,R'),('vðMv:i','wp-content/plugins/wordfence/images/flags/cz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0yS(18#'),('zknQm|Ǹtk','wp-content/plugins/wordfence/images/flags/de.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nNbK'),('{tvOz׳','wp-content/plugins/wordfence/images/flags/dj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g-6~$ݑ'),('sF\"tOߓ;_*.','wp-content/plugins/wordfence/images/flags/dk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZDn~WMտM'),('&gHi(','wp-content/plugins/wordfence/images/flags/dm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\r&.S%V[\Z5YR'),('tw*>','wp-content/plugins/wordfence/images/flags/do.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V:EGaXz'),('jkQ0\'','wp-content/plugins/wordfence/images/flags/dz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h9X'),('6KVuN\05','wp-content/plugins/wordfence/images/flags/ec.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A$͊z	'),('qYH\"','wp-content/plugins/wordfence/images/flags/ee.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZVFY3\ZXL('),('AmK:`G','wp-content/plugins/wordfence/images/flags/eg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t{-/9ME-\"'),('IB׹71T,','wp-content/plugins/wordfence/images/flags/eh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';[eAuK'),('^[確X#','wp-content/plugins/wordfence/images/flags/england.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5[W,\'o'),('޽s㝢@1i:\Z','wp-content/plugins/wordfence/images/flags/er.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AQ	uVo'),('61JKgO 8 ','wp-content/plugins/wordfence/images/flags/es.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f).>\'ԵR	w'),('ǸK*u҃Av','wp-content/plugins/wordfence/images/flags/et.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T\rP\0%'),('>A\rD\0x7','wp-content/plugins/wordfence/images/flags/eu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2#ϫhks'),('M:OGdy ;','wp-content/plugins/wordfence/images/flags/fam.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P	a7\Z<h#'),('스>j1^','wp-content/plugins/wordfence/images/flags/fi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Kqi+'),(';%X[r\\f','wp-content/plugins/wordfence/images/flags/fj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$n =}<^(]\0'),('\\I:ڲEXWO','wp-content/plugins/wordfence/images/flags/fk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TI]Q\n1'),('opUf1TeR','wp-content/plugins/wordfence/images/flags/fm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tm\'Jt?'),('h`_J#S_,R','wp-content/plugins/wordfence/images/flags/fo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e^KIV'),('Yօ4:+X[Z\Z','wp-content/plugins/wordfence/images/flags/fr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%}2K'),(':\"̏%^@j<','wp-content/plugins/wordfence/images/flags/ga.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ed\Z'),('{µ6\n!ĵ','wp-content/plugins/wordfence/images/flags/gb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?Ig*\Z'),('t;Q<er','wp-content/plugins/wordfence/images/flags/gd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?B~̚WVr.9'),('bu/~Iք9','wp-content/plugins/wordfence/images/flags/ge.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h!4:R'),('voFXc%m/','wp-content/plugins/wordfence/images/flags/gf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$-[SD]'),('%S|O@su','wp-content/plugins/wordfence/images/flags/gg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','**Ot3̇h'),(',M9[Iv-Q','wp-content/plugins/wordfence/images/flags/gh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7KzxnFn'),('5.;l','wp-content/plugins/wordfence/images/flags/gi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rVeOK*a\\'),('&iN$JoFr-','wp-content/plugins/wordfence/images/flags/gl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(kt5*\ril'),('\\&Ĩfo݈gW','wp-content/plugins/wordfence/images/flags/gm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1{Y0]'),('1(\\Ioh','wp-content/plugins/wordfence/images/flags/gn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{>zI	'),('a#n2fl\\	','wp-content/plugins/wordfence/images/flags/gp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','©ըm g'),('vOԟφ:Dpg','wp-content/plugins/wordfence/images/flags/gq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؟.Ծj)q\"'),('-PU\r[E','wp-content/plugins/wordfence/images/flags/gr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\rCu-{'),('^EjFρޅ0','wp-content/plugins/wordfence/images/flags/gs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b pHsC}'),('Pƈv$','wp-content/plugins/wordfence/images/flags/gt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'vq#\0@'),('FY$\\8^X','wp-content/plugins/wordfence/images/flags/gu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<Xãy̆@'),('9^+tk','wp-content/plugins/wordfence/images/flags/gw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Mj++ONzp'),('n8횃','wp-content/plugins/wordfence/images/flags/gy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','**\"G|u'),('hDUX\r|','wp-content/plugins/wordfence/images/flags/hk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rYFf̆U7'),('sߡkб','wp-content/plugins/wordfence/images/flags/hn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1EP+v'),('kH|','wp-content/plugins/wordfence/images/flags/hr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','37'),('%J\'Lٸ','wp-content/plugins/wordfence/images/flags/ht.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!!wղHT?'),('L \r+q|h|','wp-content/plugins/wordfence/images/flags/hu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&\";d>]pG@!d'),('3\nV>O9Ǫ	 N','wp-content/plugins/wordfence/images/flags/id.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','t3m'),('݌)ƫ%Z','wp-content/plugins/wordfence/images/flags/ie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O&-q9fFx'),('=5@N%md','wp-content/plugins/wordfence/images/flags/il.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UPO\nFz'),(':6M$΢]pm','wp-content/plugins/wordfence/images/flags/im.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':K,}0Rs'),('ݘ`b1tX\ZZ K/','wp-content/plugins/wordfence/images/flags/in.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sY'),('Q~jJD','wp-content/plugins/wordfence/images/flags/io.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rҲWWr'),('Rp5Si','wp-content/plugins/wordfence/images/flags/iq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!\ns7'),('/k\n啗ˁ8+','wp-content/plugins/wordfence/images/flags/ir.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','knoT\'{K['),('q۩	e','wp-content/plugins/wordfence/images/flags/is.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`)ǷhE'),('X2,IEd{<','wp-content/plugins/wordfence/images/flags/it.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!%Xb̣'),('A<?׎cQ','wp-content/plugins/wordfence/images/flags/je.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r;O0]4j'),('7=$=h','wp-content/plugins/wordfence/images/flags/jm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nrmϓ6fk\"'),('\\vvڡwx^4C1','wp-content/plugins/wordfence/images/flags/jo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ӎ1W'),('R)ԡ`Pgٴޮ^','wp-content/plugins/wordfence/images/flags/jp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^4>BDY'),('pZV_	]l{','wp-content/plugins/wordfence/images/flags/ke.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oE5JUIW>sZ'),('o<I}\n{`s','wp-content/plugins/wordfence/images/flags/kg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','򸥬\rͧ5'),('=Gٗ\0C','wp-content/plugins/wordfence/images/flags/kh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C&}r@sHLO'),(']g> ӡ','wp-content/plugins/wordfence/images/flags/ki.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[#0+Ag'),('-.ze8','wp-content/plugins/wordfence/images/flags/km.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v2j\ZI@	N\\'),('ST+)Μ<Ce2\r','wp-content/plugins/wordfence/images/flags/kn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Hp(\"I['),('iY:\0$z]','wp-content/plugins/wordfence/images/flags/kp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8[!zLEt'),('&K,h_R','wp-content/plugins/wordfence/images/flags/kr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','re`1j?;f'),('W3|xӕr֜','wp-content/plugins/wordfence/images/flags/kw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lݺaft5'),('bhָ{-w(','wp-content/plugins/wordfence/images/flags/ky.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','늤>@|gH3'),('\nos{8oY?','wp-content/plugins/wordfence/images/flags/kz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z߀9\r'),('tI@,([','wp-content/plugins/wordfence/images/flags/la.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZrΐB\0/>~i'),('Ө::ǞFA','wp-content/plugins/wordfence/images/flags/lb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H(W8JW'),('a?X@','wp-content/plugins/wordfence/images/flags/lc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fFnmU%\\'),('`rA','wp-content/plugins/wordfence/images/flags/li.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~[k\"4{;'),('Nu.N3XT','wp-content/plugins/wordfence/images/flags/lk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FqO.aA'),('Yf nرy','wp-content/plugins/wordfence/images/flags/lr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J:x^b;#uc'),('$Z<0aeNT','wp-content/plugins/wordfence/images/flags/ls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','txE&ʮm\rn'),('m}+s]','wp-content/plugins/wordfence/images/flags/lt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5.%Vzl'),('9Arm\rX','wp-content/plugins/wordfence/images/flags/lu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ڡyn7x'),('^L9ZY3q','wp-content/plugins/wordfence/images/flags/lv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Cm|._'),('hMxh\'','wp-content/plugins/wordfence/images/flags/ly.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C̲ۨb#~<Q'),('?zO{9&~=v','wp-content/plugins/wordfence/images/flags/ma.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+~ɢ̓PxU'),('nIA	R6	}\Z\n','wp-content/plugins/wordfence/images/flags/mc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(	FVyǱ.m'),('/?[xL\"N','wp-content/plugins/wordfence/images/flags/md.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(ok=ha'),('<^^i6Ե5','wp-content/plugins/wordfence/images/flags/me.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZsL5Uʢ'),('M[\"\\:P','wp-content/plugins/wordfence/images/flags/mg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ě|d>'),('xxPyܪ1','wp-content/plugins/wordfence/images/flags/mh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KQ:CYM'),(' >eHb\0','wp-content/plugins/wordfence/images/flags/mk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0\n-o'),('%J!Ӧ[,}VǕ','wp-content/plugins/wordfence/images/flags/ml.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V1~ex'),(']Zs@~OQ','wp-content/plugins/wordfence/images/flags/mm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uk0IZAfށo'),('ߥ䓿~;Q2D','wp-content/plugins/wordfence/images/flags/mn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C\']jn`'),('f<u@ܭ','wp-content/plugins/wordfence/images/flags/mo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fO};ë1'),('br>','wp-content/plugins/wordfence/images/flags/mp.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','冒;A&n='),('*_LfV}xfN','wp-content/plugins/wordfence/images/flags/mq.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?H\n \rp;IE'),('@$\"\rf(7U&','wp-content/plugins/wordfence/images/flags/mr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%{m\\x'),('kF3lt','wp-content/plugins/wordfence/images/flags/ms.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ޛyǨxW'),('&L!}Vm `','wp-content/plugins/wordfence/images/flags/mt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RdZP|iQމ{'),('֮xb=4@ t%','wp-content/plugins/wordfence/images/flags/mu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ph\'A(l'),('	[0079xv','wp-content/plugins/wordfence/images/flags/mv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{)jJ{lz'),('(wZBNڸ]NSS5','wp-content/plugins/wordfence/images/flags/mw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';R1ߴQJv'),('Zv8~`֬_','wp-content/plugins/wordfence/images/flags/mx.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\?aҫK/ҋ'),('aS\ZM[h}#H','wp-content/plugins/wordfence/images/flags/my.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Zf '),('JgV#OY','wp-content/plugins/wordfence/images/flags/mz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"4ȭ7'),('q\0.޷\Z`-','wp-content/plugins/wordfence/images/flags/na.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1=Xu4'),('SQT#kNw','wp-content/plugins/wordfence/images/flags/nc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nOxm|'),(',#N2m\\bj','wp-content/plugins/wordfence/images/flags/ne.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̭BInC s~'),('zDZ؉Jp','wp-content/plugins/wordfence/images/flags/nf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5E5h'),('HuQ{y	W$ ','wp-content/plugins/wordfence/images/flags/ng.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A3[EN\"рY'),('d4.m4עV)','wp-content/plugins/wordfence/images/flags/ni.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ԏ,fT'),('fЭJ6-u]','wp-content/plugins/wordfence/images/flags/nl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Kɞl\r'),('v%Q*[Gw','wp-content/plugins/wordfence/images/flags/no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ҒTǯWF5~'),('MCSڒ%,<\'L','wp-content/plugins/wordfence/images/flags/np.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.]H2{'),('i8LO尞sL<','wp-content/plugins/wordfence/images/flags/nr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\ZԶ|'),('\')qZzs1<L','wp-content/plugins/wordfence/images/flags/nu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(mß,G'),('\'yx\Zu@\\','wp-content/plugins/wordfence/images/flags/nz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H/ ^\"q\\t&'),('<ʍ8P\0\\=\0+','wp-content/plugins/wordfence/images/flags/om.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,;YO]&'),('L[LA$8);','wp-content/plugins/wordfence/images/flags/pa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\nrg@<n'),('(MR;oTPE','wp-content/plugins/wordfence/images/flags/pe.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<<$,E+<('),('3\Z~s㸆18)/','wp-content/plugins/wordfence/images/flags/pf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9}=T{f\\'),('ʱ\'AK\"d;3','wp-content/plugins/wordfence/images/flags/pg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ɂ%X;{Eҳ]'),('_&O~9RG','wp-content/plugins/wordfence/images/flags/ph.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ل@ܥ){v'),('`ڮ/ZE\0]܋3P','wp-content/plugins/wordfence/images/flags/pk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p,k'),('\"m韟o','wp-content/plugins/wordfence/images/flags/pl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s풑-'),('>%pm','wp-content/plugins/wordfence/images/flags/pm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',\nKFN'),(':ZW_*if','wp-content/plugins/wordfence/images/flags/pn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s;;Nn䩘'),('iCXI\n3','wp-content/plugins/wordfence/images/flags/pr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IdMNhJ#'),('3癗@<','wp-content/plugins/wordfence/images/flags/ps.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','bHVzk1j'),('ve_a̴1','wp-content/plugins/wordfence/images/flags/pt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T:x'),('¹S2%=er>','wp-content/plugins/wordfence/images/flags/pw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V0\0L'),('!gۇC;F\ZT','wp-content/plugins/wordfence/images/flags/py.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\nE)\ZM'),('TiqTl}','wp-content/plugins/wordfence/images/flags/qa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E2́|n'),('O:23F`,(2','wp-content/plugins/wordfence/images/flags/re.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ph,,i-\r'),('Ԡ$ֽ*:ܥ','wp-content/plugins/wordfence/images/flags/ro.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5VZʹ_݋'),('?mf\\-h8T','wp-content/plugins/wordfence/images/flags/rs.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nPe\ZS<_'),('FsT&\'|','wp-content/plugins/wordfence/images/flags/ru.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q?p2^%k\Z#'),('xʈp>kOz','wp-content/plugins/wordfence/images/flags/rw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ł/T_nQE*Pk'),('d#a8-','wp-content/plugins/wordfence/images/flags/sa.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W\\LbUCh5V'),('zlG>?~m','wp-content/plugins/wordfence/images/flags/sb.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l<)J+'),('˲J0\\V4','wp-content/plugins/wordfence/images/flags/sc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@l+^+9U'),('?bU,I','wp-content/plugins/wordfence/images/flags/scotland.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y5bG&'),('/jSACJF','wp-content/plugins/wordfence/images/flags/sd.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8ڶ-,p'),('v\Z))`o','wp-content/plugins/wordfence/images/flags/se.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']eFB/$Iri'),('	^d7[xC','wp-content/plugins/wordfence/images/flags/sg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ӳjXfƚ i'),('tO$ҥh\r\Z','wp-content/plugins/wordfence/images/flags/sh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>G	{nդ['),('& 6Ӿ1S','wp-content/plugins/wordfence/images/flags/si.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rϕ5`}䋅%{'),('WuRPbIH','wp-content/plugins/wordfence/images/flags/sk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x3i2fV.V]G'),('7+8dc@$','wp-content/plugins/wordfence/images/flags/sl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.B`u,&$1'),('潂mF=H{O,','wp-content/plugins/wordfence/images/flags/sm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@7fߧ84,e'),('nZ&YwLV<','wp-content/plugins/wordfence/images/flags/sn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','컯uIڍt'),('e:̳ ','wp-content/plugins/wordfence/images/flags/so.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wc@y;W&KH'),('&YMRz0vAo2','wp-content/plugins/wordfence/images/flags/sprite-des-128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmFQr'),('N-#Z3k8T','wp-content/plugins/wordfence/images/flags/sprite-des-16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3JEE4M`kf'),('H&=b','wp-content/plugins/wordfence/images/flags/sprite-des-256.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U5!B<R2|B'),('ZbWe`','wp-content/plugins/wordfence/images/flags/sprite-des-32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#5Paf\''),('៵@~G52','wp-content/plugins/wordfence/images/flags/sprite-des-64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+\n4F6.\\j	$R'),('fUڬQ7l','wp-content/plugins/wordfence/images/flags/sprite-des.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9VΙT3uq\"'),('P)3t;ޯ','wp-content/plugins/wordfence/images/flags/sprite-des2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MdTWcp,'),('w}%euV','wp-content/plugins/wordfence/images/flags/sprite2.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','} oĘ_2'),('̹9BFht,<F','wp-content/plugins/wordfence/images/flags/sprite2.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m3;'),('o2-bt\rd','wp-content/plugins/wordfence/images/flags/sr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AapL<zu'),('\\?+VQa@l','wp-content/plugins/wordfence/images/flags/st.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RK{< '),('n94cok','wp-content/plugins/wordfence/images/flags/sv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v8mkDa\0S6'),(',?hgchˡX@','wp-content/plugins/wordfence/images/flags/sy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<6F_.6E=TN'),('5ݵCt4A','wp-content/plugins/wordfence/images/flags/sz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9Y/X9'),('V69sC!?','wp-content/plugins/wordfence/images/flags/tc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G/	QJ'),(']uFa>','wp-content/plugins/wordfence/images/flags/td.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9l0#8;6'),(']A6p}0v3L','wp-content/plugins/wordfence/images/flags/tf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')v=^4sʉ<'),('@`uf\'','wp-content/plugins/wordfence/images/flags/tg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vto^h'),('DNC|\\Kd7','wp-content/plugins/wordfence/images/flags/th.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-(o)o'),('?~\"S%ɞ','wp-content/plugins/wordfence/images/flags/tj.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WnXd,Djn'),('\0mU#','wp-content/plugins/wordfence/images/flags/tk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X~kdi\\'),('qU6JΣUI>','wp-content/plugins/wordfence/images/flags/tl.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B\\X[;O\0w9 4'),('hW(g_,rGk','wp-content/plugins/wordfence/images/flags/tm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}kԶϯ1t6'),('Igbm,asYp)A9','wp-content/plugins/wordfence/images/flags/tn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3eez'),('ry)v|r','wp-content/plugins/wordfence/images/flags/to.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\'K^ejJ'),('\Z5VyƎ','wp-content/plugins/wordfence/images/flags/tr.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_Js^R'),('S-5-pau','wp-content/plugins/wordfence/images/flags/tt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r3tk9Vk'),('!A;HW','wp-content/plugins/wordfence/images/flags/tv.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eKgМl'),('\"\nk\"cjiV(','wp-content/plugins/wordfence/images/flags/tw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l7}aEY3QT'),('<*)1Yg','wp-content/plugins/wordfence/images/flags/tz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']#Dft>>'),(']혏dT\'J','wp-content/plugins/wordfence/images/flags/ua.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@sJ'),('.8{\'O2ixCQ','wp-content/plugins/wordfence/images/flags/ug.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r+YkSI-@^7n'),(':Cc*-|a4','wp-content/plugins/wordfence/images/flags/uk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(1lfB'),('yc%:o','wp-content/plugins/wordfence/images/flags/um.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=G\0	-k[ԇ'),('}3(7f\rKd','wp-content/plugins/wordfence/images/flags/us.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ŁBb/\'x'),('\\/W\"-Τ1q','wp-content/plugins/wordfence/images/flags/uy.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rCӳAL)'),('f\'\"Y˱V','wp-content/plugins/wordfence/images/flags/uz.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^zlvYi6)6|c4;'),('!z4','wp-content/plugins/wordfence/images/flags/va.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r)p؂\Zt3\0'),('gx8PMo','wp-content/plugins/wordfence/images/flags/vc.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jF\"{|0'),('ʱ1wB_/','wp-content/plugins/wordfence/images/flags/ve.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Utv9Hu\Z*a\\P'),('Sp*ǁa','wp-content/plugins/wordfence/images/flags/vg.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~U}\0$ը\0u~'),('`m[鴡ƿj','wp-content/plugins/wordfence/images/flags/vi.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~)NSϢԡ'),('۾S)9','wp-content/plugins/wordfence/images/flags/vn.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P᳗vwܶPTo'),(' S hnUdx','wp-content/plugins/wordfence/images/flags/vu.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' u%k{m͢(u'),('ε`tvS','wp-content/plugins/wordfence/images/flags/wales.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',Co{v'),('D#Ia4*xM,','wp-content/plugins/wordfence/images/flags/wf.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/c  k=O'),('`O(G7`	M@','wp-content/plugins/wordfence/images/flags/ws.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\0N=HOsT'),('~OU','wp-content/plugins/wordfence/images/flags/xk.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']Gl}$5I'),(',7m=i0`@*\\','wp-content/plugins/wordfence/images/flags/ye.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\07CK{DY)'),('ݏ97X<Թ/j\\','wp-content/plugins/wordfence/images/flags/yt.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʉrT\0h'),('[kXt9Nt','wp-content/plugins/wordfence/images/flags/za.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pCh\"ڟ.3'),('y51\\m>G','wp-content/plugins/wordfence/images/flags/zm.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n|Ϸ{>c-R'),('!xsC	ph^:&','wp-content/plugins/wordfence/images/flags/zw.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	MQ>qQ\r'),('.E[Jlx','wp-content/plugins/wordfence/images/forward_disabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M_Z?N)Ҋ:5'),('\0hKf\0','wp-content/plugins/wordfence/images/forward_enabled.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U\0/3e4e'),('窒u\rZJW+','wp-content/plugins/wordfence/images/help.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$N;\'M Y'),('٘\"Pܞ,','wp-content/plugins/wordfence/images/icons/ajax24.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P'),('\' oS','wp-content/plugins/wordfence/images/icons/ajax3.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mwߴtꍓ\'\ns'),('y&aA7]Dm','wp-content/plugins/wordfence/images/icons/ajaxRed16.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%B\ng2;'),('4=','wp-content/plugins/wordfence/images/icons/ajaxScan.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʖѴ~fi'),('j&V164','wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9 #{'),('(x*J,LÛn<K','wp-content/plugins/wordfence/images/icons/arrow_refresh.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kw``|}$G'),('6[f9? _','wp-content/plugins/wordfence/images/icons/bullet_yellow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J&ɌԔQ<'),(']*J','wp-content/plugins/wordfence/images/icons/email_go.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jEH).'),('`%{+','wp-content/plugins/wordfence/images/icons/error128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':%7!.'),('z5*\ZADZCkj','wp-content/plugins/wordfence/images/icons/magnifier.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uO{:qcV\''),('Ρ~ߓ:eo','wp-content/plugins/wordfence/images/icons/tick128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ğch4\"'),(';`$r$=','wp-content/plugins/wordfence/images/icons/warning128.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pGIt*Np='),('X@%1Ci','wp-content/plugins/wordfence/images/lightbox-controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m]a\\$'),('?z6aDz','wp-content/plugins/wordfence/images/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K:m𙗣P'),('Kjh','wp-content/plugins/wordfence/images/loading_background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'2p\nKX'),('ﾘQ)B\n,','wp-content/plugins/wordfence/images/loading_large.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y{ObUW~Y˙'),('s♼{DR[k1I','wp-content/plugins/wordfence/images/logo.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'9%(wdh'),('V,U3','wp-content/plugins/wordfence/images/rr_premium.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"3 ,2'),('#9\rPuLk0kU','wp-content/plugins/wordfence/images/rr_sitecleaning.jpg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')\r\0)5'),('QoH*(','wp-content/plugins/wordfence/images/sort_asc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I+ƾ='),('lXwB*XW','wp-content/plugins/wordfence/images/sort_asc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oɧ*X9e'),('?Yvq_ۮXO','wp-content/plugins/wordfence/images/sort_both.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%BQxSV.D'),('7c.$P!\"򹚆','wp-content/plugins/wordfence/images/sort_desc.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<j_ˊR2'),('xy!q).ˉ\"','wp-content/plugins/wordfence/images/sort_desc_disabled.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m͟r 9'),(':mwvK\rZ~','wp-content/plugins/wordfence/images/wordfence-logo-16x16.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y~F,N8zO2'),('FOۣg','wp-content/plugins/wordfence/images/wordfence-logo-32x32.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@ۯIuU'),('jڿt1u}','wp-content/plugins/wordfence/images/wordfence-logo-64x64.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v^IN/g@\\u'),('zRu	;','wp-content/plugins/wordfence/images/wordfenceFalcon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\'m_0xZb-%'),('=;8N.E3','wp-content/plugins/wordfence/images/wordfenceFalconEngineSmall.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s*f&@7=J'),('d[84ky','wp-content/plugins/wordfence/images/wordfenceFalconSmall.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>hjKw~'),('E(zRA1;eNqD3','wp-content/plugins/wordfence/index.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2eª\\og'),('7<LU39TU3Əs','wp-content/plugins/wordfence/js/admin.ajaxWatcher.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4B;0f=Si6'),('\"[Q	','wp-content/plugins/wordfence/js/admin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ xqgWa$'),(',{HĬq','wp-content/plugins/wordfence/js/admin.liveTraffic.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#,3\0hdD'),('[Q\"ABb.Q:','wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#kzI]'),('wA/	ĉ\\q','wp-content/plugins/wordfence/js/jquery.colorbox-min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4?JǃG`\nNxl'),('EN06','wp-content/plugins/wordfence/js/jquery.dataTables.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aGz׳'),('h~x`h~?','wp-content/plugins/wordfence/js/jquery.qrcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ԹXp`me<'),('a\Zcr2','wp-content/plugins/wordfence/js/jquery.tmpl.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\}\"7ڷDZ'),('˄v+nG','wp-content/plugins/wordfence/js/jquery.tools.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':-Eՠx$B'),('He0|F0$ؕ','wp-content/plugins/wordfence/js/knockout-3.3.0.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_B8lc^'),('XiU1`]','wp-content/plugins/wordfence/js/perf.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uQ\"wFR@p'),('}05MZ','wp-content/plugins/wordfence/js/select2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' bG.iTRU'),('y/dzQg','wp-content/plugins/wordfence/js/tourTip.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$A\Z7b8Q'),('R1?YVDt','wp-content/plugins/wordfence/lib/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L'),('\'FEAvQMv','wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\r5]xVI\'i'),('y1-/fIנ','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','±tT2y%p'),('-n$.#g%}','wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','puQ: *'),('`c0\\3','wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O\"%éODZj'),('ۖJBwC|Mv','wp-content/plugins/wordfence/lib/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R|$V;P'),('&)-â\ZΙp','wp-content/plugins/wordfence/lib/GeoIP.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<01-Q\r'),('gRT6KX\Z','wp-content/plugins/wordfence/lib/GeoIPv6.dat',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h[\0d`Ф/'),('J![W6ݧ','wp-content/plugins/wordfence/lib/IPTraf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N݄\ntҍ'),('Kߺb','wp-content/plugins/wordfence/lib/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?HY/2?T'),('SP;^ƭzI','wp-content/plugins/wordfence/lib/conntest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j\"r\r'),('fNdL','wp-content/plugins/wordfence/lib/cronview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WjۚمO'),('Ƿ\nH','wp-content/plugins/wordfence/lib/dashboard.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lx>zKKb['),('6Ri*5æ','wp-content/plugins/wordfence/lib/dbview.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(Ded:]'),(')\0e_5=','wp-content/plugins/wordfence/lib/diffResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IYY8\\@6d\'r#'),('#\n/PZ~h','wp-content/plugins/wordfence/lib/email_genericAlert.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IavgNטL'),('Fe	57[','wp-content/plugins/wordfence/lib/email_newIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\01_\"	'),('t+N-̒','wp-content/plugins/wordfence/lib/email_passwdChanged.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IwKmKa{į;'),('\'?h	}Y\0IG','wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*GsWcȐ3'),('^u}G','wp-content/plugins/wordfence/lib/email_unlockRequest.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' E28.63R'),('ؐV\\=lSlJ&','wp-content/plugins/wordfence/lib/menuHeader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vBp_0*k8oG'),('RLSf,@L=.','wp-content/plugins/wordfence/lib/menu_activity.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{8_{2'),('+01','wp-content/plugins/wordfence/lib/menu_blockedIPs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_H{il\ZC+'),('H`HǛO.ViC','wp-content/plugins/wordfence/lib/menu_countryBlocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CDi㪗B8qgR'),('\0^9Nt\"tu','wp-content/plugins/wordfence/lib/menu_diagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yF/q$'),('WM{h(','wp-content/plugins/wordfence/lib/menu_options.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DPKxڊ<ykK'),('Kz=G8i','wp-content/plugins/wordfence/lib/menu_passwd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5^&JD'),('->]2j','wp-content/plugins/wordfence/lib/menu_rangeBlocking.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rMIR<7i2'),('6cI	@۞o','wp-content/plugins/wordfence/lib/menu_scan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_HLMYO'),(' *s\\Oil','wp-content/plugins/wordfence/lib/menu_scanSchedule.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xGe\'SJ'),('|B5Y','wp-content/plugins/wordfence/lib/menu_sitePerf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a2ѽju҄ᴺ'),('A	!fYj=	qQ|H','wp-content/plugins/wordfence/lib/menu_sitePerfStats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I_i߶lR4'),('n4ۆx','wp-content/plugins/wordfence/lib/menu_twoFactor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_&|j (T'),('\0$$J','wp-content/plugins/wordfence/lib/menu_waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',>yk(Q'),('Ŋ`7Ta','wp-content/plugins/wordfence/lib/menu_whois.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*`\nxY3'),('#>҆Kl','wp-content/plugins/wordfence/lib/pageTitle.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HhI!S??k'),('~ӤwJ̼.','wp-content/plugins/wordfence/lib/schedWeekEntry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D1D1 .V'),('F{A','wp-content/plugins/wordfence/lib/sysinfo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZiTT2kU}٤'),('M~^x;','wp-content/plugins/wordfence/lib/unknownFiles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A{Uz['),('LR7QToG|{','wp-content/plugins/wordfence/lib/viewFullActivityLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','݉\0waY%P'),('ٵ\nhJxdvԃ]','wp-content/plugins/wordfence/lib/wf503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(7H'),('2]hqu:T6EU','wp-content/plugins/wordfence/lib/wfAPI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!^J)d'),('#疭ۭv\"M','wp-content/plugins/wordfence/lib/wfAction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@_>js'),('Ɇ8pŻѵV','wp-content/plugins/wordfence/lib/wfActivityReport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m`1\"YpJ+$'),('ދ1Fa','wp-content/plugins/wordfence/lib/wfArray.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','emyVM\Z'),('-=QCwtnL#','wp-content/plugins/wordfence/lib/wfBrowscap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q?SXl4Z>'),('XJp','wp-content/plugins/wordfence/lib/wfBrowscapCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','))Kϻ'),('1]M|KFZ','wp-content/plugins/wordfence/lib/wfBulkCountries.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}M슱_#9'),('ґ-\r{,','wp-content/plugins/wordfence/lib/wfCache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%^Pjł8'),('Z4<n?e','wp-content/plugins/wordfence/lib/wfConfig.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H:Za.>E'),('B6[sM','wp-content/plugins/wordfence/lib/wfCountryMap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']hF3k;u'),('8ÛZEQ$}UPT','wp-content/plugins/wordfence/lib/wfCrawl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LU/m`A\Z'),('xβЦA	<','wp-content/plugins/wordfence/lib/wfCrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wk|)4+'),('J^\Z7uGk+','wp-content/plugins/wordfence/lib/wfDB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c\'w8YXx;'),('l9=h,>&','wp-content/plugins/wordfence/lib/wfDiagnostic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĘW>\r\n	}'),('F\ZC1P','wp-content/plugins/wordfence/lib/wfDict.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*6Att#'),('A0ff` Kǁ}','wp-content/plugins/wordfence/lib/wfDirectoryIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','켘~d[!LA/9'),('=9))\\','wp-content/plugins/wordfence/lib/wfGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3(*\"m`>k\Z'),('q5@*=&\\X','wp-content/plugins/wordfence/lib/wfHelperBin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';!ȍ4QX#'),('PM\ZI̸ݭY`r','wp-content/plugins/wordfence/lib/wfHelperString.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OVFaDV44ܪ'),('ikCT,','wp-content/plugins/wordfence/lib/wfIPWhitelist.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ia|0\n5a'),('jsw2pqS','wp-content/plugins/wordfence/lib/wfIssues.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"XjC6X(QL'),('ؠ]fP','wp-content/plugins/wordfence/lib/wfLockedOut.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"yxer\"'),('w+\"+$^','wp-content/plugins/wordfence/lib/wfLog.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zQ0=V6M$.['),('\\h RX<C','wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G,ΰڏ'),('^k֪Dv6R','wp-content/plugins/wordfence/lib/wfRate.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\\XE\nW\0'),('ތt+\\+XaZU','wp-content/plugins/wordfence/lib/wfScan.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s~K^!hw\n_'),('6XԪ4[_=t','wp-content/plugins/wordfence/lib/wfScanEngine.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2R%JĨ@'),('bHzfWgw','wp-content/plugins/wordfence/lib/wfSchema.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\0>=l;qlw'),('hLJHX#0','wp-content/plugins/wordfence/lib/wfUnlockMsg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h\r>[?RgTe'),('e\\1tƋ<	','wp-content/plugins/wordfence/lib/wfUpdateCheck.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4& *9\"'),('Q49LzJ','wp-content/plugins/wordfence/lib/wfUtils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a_aq5'),('eŐnA','wp-content/plugins/wordfence/lib/wfView.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','⇲*!P\'|%\Z'),('v{Cҧ4I','wp-content/plugins/wordfence/lib/wfViewResult.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	qNK80O'),('ݡ=NxK`*','wp-content/plugins/wordfence/lib/wordfenceClass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ߩ\"#([p'),('kHm1`0ѹ_','wp-content/plugins/wordfence/lib/wordfenceConstants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֑巼[t&1|dw'),('X-4J_3','wp-content/plugins/wordfence/lib/wordfenceHash.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&xYeI)<'),('z|*6S\\53','wp-content/plugins/wordfence/lib/wordfenceScanner.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǩùpr+7$'),('h<]OpNCƴ','wp-content/plugins/wordfence/lib/wordfenceURLHoover.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\n+.8G~-R;'),('vFI2hn','wp-content/plugins/wordfence/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ٰ\r$h;9'),(';Lt׬Cɣ','wp-content/plugins/wordfence/tmp/.htaccess',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iz~i,L'),('=S6aXo,2','wp-content/plugins/wordfence/vendor/autoload.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f\\o	jk_'),('_k4!*}݄ ','wp-content/plugins/wordfence/vendor/composer/ClassLoader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>BaXwa;'),('0&Y','wp-content/plugins/wordfence/vendor/composer/LICENSE',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JJ˭9FN=O'),('\"0rN1M#','wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EӤ㭇Mg'),('t!\Z%\n','wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5,}vĨ3G)'),('s˱Y*uO','wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':\0>}LQ\0'),('~Ӹbc\Z$@$*','wp-content/plugins/wordfence/vendor/composer/autoload_real.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','c@qxy=`'),(']mٲ	▭','wp-content/plugins/wordfence/vendor/composer/installed.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OfI8xE\Z'),('{Pzҹaeӧ9','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K!೚Rlq`'),('~iI;ݭ]AS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x-;<B'),('nvZYV','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\'r\'T_'),('BJOzD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZTַ?*=቎v%'),('Pdc3','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kYs\Z칱u'),('^Q6lJ!	ͦ','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JaD5Hr'),('߹V=\"#n	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I	=~i'),('rMܴ-\nS','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rcmmjik'),('X/\0	','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2Hs=F᭝\nnH'),('n09jv8\"','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/gȅ%nW!'),('ҭ_VlKg!p1','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*P)ȵ'),('!O4bCRRfO','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1BWiN*'),('c[b]ݽJF','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q:6\\ȅ[z'),('СqD֚?iX','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3BifJ	%'),('\'`F̔~Ė','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}Jg!fyL'),('<xB','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4M+y8YrkigG'),('8K ?O]ʹY','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZlY^[F\r2xʻ'),('Aػ#\"j','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zoo>Uw('),('Q6K4H','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','뱝R|$d'),('j)nQ8ޮD','wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NIf'),('\r#Dje]w','wp-content/plugins/wordfence/views/marketing/rightrail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':j˭RLW#g'),('T??:q׮Pah\'','wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8NEeޮ'),('HcIJ%H','wp-content/plugins/wordfence/views/reports/activity-report-email.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','he:sұxk'),('Nd#R+r\0s[','wp-content/plugins/wordfence/views/reports/activity-report.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zh \\m4܂\rF'),('֋8[0ʊ','wp-content/plugins/wordfence/views/waf/debug.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','؍Ga_&#b'),('Ha+̰I','wp-content/plugins/wordfence/waf/bootstrap.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@(PyCՂD\n '),('6>l\rѲY','wp-content/plugins/wordfence/waf/wfWAFGeoIP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m#pà\'w|fXu'),('\0D`8Rɲ%','wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L;,Cp'),('%7娳','wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f9E3\Zr1<'),('E#-v376Ť','wp-content/plugins/wordfence/wordfence.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mTp{}	'),(' 0\\','wp-content/themes/Divi/404.php',0,'nؤ;a\\\ng⚕','nؤ;a\\\ng⚕'),('\n%ABKK1{ ','wp-content/themes/Divi/comments.php',0,'ܢ\0\06w','ܢ\0\06w'),('\r,8ǖ<ET','wp-content/themes/Divi/core/admin/includes/assets.php',0,'Oƨ9TtR','Oƨ9TtR'),('\r&V3?IDRKF','wp-content/themes/Divi/core/admin/includes/cache.php',0,'J/$C Ia]','J/$C Ia]'),('(ę\"-7j/-','wp-content/themes/Divi/core/admin/includes/class-cache.php',0,'oEBBb(','oEBBb('),('fwS6O2','wp-content/themes/Divi/core/admin/includes/class-portability.php',0,'j\ng#I(','j\ng#I('),('SAǷɠT]','wp-content/themes/Divi/core/admin/includes/class-updates.php',0,'3^IdR[2\Zm','3^IdR[2\Zm'),('њ5q]md9','wp-content/themes/Divi/core/admin/includes/portability.php',0,'OZ-¾((5','OZ-¾((5'),('>;-Mo+vR','wp-content/themes/Divi/core/admin/js/core.js',0,'NE){+m','NE){+m'),('\0\'as5','wp-content/themes/Divi/core/admin/js/portability.js',0,'6\'#t\01M','6\'#t\01M'),('\n&oXO6','wp-content/themes/Divi/core/components.php',0,'<gGK!6qw޵','<gGK!6qw޵'),('Iqq)E%pl','wp-content/themes/Divi/core/functions.php',0,'N~e	¢\0i','N~e	¢\0i'),('VBO5.Ae2','wp-content/themes/Divi/core/init.php',0,'\0l\"u-JDJRF','\0l\"u-JDJRF'),('͙WfE','wp-content/themes/Divi/core/updates_init.php',0,':-TnO~H',':-TnO~H'),('f獍\r\\','wp-content/themes/Divi/epanel/core_functions.php',0,'	(mGf?>0U','	(mGf?>0U'),('\0felҝZ;','wp-content/themes/Divi/epanel/custom_functions.php',0,'w8z1','w8z1'),('Y}w','wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js',0,'LG\Z#e','LG\Z#e'),('}Ԩrvy\0','wp-content/themes/Divi/epanel/js/checkbox.js',0,'opoe','opoe'),('}tb:zF\"@','wp-content/themes/Divi/epanel/js/colorpicker.js',0,'|rpP\r5ys^*	%','|rpP\r5ys^*	%'),('AieMK!','wp-content/themes/Divi/epanel/js/custom_uploader.js',0,'/gҏs$YhD','/gҏs$YhD'),('oFW$4NAE>','wp-content/themes/Divi/epanel/js/eye.js',0,'#0ޝ&\Z噐','#0ޝ&\Z噐'),('Be*&l*j','wp-content/themes/Divi/epanel/js/functions-init.js',0,'?h\"}t','?h\"}t'),('V\\;!NNu','wp-content/themes/Divi/epanel/js/layout.js',0,'Z)\nLHhcYݣ','Z)\nLHhcYݣ'),('7T؀e|=:G','wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js',0,'bSUnpM4=Y`','bSUnpM4=Y`'),('<c6<','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.dev.js',0,'\\$v=>)\0\0E','\\$v=>)\0\0E'),('8yA0M.D','wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js',0,'gf','gf'),('\rnZo','wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.dev.js',0,'f}_֤@0G-L','f}_֤@0G-L'),('FRuHo','wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js',0,'F> CDҴ_\'','F> CDҴ_\''),('FXť4öA','wp-content/themes/Divi/epanel/shortcodes/shortcodes.php',0,'ҒyԖn','ҒyԖn'),('%0H2߷','wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php',0,'QqKFG|\Z','QqKFG|\Z'),('Va}s]','wp-content/themes/Divi/footer.php',0,'A\Z,iAwY','A\Z,iAwY'),('%4Hd','wp-content/themes/Divi/functions.php',0,'ȟ\"3&.2;H','ȟ\"3&.2;H'),('i4}n1a','wp-content/themes/Divi/header.php',0,'IYbwQj0','IYbwQj0'),('o23d;_Y<T}9','wp-content/themes/Divi/includes/builder/ab-testing.php',0,'\\\nťfQr2+/','\\\nťfQr2+/'),('mĥQ+NФJ','wp-content/themes/Divi/includes/builder/class-et-builder-element.php',0,'Skv!ޡ*]#8V','Skv!ޡ*]#8V'),('\nH|:Dc0','wp-content/themes/Divi/includes/builder/class-et-global-settings.php',0,'d\Z`{Zv{ ','d\Z`{Zv{ '),('Xa s\n*LlAg','wp-content/themes/Divi/includes/builder/comments_template.php',0,'e%r|{pu%6(','e%r|{pu%6('),('\0\0ߐUC&','wp-content/themes/Divi/includes/builder/core.php',0,'_oXn!X?Kͣ4','_oXn!X?Kͣ4'),('R2$tED6','wp-content/themes/Divi/includes/builder/framework.php',0,'gA&','gA&'),(')T1KUqc)','wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/scripts/failure_notice.js',0,'ІaINu','ІaINu'),('FcZ8cYPr','wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/vendors/plugins/emoticons/plugin.min.js',0,'We	uH_WL)','We	uH_WL)'),('*`UIx+2Ⱥ','wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/vendors/tinymce.min.js',0,'A>t@olg','A>t@olg'),('i\rZe','wp-content/themes/Divi/includes/builder/frontend-builder/app/bundle.js',0,'Dp!}4Xm','Dp!}4Xm'),('FʡV\r{WM','wp-content/themes/Divi/includes/builder/frontend-builder/assets.php',0,'I	.H$oqTj','I	.H$oqTj'),('/uɸi	)','wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php',0,'m=]XrZ_±','m=]XrZ_±'),('~JI^HK','wp-content/themes/Divi/includes/builder/frontend-builder/init.php',0,'och\"c\rh<','och\"c\rh<'),('lBj2','wp-content/themes/Divi/includes/builder/frontend-builder/view.php',0,'8n8b4ZY','8n8b4ZY'),('H!d{\0','wp-content/themes/Divi/includes/builder/functions.php',0,'q-#X','q-#X'),('	9{Q*','wp-content/themes/Divi/includes/builder/layouts.php',0,'8+~x+ʮ$','8+~x+ʮ$'),('g3\n?σ21','wp-content/themes/Divi/includes/builder/main-modules.php',0,'/d.{߸.','/d.{߸.'),('7X>h19ms','wp-content/themes/Divi/includes/builder/main-structure-elements.php',0,'	(SlG<}v','	(SlG<}v'),('\'vwy*F','wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js',0,'*9Wip1u&','*9Wip1u&'),('A+ q20Y','wp-content/themes/Divi/includes/builder/scripts/advanced_options.js',0,'vEmw!rZ','vEmw!rZ'),('Tg@p@\0','wp-content/themes/Divi/includes/builder/scripts/builder.js',0,'(uvRExE셉','(uvRExE셉'),('h','wp-content/themes/Divi/includes/builder/scripts/cache_notice.js',0,'Q>b','Q>b'),('ڠ{KC2tѫ[','wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js',0,'\r0`\ZZ= 5T(','\r0`\ZZ= 5T('),('\'_3\n_t','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js',0,'#)(jMnC8X','#)(jMnC8X'),('5Y92*BHh','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js',0,'(g!~!뿪','(g!~!뿪'),('OR\'fR','wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js',0,'AO$S','AO$S'),('p\r.1D\n','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js',0,'3\nFG-X?','3\nFG-X?'),(')>2\Zӧ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js',0,'	Ao n~','	Ao n~'),('i3~','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js',0,'2IEAG\rA','2IEAG\rA'),('MRaΫrwgČ','wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js',0,'GArdY|y˓','GArdY|y˓'),('cӭRXba1lT','wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js',0,'2H)nB䔘\Z','2H)nB䔘\Z'),('w[@hS','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js',0,'8jsyQȋ','8jsyQȋ'),('L++0O_j','wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js',0,'bSUnpM4=Y`','bSUnpM4=Y`'),('c\0Γ8Io}','wp-content/themes/Divi/includes/builder/scripts/failure_notice.js',0,'4Mi\'','4Mi\''),('9?7V30Ư','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js',0,'_\0<]`u','_\0<]`u'),('`P%5W}','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js',0,'uRfIZ〭/','uRfIZ〭/'),('&?jk3>L','wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js',0,'l\\qB}','l\\qB}'),('S\ZW]eM','wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js',0,'c~f{#\Zc','c~f{#\Zc'),('Sdk8qF','wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js',0,'?dhSi,:','?dhSi,:'),('3r%Bwz.@q','wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js',0,'IH\n7o $','IH\n7o $'),('؇3:OA()','wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js',0,'ߪx]y0F93','ߪx]y0F93'),('c?Tٓg\ZG','wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js',0,'tLgKUڛ','tLgKUڛ'),('m߷FQoڅ\n(f','wp-content/themes/Divi/includes/builder/scripts/library_scripts.js',0,'	<>9IA$','	<>9IA$'),('BJxګ)J','wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js',0,'`3\r<;m\0$','`3\r<;m\0$'),('!+?:]c~','wp-content/themes/Divi/includes/builder/scripts/roles_admin.js',0,'~s۱&5[=^?','~s۱&5[=^?'),('Q՗2%:','wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js',0,'FS[ ֶ1','FS[ ֶ1'),('L0 cl~;jid','wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js',0,'C>yYǒF','C>yYǒF'),('Fy©aU;w','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber.php',0,'rU]s̛@','rU]s̛@'),('}OE~{ꏧ','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_api.php',0,'.Z\rR`K','.Z\rR`K'),('\\pG\n@̴	','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_collection.php',0,'4{vO ','4{vO '),('tT?','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_entry.php',0,':kʓL*',':kʓL*'),('8Vf/','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_entry_data_array.php',0,'eHE%qq --','eHE%qq --'),('^zXu3]p`','wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_response.php',0,'4F`%q','4F`%q'),('pl','wp-content/themes/Divi/includes/builder/subscription/aweber/curl_object.php',0,'epYA$r','epYA$r'),('ÄV%5_','wp-content/themes/Divi/includes/builder/subscription/aweber/curl_response.php',0,'CMmQ3tIU','CMmQ3tIU'),('ƳَuP?','wp-content/themes/Divi/includes/builder/subscription/aweber/exceptions.php',0,'p%-R\0K','p%-R\0K'),('{RC\\Sت;\\','wp-content/themes/Divi/includes/builder/subscription/aweber/oauth_adapter.php',0,'69Y\\Zg','69Y\\Zg'),('StAd3','wp-content/themes/Divi/includes/builder/subscription/aweber/oauth_application.php',0,'d7dЃn`i','d7dЃn`i'),('ㅰlk9+','wp-content/themes/Divi/includes/builder/subscription/mailchimp/mailchimp.php',0,'w姊I2EE','w姊I2EE'),('@a lQDm','wp-content/themes/Divi/includes/builder/template-preview.php',0,'M*	AA','M*	AA'),('?Pp-Qj','wp-content/themes/Divi/includes/functions/choices.php',0,'I(	Ԅa)','I(	Ԅa)'),('Fkl#6\Z','wp-content/themes/Divi/includes/functions/installation.php',0,'z\'PW[m{','z\'PW[m{'),('yb		b	','wp-content/themes/Divi/includes/functions/sanitization.php',0,'sTZ\\\n','sTZ\\\n'),('{OS3=;(cŧ','wp-content/themes/Divi/includes/functions/sidebars.php',0,'@N;Ow%','@N;Ow%'),('icdk,q7','wp-content/themes/Divi/includes/functions/tutorials.php',0,'\"I<^Xc+GtX','\"I<^Xc+GtX'),(':ruR/˹na','wp-content/themes/Divi/includes/navigation.php',0,'ȼ6m2','ȼ6m2'),('8{.WQ','wp-content/themes/Divi/includes/no-results.php',0,'G҃2t*|U','G҃2t*|U'),('0{Z,MڹԚZ','wp-content/themes/Divi/includes/social_icons.php',0,'\0VsYԨHH','\0VsYԨHH'),('huO\n$x:<w,','wp-content/themes/Divi/includes/widgets/widget-about.php',0,'\r/5-/Cf','\r/5-/Cf'),(' De4G0@d','wp-content/themes/Divi/includes/widgets/widget-ads.php',0,'.gU^ċ\\K_	','.gU^ċ\\K_	'),('\nS@JF!','wp-content/themes/Divi/includes/widgets/widget-adsense.php',0,'L\rs5\\U࠺Q','L\rs5\\U࠺Q'),('~,F','wp-content/themes/Divi/includes/widgets.php',0,':PX\\/>8@',':PX\\/>8@'),('xii%pMΜ6@','wp-content/themes/Divi/index.php',0,'y$27:','y$27:'),(',Rl(=\nq','wp-content/themes/Divi/js/admin_post_settings.js',0,'^0h2y','^0h2y'),('4(&Q\Z','wp-content/themes/Divi/js/custom.js',0,'޿fZae3','޿fZae3'),('uT֦n','wp-content/themes/Divi/js/html5.js',0,'_ucW#','_ucW#'),('Ee<W','wp-content/themes/Divi/js/menu_fix.js',0,'P9J`%Es{','P9J`%Es{'),('d0re&','wp-content/themes/Divi/js/smoothscroll.js',0,'|K-bX	<','|K-bX	<'),('kO@ȏ|W','wp-content/themes/Divi/js/theme-customizer-controls.js',0,'dc\r&cT','dc\r&cT'),('\'\"p~Zk','wp-content/themes/Divi/js/theme-customizer.js',0,':]km',':]km'),('flWIk','wp-content/themes/Divi/options_divi.php',0,'hf{@wԥ','hf{@wԥ'),('vZ\n3','wp-content/themes/Divi/page-template-blank.php',0,'m\'oi%mG','m\'oi%mG'),('אa8S','wp-content/themes/Divi/page.php',0,'I\n)ݤQ˵c','I\n)ݤQ˵c'),('}MKBbU+','wp-content/themes/Divi/post_thumbnails_divi.php',0,';\Z`\\$R?Gn',';\Z`\\$R?Gn'),('RE:`*T,\'','wp-content/themes/Divi/sidebar-footer.php',0,'~=h-kn','~=h-kn'),('U+C#OK','wp-content/themes/Divi/sidebar.php',0,'%FO^R[','%FO^R['),('>q҇s0@AP','wp-content/themes/Divi/single-et_pb_layout.php',0,'7K\\.(Ya','7K\\.(Ya'),('I簽VmFk8','wp-content/themes/Divi/single-project.php',0,'߇󛱆zѱq','߇󛱆zѱq'),('֠#XX4ǽ\Z','wp-content/themes/Divi/single.php',0,'Ro1pyp	+=`l','Ro1pyp	+=`l'),('J}FE\09','wp-content/themes/index.php',0,'gD,V=\\bP','gD,V=\\bP'),('NVr>l','wp-content/updraft/index.html',0,'vET-1l0h','vET-1l0h'),('&	PshcusS','wp-content/wflogs/attack-data.php',0,'#ح\nyIb\r\r','#ح\nyIb\r\r'),('Un/|r@ڪ','wp-content/wflogs/config.php',0,'UpEDuG6%','UpEDuG6%'),('Ao!Vų`v','wp-content/wflogs/ips.php',0,'3,Vȧ%P>b','3,Vȧ%P>b'),('!ES7x','wp-content/wflogs/rules.php',0,'3}[SFf','3}[SFf'),('aOj\'ŻD*ցV4','wp-cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bvme%Iv26'),('vόY9','wp-includes/ID3/getid3.lib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-dr\"K$u_'),('d:wOІ','wp-includes/ID3/getid3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vze=Iu\\'),('9ՍҢ9d\rY','wp-includes/ID3/license.commercial.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;gJgxA'),('}Ȑ\\L`i)','wp-includes/ID3/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5يhQ3fQk'),('D.:\0SR8','wp-includes/ID3/module.audio-video.asf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(kQ|$4'),('x	G!N$.dTb','wp-includes/ID3/module.audio-video.flv.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kHi,WQF'),('oҨ*Ko7{ <','wp-includes/ID3/module.audio-video.matroska.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cK9j\0SiJ'),('Tvm?,aT4','wp-includes/ID3/module.audio-video.quicktime.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'-nL9 a\Z!n'),('\ZvI:wm\'~K-','wp-includes/ID3/module.audio-video.riff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','TfbpGO-'),('L6	׳','wp-includes/ID3/module.audio.ac3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E\0L;\"Od\''),('ǳ\\_L-YŌ%$','wp-includes/ID3/module.audio.dts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V`L7.l] '),('@+T΄\'٤','wp-includes/ID3/module.audio.flac.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P|sq;'),('N@(3','wp-includes/ID3/module.audio.mp3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%{/U\"m'),(':|LH6(cg','wp-includes/ID3/module.audio.ogg.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{܁:_Գ}<'),('_)-]ˌkO	','wp-includes/ID3/module.tag.apetag.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4lUR9I'),('2zs4xEB','wp-includes/ID3/module.tag.id3v1.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+6Qg4'),(',@hjqrޒ','wp-includes/ID3/module.tag.id3v2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cFyO*N'),('?8ZN','wp-includes/ID3/module.tag.lyrics3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U3\"92'),('(~6vqV0{\"','wp-includes/ID3/readme.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ƜVLN['),('\\MMF/I','wp-includes/Requests/Auth/Basic.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gx̄	4U	k!C'),('J>\"/','wp-includes/Requests/Auth.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1RWÔO[J'),('i1E~NIA͔','wp-includes/Requests/Cookie/Jar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0_&p\"4\\'),('S^7jK5I6K2!','wp-includes/Requests/Cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѝC(2+y`'),('O­\n	URb','wp-includes/Requests/Exception/HTTP/304.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';F4AIT'),(' <@s\rF/','wp-includes/Requests/Exception/HTTP/305.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','X\0K/`,&'),('8P֧\ZHGE}8','wp-includes/Requests/Exception/HTTP/306.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WszuNPjXu'),('HYfUHupd','wp-includes/Requests/Exception/HTTP/400.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QnVJRx5'),('/}㦿L;?w\\','wp-includes/Requests/Exception/HTTP/401.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';*?d@'),('*\\Tҝ)%]yiD+','wp-includes/Requests/Exception/HTTP/402.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`YQP\nzG'),('l3.	XN','wp-includes/Requests/Exception/HTTP/403.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`\rok31'),(';#	n%\"','wp-includes/Requests/Exception/HTTP/404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cY\0ys<M'),('Ybڧ,J','wp-includes/Requests/Exception/HTTP/405.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8тm!Ҭ'),('Fj]p Ac\rp','wp-includes/Requests/Exception/HTTP/406.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Klhr9\"\0'),('NtKU','wp-includes/Requests/Exception/HTTP/407.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vj&Ƶ'),('\0n:Tq}K @','wp-includes/Requests/Exception/HTTP/408.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@>1dIXOȷv'),('Xv\Zƒ\"$','wp-includes/Requests/Exception/HTTP/409.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zi~*='),('T양:t[','wp-includes/Requests/Exception/HTTP/410.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qO47ߺݥ/8X!'),(')|{4+]X(','wp-includes/Requests/Exception/HTTP/411.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'RM.Z`G'),(')Yh.;š','wp-includes/Requests/Exception/HTTP/412.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%Iܷ=7V'),('	.5uaWkJ','wp-includes/Requests/Exception/HTTP/413.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<]ɐYXL'),('[Y44Orl0','wp-includes/Requests/Exception/HTTP/414.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']U@)#h'),('}^72','wp-includes/Requests/Exception/HTTP/415.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','XTb̮JU'),('gK;qFVI}Q','wp-includes/Requests/Exception/HTTP/416.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1N9ɪaDx'),('P&_#\'zTs','wp-includes/Requests/Exception/HTTP/417.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BpjhO^c\\G #'),('DCF}','wp-includes/Requests/Exception/HTTP/418.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J![4'),(']PJQƀ6o֢;','wp-includes/Requests/Exception/HTTP/428.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iB}^t*'),('O/ì`|g_\0','wp-includes/Requests/Exception/HTTP/429.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S%|F.àZd'),('ʚ{(\\i7.','wp-includes/Requests/Exception/HTTP/431.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|b$ѓ<'),('\rfh8!','wp-includes/Requests/Exception/HTTP/500.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','km\n	HM'),('l;ao~G','wp-includes/Requests/Exception/HTTP/501.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eڸ04-?ב5'),('bm%ڭ֫','wp-includes/Requests/Exception/HTTP/502.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|:lz!{Gi'),('nŢ)cq^\"','wp-includes/Requests/Exception/HTTP/503.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9RaßC`\0UT'),('Oy}Ma_I','wp-includes/Requests/Exception/HTTP/504.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m̪Db *'),(' \r$	Q^C(','wp-includes/Requests/Exception/HTTP/505.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']A	3[/Cd'),('uG#)|^6','wp-includes/Requests/Exception/HTTP/511.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','unN<KwЛ@'),('>2\\o)','wp-includes/Requests/Exception/HTTP/Unknown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dl᫁2A\nW'),('W>ҟ[','wp-includes/Requests/Exception/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hRlr'),('Iy-\nń','wp-includes/Requests/Exception/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Tg*\Z:	x7'),('rIɀ5 F','wp-includes/Requests/Exception/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lz J^'),('TĘ5VHP{','wp-includes/Requests/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\03\ZRI'),('.Q}3T','wp-includes/Requests/Hooker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@%a[ў/4'),('XMxڳJ','wp-includes/Requests/Hooks.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',', gxi'),(' \\Tn]','wp-includes/Requests/IDNAEncoder.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}2Pر'),('TB3G{','wp-includes/Requests/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KNknT'),('}z#\Z','wp-includes/Requests/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N+_߼օQ;'),('w\'PeF+V\0','wp-includes/Requests/Proxy/HTTP.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/2)'),('#yt($NTt','wp-includes/Requests/Proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@k7\0t\\*G'),('G Xexw0\\o8','wp-includes/Requests/Response/Headers.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZÂҶA->c`'),('Yf/pw','wp-includes/Requests/Response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pR櫷\'G'),('U $A=He|zȖ(','wp-includes/Requests/SSL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Pg\'A6(07TO'),('c42jxcd','wp-includes/Requests/Session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7݆Ζ}l'),('`@YE!','wp-includes/Requests/Transport/cURL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l\ZxzP+'),('fBDFr\r\r','wp-includes/Requests/Transport/fsockopen.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','渙x<M'),('.IOIP%)','wp-includes/Requests/Transport.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';kK\\Vl'),('~AHgKT','wp-includes/Requests/Utility/CaseInsensitiveDictionary.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':RKroH2z'),('/?U','wp-includes/Requests/Utility/FilteredIterator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ax%Ay'),('k5SHЫ','wp-includes/SimplePie/Author.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4q_A%Nw1'),('U\\p{JOQ&','wp-includes/SimplePie/Cache/Base.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C2]]#|j'),(',hɃs?4B[^՝','wp-includes/SimplePie/Cache/DB.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YOU.b'),('V,E@Xy','wp-includes/SimplePie/Cache/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=@B[	S'),('I:4PU','wp-includes/SimplePie/Cache/Memcache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JU1SQ?'),('<)8T*.SuSĺ','wp-includes/SimplePie/Cache/MySQL.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BC\ZHxV'),('Y֝U}r/','wp-includes/SimplePie/Cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y:oMhvL4'),('\"ܒnzD','wp-includes/SimplePie/Caption.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BjMg['),('qKUj','wp-includes/SimplePie/Category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~?.\nܯd*'),('l&*&','wp-includes/SimplePie/Content/Type/Sniffer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|riUblw3'),('anV=Ty X','wp-includes/SimplePie/Copyright.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hT	Ùj'),('oǣ	ףf0Y','wp-includes/SimplePie/Core.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#\Z'),('ͽ3=OG|~','wp-includes/SimplePie/Credit.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M猋*>\n|'),('POf;/','wp-includes/SimplePie/Decode/HTML/Entities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E^/\rBZ#%/a'),('2^(ʭ-^x','wp-includes/SimplePie/Enclosure.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.Bn΍Ks]'),('\nfv81-I','wp-includes/SimplePie/Exception.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Kv&<\\ڏS5'),('4r%j','wp-includes/SimplePie/File.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kU6\n+)%'),('Pط悇̺ƴ$@','wp-includes/SimplePie/HTTP/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%466	'),('oZ0<c0','wp-includes/SimplePie/IRI.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','n 憒;a{_6'),('feR)','wp-includes/SimplePie/Item.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E!Cz\0c<ܧ'),('TBO>v2}Ea','wp-includes/SimplePie/Locator.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s;uvf^'),('FFvV;v8/\r','wp-includes/SimplePie/Misc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','y-^\ZK'),('MjAMO\"If','wp-includes/SimplePie/Net/IPv6.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fy!jـ'),('Bهv<Sv稳','wp-includes/SimplePie/Parse/Date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rȯƹeҹ^'),('tfF	r{܇_Ix','wp-includes/SimplePie/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R.b~+'),('dhħ{q42K\"','wp-includes/SimplePie/Rating.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=pm	Kدat'),('}7 ޘDHDPl','wp-includes/SimplePie/Registry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȣ1v9d\0ٸ'),('\0`YϭrG','wp-includes/SimplePie/Restriction.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*qhds;y'),('[1YAdk,','wp-includes/SimplePie/Sanitize.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BظFإHu'),('0lj0+%','wp-includes/SimplePie/Source.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S{*'),('\'g!:H),','wp-includes/SimplePie/XML/Declaration/Parser.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p(ÅBs#b'),('ZҌ[\nv	F','wp-includes/SimplePie/gzdecode.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8aal4'),('OhuG&\0L','wp-includes/Text/Diff/Engine/native.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'**x'),('ǂ-i).\\z^a','wp-includes/Text/Diff/Engine/shell.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uAܑ~J^t'),(' @;*|','wp-includes/Text/Diff/Engine/string.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':=M\0i)'),('e^#|ۍTЩz','wp-includes/Text/Diff/Engine/xdiff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ֹbtX8GX'),('&Rw?~jhJD','wp-includes/Text/Diff/Renderer/inline.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nn5PB\''),('3fQ3h5[W<','wp-includes/Text/Diff/Renderer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' C0Y7O@GS'),(']B#2zbU/','wp-includes/Text/Diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lp՞n7q*'),('-kdϯXw\\7','wp-includes/admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Zdpp6n#'),('Gu^/1ՁS7','wp-includes/atomlib.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PdKꆼ--\0'),('&S짿o$0n','wp-includes/author-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S)%%ɊEdJ'),('>slWD7M','wp-includes/bookmark-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g[lgP	55\"'),('\0>#z(','wp-includes/bookmark.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\0[.H\0&u\0'),('ǅ99:\Z','wp-includes/cache.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@]PCs,'),('2G?_\\-B','wp-includes/canonical.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$$Z3\n\"kεZ'),('YCooR亞','wp-includes/capabilities.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iRyjG#,;A'),('jI<꟟iU','wp-includes/category-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+WK*?#	'),('D5\n\'\\~W','wp-includes/category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|\rJpP'),('mDTmsA}','wp-includes/certificates/ca-bundle.crt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{޽A6Xi,'),('Jy0m`/','wp-includes/class-IXR.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S&N9\0'),(':<$0,w\"&e({','wp-includes/class-feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<#\'vSR'),('!@|4n','wp-includes/class-http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|bz3y'),('&Zh$Éo','wp-includes/class-json.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','B{vCޯMAm'),('EQ?	(','wp-includes/class-oembed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-9}Lj\\Y'),('	QW~-\0d','wp-includes/class-phpass.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z!TB'),('8ڧs}նNi','wp-includes/class-phpmailer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|#vdBhGp'),('\"u>17','wp-includes/class-pop3.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZS9aa'),('*7\r?','wp-includes/class-requests.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SrtU]\r($C'),('\\ Iѻ,','wp-includes/class-simplepie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\'hX}H'),('Κ,Qagl\Z','wp-includes/class-smtp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.+ݪ7/>\"Z*'),('e__%x','wp-includes/class-snoopy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\Ņϼ.	`'),(')ũ2[	4_a','wp-includes/class-walker-category-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	߶yv%`,m'),('cnxԺ|','wp-includes/class-walker-category.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9\\3eD{:r=J'),('KK+2	aeZe','wp-includes/class-walker-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','jeSN\n	}:G<'),('(觨:pR/','wp-includes/class-walker-nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dab̭$A;'),('J\rӷG>','wp-includes/class-walker-page-dropdown.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G|Fy)W'),('5S{TƁe/','wp-includes/class-walker-page.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p6Es$'),('ֶ9؞fpo3t','wp-includes/class-wp-admin-bar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9ԆДhW'),('ֻE\n<B[,','wp-includes/class-wp-ajax-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',cF+u	'),('\nӛIQED	','wp-includes/class-wp-comment-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','һ?|	>3'),('Tr~W]','wp-includes/class-wp-comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',gF;`Bg'),('ȍP 3\n','wp-includes/class-wp-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0}xJZYy'),('h\ZOhl_Lm/','wp-includes/class-wp-customize-manager.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','τ-aďm?'),('`U2mdW','wp-includes/class-wp-customize-nav-menus.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':8wv+Ԯ\ZI*'),('\rҧxOzzh','wp-includes/class-wp-customize-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1[,S-.B'),('-x(EoI=','wp-includes/class-wp-customize-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˖\ny3ϖFla'),('fu3\nM\\}6*0','wp-includes/class-wp-customize-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9HMގ\0O)'),('Jёe\rXd$','wp-includes/class-wp-customize-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dx\nGF6'),('ɱ%a{Zj	%','wp-includes/class-wp-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r@l\n'),('5`]\\ͭi\0\ZJT','wp-includes/class-wp-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/zm_'),('k{&x\n','wp-includes/class-wp-error.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f}In\'A'),('&B5VAUU,','wp-includes/class-wp-http-cookie.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e.sʈF'),('#iJH?@','wp-includes/class-wp-http-curl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QG#JRÙA'),('MO,s\r','wp-includes/class-wp-http-encoding.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kkb7h^#<'),('uXݼ#-','wp-includes/class-wp-http-ixr-client.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?oaZ;l'),('gf1۶y;_','wp-includes/class-wp-http-proxy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=M\Z{8)v'),('B yw+|t','wp-includes/class-wp-http-requests-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ld7)<\ndv'),('ڷtgZgE','wp-includes/class-wp-http-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vp{ʕӑ,%S'),('߰Sh[۳','wp-includes/class-wp-http-streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ں_^le1aו'),('>X\rbڟ$W','wp-includes/class-wp-image-editor-gd.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ϋި6@P'),('^bRSI!?','wp-includes/class-wp-image-editor-imagick.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ndǿi=X'),('T\ne.(','wp-includes/class-wp-image-editor.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Т+'),('1l< t~LUw','wp-includes/class-wp-locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nuO	.`{վ_%'),('Guʭ','wp-includes/class-wp-meta-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6!ڭ}p'),('\Z\Z:\\RfP~3','wp-includes/class-wp-metadata-lazyloader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F,1'),('wh]á&wM','wp-includes/class-wp-network-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{Se;ٌW'),('8ܞt\ZwNxa','wp-includes/class-wp-network.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>Ghu'),('P@;b<\nc','wp-includes/class-wp-oembed-controller.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9>@O8CmvE'),('~VXa]7p|R','wp-includes/class-wp-post-type.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UH!˽6'),('~ReOXf2`','wp-includes/class-wp-post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Щx^XSoYj&'),('M\ZH?ͲZ','wp-includes/class-wp-rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zzt?=<\"'),('\nfӅ;{t','wp-includes/class-wp-role.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^mi*ONty'),('ǀ3<&YĆ','wp-includes/class-wp-roles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P6\r!VnI*Fȷ'),('W=ԘHdz','wp-includes/class-wp-site-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','I\nVq\n*V'),('b~5aI@)*','wp-includes/class-wp-site.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':~W^KT'),('\\SՇ8;2','wp-includes/class-wp-tax-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BWe#(79'),('I0B,hʛp','wp-includes/class-wp-term-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6Fc[\\:'),('ݖ\'\"|3_t|','wp-includes/class-wp-term.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#æXщ{'),('#?Gc	¯l1e','wp-includes/class-wp-theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{X̘Jjp7.2\n'),('9lן? rq','wp-includes/class-wp-user-query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`!ym\\	SM'),('R\\&T	|`','wp-includes/class-wp-user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','M˥ۊ\\'),('\0]avCY','wp-includes/class-wp-walker.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':Wsho7-a'),('{1\"^.','wp-includes/class-wp-widget-factory.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u{MҤ3[ى'),('Djמ8]fД_','wp-includes/class-wp-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ib6b'),('j䱋%]','wp-includes/class-wp-xmlrpc-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WM\ZfAD߹H'),('$C/9','wp-includes/class-wp.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8\r)oM'),('yEa:[\0','wp-includes/class.wp-dependencies.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˝.7h'),(';~ӷR>','wp-includes/class.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4X(I|['),('9ψ[1d{@','wp-includes/class.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U:0\nRǄha6'),('=k[4 =','wp-includes/comment-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r3:]|.S\"ZV'),('SKK2iɈ','wp-includes/comment.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','CZ5`EUU'),('_\\c9mLv1','wp-includes/compat.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b[lc`'),('-\"DʹD5a/','wp-includes/cron.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ڏ֛=X3 '),('=֬H@-i','wp-includes/css/admin-bar-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{N/>2'),('{ڭd3TXy7;','wp-includes/css/admin-bar-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dЛ屐5X5?'),('Ȇp]4Lq','wp-includes/css/admin-bar.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZKJ.*F~m[%'),('I\"ptQ[Z6x','wp-includes/css/admin-bar.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':O4+ #m`'),('t8p̋z{jDp','wp-includes/css/buttons-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r]1|0pu*'),('Ul1ȕDbmg','wp-includes/css/buttons-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' =!<0F-#2'),(';^𩸴8c','wp-includes/css/buttons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^K/B<slpTj8C'),('з&L۽¨VN','wp-includes/css/buttons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','QfceJ+'),('gVHIw!','wp-includes/css/customize-preview.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n@;{_'),('ylsU><','wp-includes/css/customize-preview.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vMuUmYKw'),('pS`]T]D','wp-includes/css/dashicons.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׃𫙼Gu'),('LyE{f','wp-includes/css/dashicons.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<& %!8\rS'),('poX0%','wp-includes/css/editor-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yV֨='),('ꍥ2jEbg؈Wx','wp-includes/css/editor-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tu3\0'),('LsЇś\nc}>K','wp-includes/css/editor.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Impo'),('_|TM^J','wp-includes/css/editor.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','aU10~S'),(' c̫)I\np,͑','wp-includes/css/jquery-ui-dialog-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b.|Ri'),('~F㫎>dyj','wp-includes/css/jquery-ui-dialog-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.R8)I'),('iPÙld\0','wp-includes/css/jquery-ui-dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4{GjƶFEiyp'),('@V$K<1*','wp-includes/css/jquery-ui-dialog.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Eޒ@*'),('\05g꫔c0\"D','wp-includes/css/media-views-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[MI!g~|'),('_8}?','wp-includes/css/media-views-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G1CFp\"Ma0EX'),('SڰpGMǯl','wp-includes/css/media-views.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%pT3ܐ\Z'),('4%IHOʰL','wp-includes/css/media-views.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*\Z)x\0'),('Ǥ>zԄ!J]>','wp-includes/css/wp-auth-check-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':9H!L'),('Y$\'o','wp-includes/css/wp-auth-check-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[L.TR@矻'),(',CUU9i-','wp-includes/css/wp-auth-check.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u,ș)~G'),('Y68H;%,_c\n','wp-includes/css/wp-auth-check.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O;}$HBҔ'),('w5)','wp-includes/css/wp-embed-template-ie.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')6	؞мq '),('ynm;/UsK	','wp-includes/css/wp-embed-template-ie.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z<wV\nӜwr'),('/ɘ]^W\\q','wp-includes/css/wp-embed-template.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Xl2A\Zz'),('zQ<\'U~R\\','wp-includes/css/wp-embed-template.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','C3JdmtGV'),('\\[i%Ͱ<e>','wp-includes/css/wp-pointer-rtl.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LQON8@'),('jQe;e','wp-includes/css/wp-pointer-rtl.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','EnVelW'),('sC4M**B)','wp-includes/css/wp-pointer.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Lh((Ȁ'),('-藂Y{]ns','wp-includes/css/wp-pointer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~ׂ`.\rݑ`x'),('xW2euvL','wp-includes/customize/class-wp-customize-background-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PKaԏ\'s1ȩ'),('V^3m6._P','wp-includes/customize/class-wp-customize-background-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')@tj23W'),('MYG\\tX/','wp-includes/customize/class-wp-customize-color-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p./짊OnBkrt'),('\'T́YǙ','wp-includes/customize/class-wp-customize-cropped-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[W\'\"fIޙt'),('Y\0)\r/j)Ar','wp-includes/customize/class-wp-customize-filter-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`Vv>A $'),('Zx12KZ,','wp-includes/customize/class-wp-customize-header-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']-	cR7'),('\'Kzf','wp-includes/customize/class-wp-customize-header-image-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{vVa511t'),('>\n5Z','wp-includes/customize/class-wp-customize-image-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Uih- K'),('*Oi','wp-includes/customize/class-wp-customize-media-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rtj+Iq86'),('hS:`','wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\nZmd5990'),('3ƹܕjbiΥ','wp-includes/customize/class-wp-customize-nav-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L\ryKP*<\Z'),('CؚTR!vF{','wp-includes/customize/class-wp-customize-nav-menu-item-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N\'I%ꏣ9}'),('{	\n|p٤','wp-includes/customize/class-wp-customize-nav-menu-item-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#e؈\nݼ\\'),('b+ƴݟ3','wp-includes/customize/class-wp-customize-nav-menu-location-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!zNHo;%?'),('G ~`','wp-includes/customize/class-wp-customize-nav-menu-name-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{`ٖ_7Tȥ3'),('-B|tS^','wp-includes/customize/class-wp-customize-nav-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\ÓBp\rhq\'Tdo@'),('k0Ba`','wp-includes/customize/class-wp-customize-nav-menu-setting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^*w~XE'),('xm\0~','wp-includes/customize/class-wp-customize-nav-menus-panel.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u:Q&S'),('@}&J~¾&\0','wp-includes/customize/class-wp-customize-new-menu-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[!A[\rZL'),('2㺨a|Fl3]','wp-includes/customize/class-wp-customize-new-menu-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H⛱08\n'),('Yq','wp-includes/customize/class-wp-customize-partial.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%wY$\nu'),('y\n,\nC|[i','wp-includes/customize/class-wp-customize-selective-refresh.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7m\nmc'),('T6K?s 7(','wp-includes/customize/class-wp-customize-sidebar-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!T+caβF'),(' ,eOzÑ','wp-includes/customize/class-wp-customize-site-icon-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','߅4gA]G<'),('?Ǆ:\nX','wp-includes/customize/class-wp-customize-theme-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-6qՏ K'),('XQd9rڼ','wp-includes/customize/class-wp-customize-themes-section.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.1\"AV'),('e\\kcXf','wp-includes/customize/class-wp-customize-upload-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JFyžr@{'),('[5YNhKM','wp-includes/customize/class-wp-widget-area-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WoV[~TQ'),('\nT/\\9$YU\n͌','wp-includes/customize/class-wp-widget-form-customize-control.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r\0}'),('\0.}fwA','wp-includes/date.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0g\'_n4IU\noX'),('}{RҢ\"','wp-includes/default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O#FYilFI'),('R,A\ZGJ\'-','wp-includes/default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&:-f'),('VL67G^l%D5z3','wp-includes/default-widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OiT0*\0h)g'),('p.а[ÍD','wp-includes/deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hvrRvmݤ3'),(')]Z$P%','wp-includes/embed-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>EVJ{;6!*'),('9ekkRoS','wp-includes/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	f\0y;}8d'),('\"b9e|_','wp-includes/feed-atom-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wcMVbl7I'),('2@kw>K2','wp-includes/feed-atom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Fx9;'),('ȼ؟\'\r`','wp-includes/feed-rdf.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*I̳7B'),('])	{?R}','wp-includes/feed-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r-V^| '),('߲;0','wp-includes/feed-rss2-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f?j7gg'),('_*⽞L0>\r','wp-includes/feed-rss2.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ݣN)i\n'),('{RC\Z.*\"Q','wp-includes/feed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8;U8V+N\rAW/'),('\Z5o#R\'/l','wp-includes/fonts/dashicons.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0!_yH'),('΢S˪\nBV\"','wp-includes/fonts/dashicons.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xih7w#؟'),('<kUJv%1','wp-includes/fonts/dashicons.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','FFŃ'),('f0ͭ~)','wp-includes/fonts/dashicons.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z_rY+ʂ;'),('ŉ	i/Э','wp-includes/formatting.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4+Vy;'),('\Z)qtsCI9','wp-includes/functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fF#U3 bϛ'),('b`K\'컜K','wp-includes/functions.wp-scripts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4d}7SoėWݧ*'),('h d껅2_r','wp-includes/functions.wp-styles.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>JmL6'),('0RJ{yˣ','wp-includes/general-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~j>KXlg_i'),('/&2ѡ\rgDs','wp-includes/http.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m0Ɯ;-?1f|'),('.IhU3+B\Z','wp-includes/images/admin-bar-sprite-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8o'),('Ư	\'CԻګ\Z','wp-includes/images/admin-bar-sprite.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:W^'),('r_/HG=%<','wp-includes/images/arrow-pointer-blue-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%mrތ]49c'),('@̘9#Ly(','wp-includes/images/arrow-pointer-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wb·*L['),('G5@07','wp-includes/images/blank.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H+51	f]9'),('>M8 ٵ|','wp-includes/images/crystal/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SI0An'),('J\'#rN0a\r','wp-includes/images/crystal/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nV:ωG-#k'),('wL0]r.','wp-includes/images/crystal/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`119'),('!ެ߳p','wp-includes/images/crystal/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','A>)*/!-'),('Dm\nzHS','wp-includes/images/crystal/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'^csD3T\\'),('j5F+o','wp-includes/images/crystal/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rm``9'),('ǊEvc,صyS^','wp-includes/images/crystal/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']LciGfQ\r'),('^Ð+y|','wp-includes/images/crystal/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','59Т1Tn'),('\"RŜ','wp-includes/images/crystal/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' Ѳ#d%['),('U$i\"u&9','wp-includes/images/crystal/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lڤ;='),('*-3uE[O#','wp-includes/images/down_arrow-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s$6(@a'),('\nO_;]/^','wp-includes/images/down_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e]:uWv\"'),('Ҟǟ	Ks','wp-includes/images/icon-pointer-flag-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2b&Zr'),('Z	r!ޏf	','wp-includes/images/icon-pointer-flag.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',E^j`\''),('Y,eAw`','wp-includes/images/media/archive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9h\0ìu'),(':n̣RMti#=','wp-includes/images/media/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','taCA.Z'),('3\"(za48','wp-includes/images/media/code.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-oUʓUU_'),('(?>SN揚&','wp-includes/images/media/default.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-IBh@b'),('/<ا^ɼf}\"$','wp-includes/images/media/document.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v48Αy6d'),('rYSxwDY˚J[','wp-includes/images/media/interactive.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R׬˂ôŉhH'),('HVեdpVp','wp-includes/images/media/spreadsheet.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\0Ṫ?'),('9s3SZ,p8g','wp-includes/images/media/text.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zs0ȝQK'),('\n%f[!aErtgi','wp-includes/images/media/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','uhq'),('k/y&G','wp-includes/images/rss-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ya[Qrj'),('r؁=Ԓ','wp-includes/images/rss.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[(.*NZ'),('{\r-}^','wp-includes/images/smilies/frownie.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q'),('Т펹|@','wp-includes/images/smilies/icon_arrow.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʵ	('),('㯩	\'ިV','wp-includes/images/smilies/icon_biggrin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YpR+0}kN{k'),('$͓bHn,\0-','wp-includes/images/smilies/icon_confused.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sYFPZ6,'),('X,ECj$_8I0','wp-includes/images/smilies/icon_cool.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F~ߢ.>t8'),('ĔԼpPZ	H','wp-includes/images/smilies/icon_cry.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E>z?ApmWlA`'),('!_輵p3pnL','wp-includes/images/smilies/icon_eek.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_sjN_z'),('Obc\" |J(','wp-includes/images/smilies/icon_evil.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cVM<\"!.'),('JBGT;,lT','wp-includes/images/smilies/icon_exclaim.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\qE\Z!HY__={_'),('\"u@TS5','wp-includes/images/smilies/icon_idea.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"m%hSr'),(' n$q^qf','wp-includes/images/smilies/icon_lol.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MZ8|,'),('(הWh@=a','wp-includes/images/smilies/icon_mad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','׾ie\Zc{0'),('\ZUEs(#Ep','wp-includes/images/smilies/icon_mrgreen.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JRww'),('ki.\\','wp-includes/images/smilies/icon_neutral.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	Z'),('7M3$','wp-includes/images/smilies/icon_question.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'u&EqAmN'),(':[&b[hY','wp-includes/images/smilies/icon_razz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','˭=J@'),('$0S\rr','wp-includes/images/smilies/icon_redface.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mAR!4a'),('B]nȄ87g','wp-includes/images/smilies/icon_rolleyes.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ȼ_Ҹ*>,\Z\Z!j'),('HPw%8','wp-includes/images/smilies/icon_sad.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z\'=Oj?uA|'),('e97aJS','wp-includes/images/smilies/icon_smile.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G)öu\\\nM'),(';Wct*+Br','wp-includes/images/smilies/icon_surprised.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')ri\r^@8'),('\\:ڈ)g,\\','wp-includes/images/smilies/icon_twisted.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b.8\Z|`QLF'),('8P5aĨ	','wp-includes/images/smilies/icon_wink.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZOZg94'),('g|y_o4\"XN','wp-includes/images/smilies/mrgreen.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-5^Jj'),('{Y\\z錿}c','wp-includes/images/smilies/rolleyes.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' O2Ofݣi'),('ջZml4ˮU','wp-includes/images/smilies/simple-smile.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','K{fwh'),('}`g\"P2V','wp-includes/images/spinner-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\q9)hdxR]l'),(':XqݝJ\\5P4','wp-includes/images/spinner.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1c~\'dvvHq'),('}ĉ=t','wp-includes/images/toggle-arrow-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','F\\CDr'),('ܵ[Ҳm%6S8:D','wp-includes/images/toggle-arrow.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','·a;d*'),('/鹠ΰ1iw','wp-includes/images/uploader-icons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&-OÕ~'),('_43=','wp-includes/images/uploader-icons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Mm'),('x9@^6ߑo','wp-includes/images/w-logo-blue.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[NW_pw0'),('hFuQe ','wp-includes/images/wlw/wp-comments.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L6]P.s'),('Pq-t@l','wp-includes/images/wlw/wp-icon.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1	ʚ7w3K*'),('6bg>_','wp-includes/images/wlw/wp-watermark.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';uMmܭD|wD'),('~U\"&','wp-includes/images/wpicons-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','nVo$Of~7'),('g$G\\;r1X','wp-includes/images/wpicons.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dSuqV_a'),('\rEU̈́','wp-includes/images/wpspin-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}3Y(Im'),('Rx4Mp@9u\n֊ p','wp-includes/images/wpspin.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Nmh;\Z@'),('N\\|`*,)@4','wp-includes/images/xit-2x.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rT`?J/'),('\n\\ɶ.5','wp-includes/images/xit.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')X`1H'),('|/ڒ\0[*4x','wp-includes/js/admin-bar.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zA擒ZG='),('MР\0A9Q+','wp-includes/js/admin-bar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\nȗMi'),('R3Us3}T','wp-includes/js/autosave.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DRT[]UE'),('wul|pQ','wp-includes/js/autosave.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\Z9Y\nh7'),('PE۫7r|oI6>','wp-includes/js/backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cݾR^{3&'),('\npGnu:','wp-includes/js/colorpicker.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V g-'),('0E\00XH','wp-includes/js/colorpicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \ZYb|$@q-'),('pUya	bva;8','wp-includes/js/comment-reply.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NخT&\0'),('1X/t60^Ҁ!7','wp-includes/js/comment-reply.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V\'&) {/z'),('bY,ϥYr۝;','wp-includes/js/crop/cropper.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ky5ni*M('),('\r%%yS`','wp-includes/js/crop/cropper.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H.so'),('(|nsARF+','wp-includes/js/crop/marqueeHoriz.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̮;Lo\n'),('Z\0Y æfg','wp-includes/js/crop/marqueeVert.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\09R'),('r\\jA$','wp-includes/js/customize-base.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'&tST>W'),('V\nU`_58','wp-includes/js/customize-base.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mz(*Бn'),('V}Pm/|I*','wp-includes/js/customize-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zW{F<\"\nfK'),('bҌ &?{','wp-includes/js/customize-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PK0g\\bE	l'),('xЙ)DC<','wp-includes/js/customize-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':yt}ɟDc\n2@'),('\nNNMۑ4;p4','wp-includes/js/customize-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hJh'),('\Z{:\Z4f','wp-includes/js/customize-preview-nav-menus.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"MKß;('),('F~yc7v-','wp-includes/js/customize-preview-nav-menus.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S:ƨg'),('9\r5\'X>?','wp-includes/js/customize-preview-widgets.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','꦳o֮Y'),('9rMԧ','wp-includes/js/customize-preview-widgets.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4Q27h/-H'),('42)A.;4','wp-includes/js/customize-preview.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{ʲI/_-'),('>ql+m\05Ħ\"^','wp-includes/js/customize-preview.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@τw~CKHoh7erc'),('UNEAgt','wp-includes/js/customize-selective-refresh.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bosf'),('0jVƽf:5`\\','wp-includes/js/customize-selective-refresh.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*ר<p~	fm'),('QY1TlVr<','wp-includes/js/customize-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z٢Uo'),('Y^~5~pG-','wp-includes/js/customize-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>h%N'),('!(t<Թ','wp-includes/js/heartbeat.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v}P*Bv'),('n97I.Oҝ޿','wp-includes/js/heartbeat.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l[t%n7'),('ygzaU\"	XKG','wp-includes/js/hoverIntent.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ʳYCcOnכ'),('S.FȫAj(:','wp-includes/js/hoverIntent.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\nޅL1AWb\0'),('^^\\Q=(w','wp-includes/js/imagesloaded.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vRfW7dB'),('%bQbM<x','wp-includes/js/imgareaselect/border-anim-h.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z,ntZ^6{Lp4'),('F\"vh$Lb','wp-includes/js/imgareaselect/border-anim-v.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' z!<7*'),('<FPz22~','wp-includes/js/imgareaselect/imgareaselect.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}(()3󵕯'),('8/B$8`m','wp-includes/js/imgareaselect/jquery.imgareaselect.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zBRS:Y'),('ͤ6\0/k','wp-includes/js/imgareaselect/jquery.imgareaselect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%.eByUr@%'),('SX+71?-','wp-includes/js/jcrop/Jcrop.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z7eQ%K'),('g\"}_7J5','wp-includes/js/jcrop/jquery.Jcrop.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V̞/Kx'),('T.o@Ψ2wvX','wp-includes/js/jcrop/jquery.Jcrop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','/aLru4\Z'),('vޣR','wp-includes/js/jquery/jquery-migrate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lWbX[5y^l6'),('a@o\'kb','wp-includes/js/jquery/jquery-migrate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','q!NS XdcQ'),('ʙ\0}甠K.','wp-includes/js/jquery/jquery.color.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-EG>vJ'),('vҸ);D~J\"q','wp-includes/js/jquery/jquery.form.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.,+\nq'),('&=\Z+t\"/k\'\n','wp-includes/js/jquery/jquery.form.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ÀsEVM-'),('P\Z/l%','wp-includes/js/jquery/jquery.hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','┃&݋\rFư'),('-plEk/','wp-includes/js/jquery/jquery.hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S!}EU\\bgh='),('g#,vM:','wp-includes/js/jquery/jquery.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?v@̒N'),('c,[xޫ3\n@','wp-includes/js/jquery/jquery.masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@`&n|}A'),('{)4e4p:fW','wp-includes/js/jquery/jquery.query.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';XzǰwC'),('(g%\04l>','wp-includes/js/jquery/jquery.schedule.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&Tkf؞'),('qh665y|=?S	','wp-includes/js/jquery/jquery.serialize-object.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\)Jl<\"'),('0<PsמH22','wp-includes/js/jquery/jquery.table-hotkeys.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','֔#tgPg'),('򱠭BRzY','wp-includes/js/jquery/jquery.table-hotkeys.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ogo~iI	'),('mY}ɽ?','wp-includes/js/jquery/jquery.ui.touch-punch.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','LmQ4փ]'),('Ƭ+\ZId^i <\0','wp-includes/js/jquery/suggest.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':$tVEʿ'),('3Ƈe(ú9','wp-includes/js/jquery/suggest.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s\\+A)n.;'),('6٨	:{^D','wp-includes/js/jquery/ui/accordion.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3L/oo. '),('gEd1D}','wp-includes/js/jquery/ui/autocomplete.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>bXeså̐'),(']/~qXŎE','wp-includes/js/jquery/ui/button.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',ЍQ楎'),('%y>}Ho(6','wp-includes/js/jquery/ui/core.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WDSejq'),('@k/I?T,','wp-includes/js/jquery/ui/datepicker.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','϶=S'),('Fe}(','wp-includes/js/jquery/ui/dialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>͕xQONi^\Zb'),('p7uL_{2Û','wp-includes/js/jquery/ui/draggable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D<\'wI\0՜6'),('z|zxv','wp-includes/js/jquery/ui/droppable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','޿R$(ѦS'),('&cYD#P{+','wp-includes/js/jquery/ui/effect-blind.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<OmA_;OL'),('a5[45MepC','wp-includes/js/jquery/ui/effect-bounce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ky${״oL'),('U$\\*1^S','wp-includes/js/jquery/ui/effect-clip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ǓW#GZas'),('D\rh}!\n','wp-includes/js/jquery/ui/effect-drop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','WVǥYF2'),('ϊ=XbBz\' ','wp-includes/js/jquery/ui/effect-explode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\\A:QJ='),('AG,<','wp-includes/js/jquery/ui/effect-fade.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oOO_;{r5$m'),('P\0\'0lv#J<','wp-includes/js/jquery/ui/effect-fold.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6^<DEl'),('{Mii2n6','wp-includes/js/jquery/ui/effect-highlight.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*øN!'),('8`9?BbБ','wp-includes/js/jquery/ui/effect-puff.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImlcG@ȳ '),('8(\ZjZ]}','wp-includes/js/jquery/ui/effect-pulsate.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','o S@Z*p!'),('4;V\'/f','wp-includes/js/jquery/ui/effect-scale.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}0e,)+mT'),('NVԱzZ','wp-includes/js/jquery/ui/effect-shake.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&3Hqˀ1'),('~w`5;F㮮','wp-includes/js/jquery/ui/effect-size.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=n2Z%'),('Y]ŞI','wp-includes/js/jquery/ui/effect-slide.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#G_MVژy'),('l.H|S{','wp-includes/js/jquery/ui/effect-transfer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ި\0w}n'),('ݙP(O\'Ee','wp-includes/js/jquery/ui/effect.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?qaZ,^m4o'),('7c¢)Seb','wp-includes/js/jquery/ui/menu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Dtc]8'),(':x=}','wp-includes/js/jquery/ui/mouse.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z`0 8\\9'),('nefA@R?','wp-includes/js/jquery/ui/position.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JX~C:/b'),('=fuA><Th@','wp-includes/js/jquery/ui/progressbar.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','MqTٴA?L}y\"i'),('-i>bs1','wp-includes/js/jquery/ui/resizable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\02|I,|'),('v\r&X','wp-includes/js/jquery/ui/selectable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','2ё쮒槶r@'),('S0־K/17u','wp-includes/js/jquery/ui/selectmenu.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˪29Zhxi\"6'),('\\AV*籿','wp-includes/js/jquery/ui/slider.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZkCdL/K'),('m-\Zm1w','wp-includes/js/jquery/ui/sortable.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(~kk'),('mE\\)o','wp-includes/js/jquery/ui/spinner.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':2a+R!e'),('(5aHyo,X','wp-includes/js/jquery/ui/tabs.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','S04%gcABz'),('-_+YnS','wp-includes/js/jquery/ui/tooltip.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','D?hi\r,q40'),('!&i)^WR','wp-includes/js/jquery/ui/widget.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','kyd?zx7'),('*\Z07ѥ1Oَ8','wp-includes/js/json2.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s{N|EO0'),(')(<','wp-includes/js/json2.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ؙ?DX<'),('| ','wp-includes/js/masonry.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T Ql$[PNr@1,'),('rr(Jg(yt','wp-includes/js/mce-view.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','BaMy%-'),('f%uP','wp-includes/js/mce-view.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Z󯃱2'),('{0l(Ʋu9,wSu','wp-includes/js/media-audiovideo.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','VP<k;D.?F;'),('GV\\z#!;','wp-includes/js/media-audiovideo.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\rStD'),('uN.A__','wp-includes/js/media-editor.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^!J{p_Ե\Z'),('	,/Օ!gyd','wp-includes/js/media-editor.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z0G$uK'),('R\\SC|ju9A','wp-includes/js/media-grid.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k.:l޷r'),('YRYi/l@HX','wp-includes/js/media-grid.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','vhTe4hβL'),(')_J','wp-includes/js/media-models.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3a(qh'),('F GJBs7','wp-includes/js/media-models.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ف;Y-B분'),('ȉV?	])A','wp-includes/js/media-views.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','eo*Ml8tg='),('E?Юᾠ','wp-includes/js/media-views.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{o_PvaA۸Q'),('6dxD','wp-includes/js/mediaelement/background.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','p<eKc\\c8r~\0l'),('\Ze\rj!^	','wp-includes/js/mediaelement/bigplay.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','qd6=Ҟk7bRgj'),('7O+ǋ\'n','wp-includes/js/mediaelement/bigplay.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tl:E9n^'),('5[,	j(ƪ','wp-includes/js/mediaelement/controls.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$\"Ӭ?Ȥ'),('Gq@gm屪','wp-includes/js/mediaelement/controls.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','@oZsmۊR'),('{at\n\">S','wp-includes/js/mediaelement/flashmediaelement.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.D2;'),('+Ϳ#FtEǍ7','wp-includes/js/mediaelement/froogaloop.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*B#D'),('N`rHn0','wp-includes/js/mediaelement/jumpforward.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ᬌ.&wHS'),('\' #s߾U|','wp-includes/js/mediaelement/loading.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','v&B\"o!e'),('y!\0pZ[A','wp-includes/js/mediaelement/mediaelement-and-player.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','prG}_'),('	?quM','wp-includes/js/mediaelement/mediaelementplayer.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>`::Q7'),(';&nbiٷ','wp-includes/js/mediaelement/silverlightmediaelement.xap',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','OFmsK0,'),('AZ哖̅L(','wp-includes/js/mediaelement/skipback.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','m0EkoHF'),('ShS%Tz','wp-includes/js/mediaelement/wp-mediaelement.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\07ԇ:3U:]'),('D]|߼$','wp-includes/js/mediaelement/wp-mediaelement.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','J9W=KF\'/'),('M~\nT|','wp-includes/js/mediaelement/wp-mediaelement.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tOgER{1'),('N9{;','wp-includes/js/mediaelement/wp-mediaelement.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zDQ9(q9Qfy'),('6X/HL','wp-includes/js/mediaelement/wp-playlist.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tj8C'),('ˤԐ{%k#f','wp-includes/js/mediaelement/wp-playlist.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','&EcN-kŒ'),('JE[7U\Z~','wp-includes/js/plupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','N	f_PH!'),(';(Xp`ҙpݷ','wp-includes/js/plupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>\n{u=/	}f'),('VڮMjӁ','wp-includes/js/plupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','u&\nTIz+'),('C3!0QoJe `','wp-includes/js/plupload/plupload.flash.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7\rvEROGҘtl'),('\"c9&','wp-includes/js/plupload/plupload.full.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JC$Vm\'.\''),(' p(?QnaZ','wp-includes/js/plupload/plupload.silverlight.xap',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tq\03X0b'),('5C)\nWu꽝/FcK','wp-includes/js/plupload/wp-plupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+oN8/:7&'),('Le5x?e=&','wp-includes/js/plupload/wp-plupload.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','|tfܚEGFQ'),('?h;','wp-includes/js/quicktags.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HM\Z/@p['),('ߌ(2','wp-includes/js/quicktags.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j6\\/RVj=g='),('ˍG䯀oeo','wp-includes/js/shortcode.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͡Pt}\r'),('g]bR% ZE','wp-includes/js/shortcode.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bj߭mq|$'),('Or#TG!','wp-includes/js/swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',I}pe~2q'),('M٦M/`','wp-includes/js/swfupload/handlers.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oۅ߲}'),('`#GbC֊','wp-includes/js/swfupload/handlers.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y,k?XN0G;'),('\Z-x7(A4','wp-includes/js/swfupload/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[`^-oQWz'),('D=Jǅ/	6ރa','wp-includes/js/swfupload/plugins/swfupload.cookies.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~\rڈk\\ 7̴'),('lXNEMCgVsA:','wp-includes/js/swfupload/plugins/swfupload.queue.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','SR/J5-v͏'),(',BcԛZ4Y','wp-includes/js/swfupload/plugins/swfupload.speed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','AZ7kE`,*s'),('$<@Řac\"','wp-includes/js/swfupload/plugins/swfupload.swfobject.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','̵qV7T\\s'),('$xM1>_8P\0','wp-includes/js/swfupload/swfupload.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',':E%ρzs~'),('*t$ߋvns','wp-includes/js/swfupload/swfupload.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z%5e,rHO'),('	1А々S:(','wp-includes/js/thickbox/loadingAnimation.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"h\rc&'),('tZO\' \n','wp-includes/js/thickbox/macFFBgHack.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ȰgW,/u'),('v{LJlōYz`(','wp-includes/js/thickbox/thickbox.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ZPN2E^;'),('AE[`','wp-includes/js/thickbox/thickbox.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','HsTX{B$٭6'),('9:do\np`Ry','wp-includes/js/tinymce/langs/wp-langs-en.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ftSuc.k7a7'),('	vO.|ߤҵ','wp-includes/js/tinymce/license.txt',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']t\"ٞ3[t|'),('\n$zX`1Bw','wp-includes/js/tinymce/plugins/charmap/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4SB+^X\n'),('k$6O-Nx','wp-includes/js/tinymce/plugins/charmap/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L%\Z.;nq@O'),('Aa@JŁ','wp-includes/js/tinymce/plugins/colorpicker/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"SI$0DRj*'),(',< ?C]0A','wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(oTRa'),('HC!\"(','wp-includes/js/tinymce/plugins/compat3x/css/dialog.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','11h+ezKk\Z\"'),('gosV;\n$','wp-includes/js/tinymce/plugins/compat3x/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R̑54m%U'),('0]qK\'fx','wp-includes/js/tinymce/plugins/compat3x/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Wr'),('!#I|F','wp-includes/js/tinymce/plugins/directionality/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_!8[EVaYP@A'),('&]0W\n)=','wp-includes/js/tinymce/plugins/directionality/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`W%<:oJ9'),('Pw0h9','wp-includes/js/tinymce/plugins/fullscreen/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0vQﬧdU'),('sŏU\'e@d','wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ex+@W\\}6'),('\\9ã>Iz4c','wp-includes/js/tinymce/plugins/hr/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Bz{@Xб\Z'),('v\\Q-','wp-includes/js/tinymce/plugins/hr/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\#%Z,3I8'),('πtGȩD','wp-includes/js/tinymce/plugins/image/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','E9`NAv'),('	Em[l<','wp-includes/js/tinymce/plugins/image/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U[M0#'),('!RpnLwm7','wp-includes/js/tinymce/plugins/lists/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ӏE6J#+\'ͭv'),('J0jYgh','wp-includes/js/tinymce/plugins/lists/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0(lg	#Ag'),('d]\0FmŲpD','wp-includes/js/tinymce/plugins/media/moxieplayer.swf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NYN-3Yj'),('`;\"-+~;','wp-includes/js/tinymce/plugins/media/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	fHtnx,2'),('ƅ|_i/y	','wp-includes/js/tinymce/plugins/media/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[6H\"%k'),('ƪq悳','wp-includes/js/tinymce/plugins/paste/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','i_pN2ExyjK'),(',(i7:^^#','wp-includes/js/tinymce/plugins/paste/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d#L	[r'),('x덂@}Yi+','wp-includes/js/tinymce/plugins/tabfocus/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j]xL*_d5I/'),('v|-','wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','͓>5C'),('?]P.12b','wp-includes/js/tinymce/plugins/textcolor/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Rrgwd\"'),('͓Y36lY','wp-includes/js/tinymce/plugins/textcolor/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','hɛϑôq4'),('G!#h9	&','wp-includes/js/tinymce/plugins/wordpress/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9Ve![=le'),('usy6\'v,=','wp-includes/js/tinymce/plugins/wordpress/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IA&Ku	t'),('. \0_oE]A_0PJ','wp-includes/js/tinymce/plugins/wpautoresize/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d\0XcO@p%'),('}PÛP\\\Z','wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}˳QgѥDW'),('	P=N>b\"j:~[Q{','wp-includes/js/tinymce/plugins/wpdialogs/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','[ߢ9Z'),('3\'RKBf','wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G7(tt@'),('<u꿖\ZܜY^','wp-includes/js/tinymce/plugins/wpeditimage/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ͽn鏾'),('6<C﮿V:(r','wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',';F.ߔ_vdfh'),('j^۝h8','wp-includes/js/tinymce/plugins/wpembed/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','8*R/?%'),('ΊY(e_bWj_','wp-includes/js/tinymce/plugins/wpembed/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~[L	Zu-,'),('%\0zfNpS','wp-includes/js/tinymce/plugins/wpemoji/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','za1Pe=ߡzVb'),('@,n\\+k','wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',',,DUA'),('u3!pAf)RM','wp-includes/js/tinymce/plugins/wpgallery/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H4PDDM\\I'),('Oӿ;=\\Jzy','wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7`OtyO'),('kbgS','wp-includes/js/tinymce/plugins/wplink/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\0n?.\0'),('L)a$D-ӮJ','wp-includes/js/tinymce/plugins/wplink/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','H\"7	Ŭ'),('\"Etys\Z|g','wp-includes/js/tinymce/plugins/wptextpattern/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=bZz<BՁY'),('3+z.6Q~]y[','wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6P7zp+]̍'),('q82v&#M','wp-includes/js/tinymce/plugins/wpview/plugin.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x#ߒdy p'),('Wly:\0Vn`d\0','wp-includes/js/tinymce/plugins/wpview/plugin.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','	HA,&'),('Z(>(1bޫZ','wp-includes/js/tinymce/skins/lightgray/content.inline.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Q8̩\0}3'),('7&Ȁ','wp-includes/js/tinymce/skins/lightgray/content.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' {C!\'ÃqZx'),('([3?H/[e]','wp-includes/js/tinymce/skins/lightgray/fonts/readme.md',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','zd+E@1'),('>/ᡇ_','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l([qאD#'),('|,^j$n','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','վ\\6\n+'),(':X2M~','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','24vLhN!2|'),('`S`NI^G','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(i@Gg0p'),('t0ga/','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~-x\'	'),('vڴVKP','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','$z3`c.'),('`^X_dؾ#\r','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.json',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"םuBX'),('Qԁ27uL','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Fh%Cy'),('P0aRz= ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Pù4S͈0p'),('\Zl3Ȋ','wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','k7TVn@'),('>+ܞL[m','wp-includes/js/tinymce/skins/lightgray/img/anchor.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','a5qȑ_4@'),('L<#\Z}','wp-includes/js/tinymce/skins/lightgray/img/loader.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9KM:Tf9'),('oPco.r','wp-includes/js/tinymce/skins/lightgray/img/object.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rdPE}u\n/MA '),('Xg5(=c','wp-includes/js/tinymce/skins/lightgray/img/trans.gif',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7I 1FGuj^'),('<{,-![M','wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZP#\n'),('>~!gq','wp-includes/js/tinymce/skins/lightgray/skin.min.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6]Vp(@lB'),('Ĉ^A+lod','wp-includes/js/tinymce/skins/wordpress/images/audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','7~!\0\"w'),('FH30m:s','wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xR	YXݤ'),('c.Dr |','wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RZ?f.8	'),('Ȅxy','wp-includes/js/tinymce/skins/wordpress/images/embedded.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','pNy~n\"'),('FÃ\\Ofg','wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1vR'),('_f;waځ','wp-includes/js/tinymce/skins/wordpress/images/gallery.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_PwPU4'),('FHȝle#','wp-includes/js/tinymce/skins/wordpress/images/more-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','l,r%^x%'),('N3j@pu5^','wp-includes/js/tinymce/skins/wordpress/images/more.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n\nm\0;˫z'),('~a%!P','wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','{6#UQ:|>#'),('#	>7','wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ImLWyݓH'),('@{J5䷴X','wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','U,:)؋\"QqY'),('7%Wy~׹P?x','wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lzV6`wmZBs'),('3^PMYHD','wp-includes/js/tinymce/skins/wordpress/images/video.png',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','¶B=\rz3j'),('۪	.ո\\','wp-includes/js/tinymce/skins/wordpress/wp-content.css',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Vy:Z04`'),('ah#8c','wp-includes/js/tinymce/themes/inlite/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','xb @Ta'),('	#A\n#b#=','wp-includes/js/tinymce/themes/inlite/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','gQ1ܮ!%e-C÷;'),('r+zk; 4WI','wp-includes/js/tinymce/themes/modern/theme.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(H\ZW'),('n#t=\'b]{','wp-includes/js/tinymce/themes/modern/theme.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\_*κ'),('(tTlDά7&MP.','wp-includes/js/tinymce/tiny_mce_popup.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' B+u؞˘4	m'),('	9fވUf','wp-includes/js/tinymce/tinymce.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','}=31\"g'),('Gm:MľVLЉ','wp-includes/js/tinymce/utils/editable_selects.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d*\nzfG\"0t'),('*Lm&&2\nb','wp-includes/js/tinymce/utils/form_utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T8?ZP{-'),('츃v6;~','wp-includes/js/tinymce/utils/mctabs.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r|uJkek5\0'),('4AIn097c`','wp-includes/js/tinymce/utils/validate.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','+Q`k0RW'),('\'}0','wp-includes/js/tinymce/wp-tinymce.js.gz',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','yǺii#ɨ'),('HԹfk','wp-includes/js/tinymce/wp-tinymce.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b\n0prHv'),('p۞2N<:Z7r','wp-includes/js/tw-sack.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9>'),('h+B','wp-includes/js/tw-sack.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','DNkP\n~h'),('鋭{^MU*_','wp-includes/js/twemoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\Zd2zTÊuN\r'),('M;C8Yyﲏ','wp-includes/js/twemoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R\'n'),('u<ex@ֈ>','wp-includes/js/underscore.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','j:CJ`tCA}{'),('<hj	44a2','wp-includes/js/utils.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Oێ/n'),('&UX\rL4{','wp-includes/js/utils.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rA2C3UE+'),('05mk','wp-includes/js/wp-a11y.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',' \Zr\'7gx\Z'),('/0\n*7f(','wp-includes/js/wp-a11y.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tlگX'),('](R&!1;3','wp-includes/js/wp-ajax-response.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\'[#X+'),('u)8FG9C(','wp-includes/js/wp-ajax-response.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UK 5*g+d'),('.v8-rJŕqQ','wp-includes/js/wp-auth-check.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P\rJvv\Zy%e'),('tU/DsIڤst','wp-includes/js/wp-auth-check.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','z}jo)'),('j8ď\Z','wp-includes/js/wp-backbone.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O[J-v'),('0<lڿJ','wp-includes/js/wp-backbone.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','x\n%6h)9'),('=-Xԍn{]pf','wp-includes/js/wp-embed-template.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ey(͜~i%'),('Z Og\nWW2','wp-includes/js/wp-embed-template.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']g,JDT\0\''),('sSki<4\'c-6','wp-includes/js/wp-embed.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W|;sof2CM'),('J~_ofk','wp-includes/js/wp-embed.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','h{Oz8O'),('trεF_ ','wp-includes/js/wp-emoji-loader.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','w^|uzО'),(';*1\Zn4','wp-includes/js/wp-emoji-loader.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']ӱ35/)'),('	b8[y','wp-includes/js/wp-emoji-release.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','d`uzZ'),('\0;fQ=*Ǖ','wp-includes/js/wp-emoji.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ĚF̏=o'),('[>x;wn/tH','wp-includes/js/wp-emoji.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ZR6Ax'),('=V;N.K','wp-includes/js/wp-list-revisions.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','GQ\ru`*Ln$'),('E4fu\r#R:k!jgh','wp-includes/js/wp-list-revisions.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R1\0\\ɡ>'),('bvEH΄','wp-includes/js/wp-lists.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KsKḼ#WG`n('),('9eEbݾl3','wp-includes/js/wp-lists.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','*EJ\ZnU#Z5'),('#AuI.F/','wp-includes/js/wp-pointer.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5ˋ8.r:ě'),('Ǉ4˓T`k','wp-includes/js/wp-pointer.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','6|dMpX\0fɐ'),('??n_2gj','wp-includes/js/wp-util.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"uOe'),('H+E~}1Q','wp-includes/js/wp-util.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','9-ر,'),('A4e{^Z','wp-includes/js/wpdialog.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','r9_M@9\0S'),('ߗQu!ٶx[','wp-includes/js/wpdialog.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-\0g\rFġ'),('wtH-s\0n','wp-includes/js/wplink.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4s*mh'),('\"c)j\"','wp-includes/js/wplink.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?dXݜf\ZG='),('\'B7S','wp-includes/js/zxcvbn-async.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\0V]u#3'),('L(n9[2C6','wp-includes/js/zxcvbn-async.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1p9	9~'),('J򾁬OhsDؾ','wp-includes/js/zxcvbn.min.js',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','L;uc<'),('іqSGKy(','wp-includes/kses.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ɂ7JYM'),(':m[ݢ:#','wp-includes/l10n.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','tg*4n'),('vE,-O{','wp-includes/link-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`TǺ}_	G'),('_j_/yӱ','wp-includes/load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rf^|[*,E2$dRW'),('D6mer{pKO','wp-includes/locale.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"ҥe'),('a(mEBl','wp-includes/media-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','5\"!sV'),('){jW-_Q=?GlҢ','wp-includes/media.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Iy\\y	'),('KQ}U&;&Q','wp-includes/meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')5O0'),('gI!٭_','wp-includes/ms-blogs.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','O9IM|\"f_'),('mAYRb|S','wp-includes/ms-default-constants.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','󩄼KUq|J'),('.݁BxKY','wp-includes/ms-default-filters.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fr.L\\蒀i'),('[nG{\'q:','wp-includes/ms-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Y0a	G\0B'),('뭷\r!z}MLKE','wp-includes/ms-files.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѳoJ090Ahav'),('v%S[̪Ѿ','wp-includes/ms-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3\"IiYO)1B8'),('_jSX2QQ=','wp-includes/ms-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oy#3G'),('j&^b','wp-includes/ms-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','?}Ox&nAba'),('{Amm*K','wp-includes/nav-menu-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R},;r\\Mm'),('[Hn[P.~FU|','wp-includes/nav-menu.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\'45r_<hmJ'),('MRlBFu','wp-includes/option.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','^F(OEB@'),('N|Jвznsw','wp-includes/pluggable-deprecated.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','cd\0~5j'),('h0X-i^G`8','wp-includes/pluggable.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','-אL[m'),('\00qĊNy)','wp-includes/plugin.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',')d	pä̓'),(' CY','wp-includes/pomo/entry.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','흁`1La'),('48Vt+^X','wp-includes/pomo/mo.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ů0lD/i['),('[Kb28','wp-includes/pomo/po.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\n;#VV|o'),('1W;cN\"u','wp-includes/pomo/streams.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','s|-<ip'),('?ڟE$PF','wp-includes/pomo/translations.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','T~t:{>4V'),('atUq^!0ƣl','wp-includes/post-formats.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','JR֓L*Q)>'),('MIMrD-','wp-includes/post-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','oJ-|wA!'),('iY\0\nR)','wp-includes/post-thumbnail-template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\r/\"ئu;'),('0jlSK','wp-includes/post.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ќ@|g2'),(' A$ۤfCN37','wp-includes/query.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','wDu_\"3h0'),('KF\nOi},w','wp-includes/random_compat/byte_safe_strings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','utoyi'),('owЎ696I','wp-includes/random_compat/cast_to_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_vtZ;f0\\'),('v9b$L','wp-includes/random_compat/error_polyfill.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','YT~\Z\'\"l\nUe'),('jZ;\nlГ','wp-includes/random_compat/random.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','G|1[_s1'),('t.Õ81','wp-includes/random_compat/random_bytes_com_dotnet.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','erLVstr'),('?2yT!s|tu}','wp-includes/random_compat/random_bytes_dev_urandom.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','P<!=-faDh'),('[D?_[','wp-includes/random_compat/random_bytes_libsodium.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','f}>'),('N iiڭ','wp-includes/random_compat/random_bytes_libsodium_legacy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~F-&6,Q'),('%I}PzW','wp-includes/random_compat/random_bytes_mcrypt.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%l1/sŀl)wi'),('^ֺS^c','wp-includes/random_compat/random_bytes_openssl.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','iVKmD\'c'),('3I98\\֛[t','wp-includes/random_compat/random_int.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']m\riVi+Ԑ38'),('E-j1j\rE','wp-includes/registration-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KiLٸSH=Y'),('5\\h>w	N','wp-includes/registration.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','3f\\?dK'),('Ѝ3>#.','wp-includes/rest-api/class-wp-rest-request.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','=|Z1pW'),('V+@0pɏhi','wp-includes/rest-api/class-wp-rest-response.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ymclj$s,'),(':뭲cRPe(','wp-includes/rest-api/class-wp-rest-server.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','dL;\Z8PfR/*'),('Ú2d=','wp-includes/rest-api.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Q`BB$>7'),('_\0d MP~D','wp-includes/revision.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','KVT8\"F'),(')Oz=u˷','wp-includes/rewrite.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','IՒ+XI7'),('w\'6)','wp-includes/rss-functions.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1-8`KX'),('A1\Z;','wp-includes/rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`[^A:'),('9} B^?	\"','wp-includes/script-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','NWS\r71y13T'),('Eh@aq','wp-includes/session.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','~uFPVwҍh'),('Vne!z0u1?','wp-includes/shortcodes.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',']CtM'),('X=UpfpZ','wp-includes/taxonomy.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%O\\Ll\rZ'),(':+[gCZ','wp-includes/template-loader.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','lԶߵ\neȯL'),(':=%M۵','wp-includes/template.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','!⹄'),('>hЩXX*v1','wp-includes/theme-compat/comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\"b=Q\n~C}K'),('\"8A\n=ᇼfp5','wp-includes/theme-compat/embed-404.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','%\0ihq'),('fֈVԹ)9','wp-includes/theme-compat/embed-content.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V8߉܁;.'),('+q^eguF6\n','wp-includes/theme-compat/embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','rLEva36I'),('mL0N\"T~b','wp-includes/theme-compat/footer-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Z.+j'),('Qֿ6yq88','wp-includes/theme-compat/footer.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_s0l˿7~'),('&vAQcqw8,','wp-includes/theme-compat/header-embed.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','g+x&wfX'),('LbP-I׭1f','wp-includes/theme-compat/header.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0L@%\nP$'),('0;-,AEy','wp-includes/theme-compat/sidebar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','sHDl,\n'),('XVטO|8}','wp-includes/theme.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','R,nǕe'),('+qpW','wp-includes/update.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','#~,K ڹSf'),('kB˞b=y','wp-includes/user.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0.dMt)D'),('g+yrqD/','wp-includes/vars.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','ѓպJπ'),('5ZSμv`69','wp-includes/version.php',0,'@YZ','@YZ'),('Y,Qpgmu#e~','wp-includes/widgets/class-wp-nav-menu-widget.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','0DW͹0gx'),('TYPpEw','wp-includes/widgets/class-wp-widget-archives.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','W%1EA'),('I0S$2TB*','wp-includes/widgets/class-wp-widget-calendar.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','1̈́EW&o:'),('RH\r0!d?c&','wp-includes/widgets/class-wp-widget-categories.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_s&-&'),('&饱W؀|','wp-includes/widgets/class-wp-widget-links.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','_\\o@s2S'),('n֢\rV5,','wp-includes/widgets/class-wp-widget-meta.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','4\ZބEtU'),('Kc#2s/(\"','wp-includes/widgets/class-wp-widget-pages.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','`WIK\'2'),('6~e{\".w','wp-includes/widgets/class-wp-widget-recent-comments.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b`U#XWz'),('l/\nԀWͱ-c','wp-includes/widgets/class-wp-widget-recent-posts.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','b/O76>m<'),('y7MA@','wp-includes/widgets/class-wp-widget-rss.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\\Yޭ+P`I\''),('F\rxw~\rܱ\n','wp-includes/widgets/class-wp-widget-search.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','V~f2'),('-[ip\\^]','wp-includes/widgets/class-wp-widget-tag-cloud.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','RI~A1'),('\0 k~U5T','wp-includes/widgets/class-wp-widget-text.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','fbbn}ܕn'),('S&az8Jض9','wp-includes/widgets.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','mq-vX0+=4'),('@sB0<{l3','wp-includes/wlwmanifest.xml',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','Ԑi^'),('Let\"pc(	e','wp-includes/wp-db.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','(7x\'[+Q'),('(^3N3','wp-includes/wp-diff.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UUJJ5}x'),('^\'q0','wp-links-opml.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','\ndOwy|'),('$jX])D:','wp-load.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','>C^k2'),('\r\0FJBe','wp-login.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','UQXX`7]-A'),('3T.^ƙ<','wp-mail.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','577H͵5̵'),(';1ы#Y_Nt','wp-settings.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','<OӲ[gΧK'),(',4#(#','wp-signup.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','e\\q^'),('o㮚-;?X:pҡ','wp-trackback.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','.d#kl'),('4ڂL$,K[u','xmlrpc.php',1,'\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0','PἈrDlu');
/*!40000 ALTER TABLE `wp_wfFileMods` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfHits`
--

DROP TABLE IF EXISTS `wp_wfHits`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHits` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `attackLogTime` double(17,6) unsigned NOT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `jsRun` tinyint(4) DEFAULT '0',
  `statusCode` int(11) NOT NULL DEFAULT '0',
  `isGoogle` tinyint(4) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `newVisit` tinyint(3) unsigned NOT NULL,
  `URL` text,
  `referer` text,
  `UA` text,
  `action` varchar(64) NOT NULL DEFAULT '',
  `actionDescription` text,
  `actionData` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`IP`,`ctime`),
  KEY `attackLogTime` (`attackLogTime`)
) ENGINE=MyISAM AUTO_INCREMENT=12896 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfHits`
--

LOCK TABLES `wp_wfHits` WRITE;
/*!40000 ALTER TABLE `wp_wfHits` DISABLE KEYS */;
INSERT INTO `wp_wfHits` VALUES (11416,0.000000,1479209622.752256,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11415,0.000000,1479208835.526069,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11414,0.000000,1479207832.699336,'\0\0\0\0\0\0\0\0\0\0y',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(11413,0.000000,1479205020.740304,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/','http://1-99seo.com/try.php?u=http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','',NULL,NULL),(11412,0.000000,1479205013.547287,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://fiepfa.org/','http://1-99seo.com/try.php?u=http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/32.0.1700.107 Safari/537.36','',NULL,NULL),(11411,0.000000,1479204470.459189,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11410,0.000000,1479202390.516757,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11409,0.000000,1479202349.422422,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11408,0.000000,1479200514.927577,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11406,0.000000,1479195384.522619,'\0\0\0\0\0\0\0\0\0\07\'.',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11407,0.000000,1479198304.533025,'\0\0\0\0\0\0\0\0\0\0BOx',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11405,0.000000,1479195382.010842,'\0\0\0\0\0\0\0\0\0\07\'.',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11404,0.000000,1479194341.394227,'\0\0\0\0\0\0\0\0\0\0BOx',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11403,0.000000,1479193665.934170,'\0\0\0\0\0\0\0\0\0\0Bb',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11402,0.000000,1479190701.594567,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11400,0.000000,1479187837.442720,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11401,0.000000,1479190698.912512,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11399,0.000000,1479187798.909460,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11398,0.000000,1479186096.893519,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11397,0.000000,1479183850.542869,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11396,0.000000,1479183848.543960,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=5','http://www.fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11395,0.000000,1479183847.415135,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=4','http://www.fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11394,0.000000,1479183846.042134,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=3','http://www.fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11393,0.000000,1479183844.932395,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=2','http://www.fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11392,0.000000,1479183843.656780,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/?author=1','http://www.fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11390,0.000000,1479183841.111912,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11391,0.000000,1479183842.454233,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11389,0.000000,1479183829.308360,'\0\0\0\0\0\0\0\0\0\0[L',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11388,0.000000,1479180972.963571,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11387,0.000000,1479178451.194378,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11386,0.000000,1479177588.331531,'\0\0\0\0\0\0\0\0\0\0ܵln',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11385,0.000000,1479174376.839427,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/feed/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11384,0.000000,1479174374.406019,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11383,0.000000,1479174372.612906,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11382,0.000000,1479173901.650869,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11381,0.000000,1479173473.131230,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11379,0.000000,1479173367.738940,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11380,0.000000,1479173431.056754,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11378,0.000000,1479170877.840594,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/comments/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11377,0.000000,1479168185.120783,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11375,0.000000,1479167542.059325,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=7','','','',NULL,NULL),(11376,0.000000,1479168182.996659,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11372,0.000000,1479167537.126287,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=4','','','',NULL,NULL),(11373,0.000000,1479167538.604324,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=5','','','',NULL,NULL),(11374,0.000000,1479167540.248390,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=6','','','',NULL,NULL),(11371,0.000000,1479167535.429987,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=3','','','',NULL,NULL),(11330,0.000000,1479048700.353466,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','lockedOut','Exceeded the maximum number of login failures which is: 20. The last username they tried to sign in with was: \'Admin\'',NULL),(11329,0.000000,1479048699.203808,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11328,0.000000,1479048697.722393,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11327,0.000000,1479048696.323696,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11326,0.000000,1479048694.998908,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11325,0.000000,1479048693.918993,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11324,0.000000,1479048692.912341,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11323,0.000000,1479048691.935400,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11322,0.000000,1479048690.808717,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11321,0.000000,1479048689.252273,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11320,0.000000,1479048688.219379,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11319,0.000000,1479048686.723508,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11318,0.000000,1479048685.405676,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11317,0.000000,1479048684.206351,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11316,0.000000,1479048682.803126,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11315,0.000000,1479048681.521824,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11314,0.000000,1479048680.205953,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11313,0.000000,1479048678.896257,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11312,0.000000,1479048677.635241,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,3,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailValidUsername',NULL,NULL),(11311,0.000000,1479048676.047983,'\0\0\0\0\0\0\0\0\0\0Úi',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','loginFailInvalidUsername',NULL,NULL),(11331,0.000000,1479087281.621641,'\0\0\0\0\0\0\0\0\0\0]',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11332,0.000000,1479087307.152369,'\0\0\0\0\0\0\0\0\0\06',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11333,0.000000,1479125951.836067,'\0\0\0\0\0\0\0\0\0\0I#-',0,200,0,1,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php?redirect_to=http%3A%2F%2Fwww.fiepfa.org%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36','loginFailValidUsername',NULL,NULL),(11334,0.000000,1479125960.225025,'\0\0\0\0\0\0\0\0\0\0I#-',0,200,0,1,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36','loginOK',NULL,NULL),(11335,0.000000,1479126827.561143,'\0\0\0\0\0\0\0\0\0\0I#-',0,200,0,1,0,'http://www.fiepfa.org/wp-login.php?action=logout&_wpnonce=a059fbc6ff','http://www.fiepfa.org/wp-admin/admin.php?page=WordfenceSecOpt','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36','logout',NULL,NULL),(11310,1479048667.237655,1479048666.990000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L21vZHVsZXMvbW9kX3NpbXBsZWZpbGV1cGxvYWR2MS4zL2VsZW1lbnRzL3VkZC5waHA=\",\"category\":\"file_upload\",\"ssl\":0}'),(11336,0.000000,1479126829.742098,'\0\0\0\0\0\0\0\0\0\0I#-',1,200,0,0,0,'http://www.fiepfa.org/wp-login.php?loggedout=true','http://www.fiepfa.org/wp-admin/admin.php?page=WordfenceSecOpt','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36','',NULL,NULL),(11309,1479048660.499034,1479048660.020000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3NpdGVzL2FsbC9saWJyYXJpZXMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5taW5pbWFsLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(11300,0.000000,1478995845.624752,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11299,0.000000,1478960166.917729,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11301,0.000000,1479045139.742432,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11302,1479048644.935910,1479048644.620000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbeWl3X2NvbnRhY3RdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"Lw==\",\"category\":\"file_upload\",\"ssl\":0}'),(11366,0.000000,1479166197.911551,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11367,0.000000,1479166237.527207,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11368,0.000000,1479167529.102497,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','','',NULL,NULL),(11369,0.000000,1479167531.805982,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=1','','','',NULL,NULL),(11370,0.000000,1479167533.627541,'\0\0\0\0\0\0\0\0\0\0q/',0,200,0,0,0,'http://fiepfa.org/?author=2','','','',NULL,NULL),(11303,1479048651.558873,1479048651.230000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/license.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L2xpY2Vuc2UucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11298,1478951688.742100,1478951688.330000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org//modules/mod_simplefileuploadv1.3/elements/udd.php','http://www.fiepfa.org//modules/mod_simplefileuploadv1.3/elements/udd.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"Ly9tb2R1bGVzL21vZF9zaW1wbGVmaWxldXBsb2FkdjEuMy9lbGVtZW50cy91ZGQucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11358,0.000000,1479159235.124815,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11359,0.000000,1479159283.096417,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11360,0.000000,1479162057.936544,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11361,0.000000,1479162274.749658,'\0\0\0\0\0\0\0\0\0\06F',0,200,0,0,0,'http://fiepfa.org/robots.txt','','','',NULL,NULL),(11362,0.000000,1479162276.245479,'\0\0\0\0\0\0\0\0\0\06F',0,200,0,0,0,'http://fiepfa.org/','','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','',NULL,NULL),(11363,0.000000,1479162277.714900,'\0\0\0\0\0\0\0\0\0\06F',0,200,0,0,0,'http://www.fiepfa.org/','http://fiepfa.org/','CheckMarkNetwork/1.0 (+http://www.checkmarknetwork.com/spider.html)','',NULL,NULL),(11304,1479048647.933034,1479048647.530000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Slider Revolution: Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"60\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvcGZhc3RpbmdyYXlzL3B1YmxpY19odG1sL3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11297,1478951682.924952,1478951682.650000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org//wp-content/plugins/woocommerce-product-options/includes/image-upload.php','http://www.fiepfa.org//wp-content/plugins/woocommerce-product-options/includes/image-upload.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"Ly93cC1jb250ZW50L3BsdWdpbnMvd29vY29tbWVyY2UtcHJvZHVjdC1vcHRpb25zL2luY2x1ZGVzL2ltYWdlLXVwbG9hZC5waHA=\",\"category\":\"file_upload\",\"ssl\":0}'),(11522,0.000000,1479299004.650610,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11296,1478951675.797978,1478951675.580000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php','http://www.fiepfa.org//wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZXNdWzBd\",\"paramValue\":\"MzY1MDgyMjMucGhw\",\"path\":\"Ly93cC1jb250ZW50L3BsdWdpbnMvanF1ZXJ5LWh0bWw1LWZpbGUtdXBsb2FkL2pxdWVyeS1odG1sNS1maWxlLXVwbG9hZC5waHA=\",\"category\":\"file_upload\",\"ssl\":0}'),(11364,0.000000,1479163799.630340,'\0\0\0\0\0\0\0\0\0\0Ú³',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(11365,1479163799.528168,1479163798.940000,'\0\0\0\0\0\0\0\0\0\0Ú³',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','logged:waf','Watched IP Traffic: 195.154.194.179','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\",\"category\":\"logged\",\"ssl\":0}'),(11305,1479048657.235616,1479048656.800000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=%2F&type=file&feid=&obfuscate=&sessidpass=',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3RpbnlfbWNlL3BsdWdpbnMvdGlueWJyb3dzZXIvdXBsb2FkX2ZpbGUucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11353,0.000000,1479152040.396816,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11295,1478951676.701621,1478951676.420000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org//wp-admin/admin-ajax.php?action=load_ajax_function','http://www.fiepfa.org//wp-admin/admin-ajax.php?action=load_ajax_function','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZXNdWzBd\",\"paramValue\":\"MzY1MDgyMjMucGhw\",\"path\":\"Ly93cC1hZG1pbi9hZG1pbi1hamF4LnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(11349,0.000000,1479148304.529364,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11350,0.000000,1479148348.444523,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11351,0.000000,1479150094.209601,'\0\0\0\0\0\0\0\0\0\0]< ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0) Match by Siteimprove.com','',NULL,NULL),(11352,0.000000,1479151995.356321,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11306,1479048654.744227,1479048654.310000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/uploadify/uploadify.php?folder=%2F',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3VwbG9hZGlmeS91cGxvYWRpZnkucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11294,1478951671.740274,1478951671.360000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/php/connector.minimal.php','http://www.fiepfa.org/sites/all/libraries/elfinder/php/connector.minimal.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"NTc0NTgzMy5waHA=\",\"path\":\"L3NpdGVzL2FsbC9saWJyYXJpZXMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5taW5pbWFsLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(11354,0.000000,1479152178.153442,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11355,0.000000,1479152204.360260,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11356,0.000000,1479156825.022856,'\0\0\0\0\0\0\0\0\0\0{}GY',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11357,0.000000,1479158797.964011,'\0\0\0\0\0\0\0\0\0\02',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11307,1479048664.431986,1479048664.120000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/woocommerce-product-options/includes/image-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93b29jb21tZXJjZS1wcm9kdWN0LW9wdGlvbnMvaW5jbHVkZXMvaW1hZ2UtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(11293,1478951660.899228,1478951660.480000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=%2F&type=file&feid=&obfuscate=&sessidpass=','http://www.fiepfa.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=/&type=file&feid=&obfuscate=&sessidpass=','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3RpbnlfbWNlL3BsdWdpbnMvdGlueWJyb3dzZXIvdXBsb2FkX2ZpbGUucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11338,0.000000,1479128619.602667,'\0\0\0\0\0\0\0\0\0\0.\r',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11339,0.000000,1479130268.934779,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11340,0.000000,1479130310.541672,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11341,0.000000,1479137601.951605,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11292,1478951572.932452,1478951572.670000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/uploadify/uploadify.php?folder=%2F','http://www.fiepfa.org/uploadify/uploadify.php?folder=/','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3VwbG9hZGlmeS91cGxvYWRpZnkucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11337,0.000000,1479128599.739053,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11308,1479048662.255897,1479048662.000000,'\0\0\0\0\0\0\0\0\0\0Úi',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZXNdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9qcXVlcnktaHRtbDUtZmlsZS11cGxvYWQvanF1ZXJ5LWh0bWw1LWZpbGUtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(11345,0.000000,1479141099.142049,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11291,1478951563.422975,1478951563.000000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/license.php','http://www.fiepfa.org/license.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L2xpY2Vuc2UucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11288,0.000000,1478926292.812354,'\0\0\0\0\0\0\0\0\0\0>M',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11289,1478951559.029984,1478951558.620000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbeWl3X2NvbnRhY3RdWzBd\",\"paramValue\":\"MTE3OTQyMS5waHA=\",\"path\":\"Lw==\",\"category\":\"file_upload\",\"ssl\":0}'),(11342,0.000000,1479137651.030179,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11343,0.000000,1479139013.659159,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/playground/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11344,0.000000,1479141056.657119,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11290,1478951567.829649,1478951567.590000,'\0\0\0\0\0\0\0\0\0\0>Ң',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-ajax.php','http://www.fiepfa.org/wp-admin/admin-ajax.php','Mozilla/5.0 (Windows; Windows NT 5.1; en-US) Firefox/3.5.0','blocked:waf','Slider Revolution: Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"60\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvcGZhc3RpbmdyYXlzL3B1YmxpY19odG1sL3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11287,1478838871.508024,1478838871.050000,'\0\0\0\0\0\0\0\0\0\0ц',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-post.php?task=wpmp_upload_previews',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLXBvc3QucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11346,0.000000,1479142789.318856,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11347,0.000000,1479144652.425251,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11286,1478838863.213241,1478838862.760000,'\0\0\0\0\0\0\0\0\0\0ц',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11285,0.000000,1478764921.951244,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11281,1478487436.919047,1478487436.650000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/woocommerce-product-addons/Gruntfile.js',NULL,'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','logged:waf','Watched IP Traffic: 195.154.183.187','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93b29jb21tZXJjZS1wcm9kdWN0LWFkZG9ucy9HcnVudGZpbGUuanM=\",\"category\":\"logged\",\"ssl\":0}'),(11282,0.000000,1478507354.641939,'\0\0\0\0\0\0\0\0\0\0.',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11283,1478508039.720249,1478508039.340000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/addblockblocker/readme.txt',NULL,'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','logged:waf','Watched IP Traffic: 195.154.183.187','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hZGRibG9ja2Jsb2NrZXIvcmVhZG1lLnR4dA==\",\"category\":\"logged\",\"ssl\":0}'),(11280,1478445946.973893,1478445946.640000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/attachment-manager/readme.txt',NULL,'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','logged:waf','Watched IP Traffic: 195.154.183.187','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9hdHRhY2htZW50LW1hbmFnZXIvcmVhZG1lLnR4dA==\",\"category\":\"logged\",\"ssl\":0}'),(11279,1478413879.408057,1478413879.050000,'\0\0\0\0\0\0\0\0\0\0[;',0,403,0,0,0,'http://fiepfa.org/?gf_page=upload',NULL,'Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2dmb3JtX3VuaXF1ZV9pZF0=\",\"paramValue\":\"Li4vLi4vLi4vLi4v\",\"path\":\"Lw==\",\"category\":\"lfi\",\"ssl\":0}'),(11348,0.000000,1479144693.002727,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11284,0.000000,1478712847.797660,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11278,1478413880.273146,1478413879.890000,'\0\0\0\0\0\0\0\0\0\0[;',0,403,0,0,0,'http://fiepfa.org/?gf_page=upload',NULL,'Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0','blocked:waf','Directory Traversal','{\"learningMode\":0,\"failedRules\":\"12\",\"paramKey\":\"cmVxdWVzdC5ib2R5W2dmb3JtX3VuaXF1ZV9pZF0=\",\"paramValue\":\"Li4vLi4vLi4vLi4v\",\"path\":\"Lw==\",\"category\":\"lfi\",\"ssl\":0}'),(11277,1478363133.294603,1478363132.950000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/genesis-simple-defaults/readme.txt',NULL,'Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','logged:waf','Watched IP Traffic: 195.154.183.187','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9nZW5lc2lzLXNpbXBsZS1kZWZhdWx0cy9yZWFkbWUudHh0\",\"category\":\"logged\",\"ssl\":0}'),(11276,0.000000,1478335792.225779,'\0\0\0\0\0\0\0\0\0\0Pa',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11275,0.000000,1478314631.835431,'\0\0\0\0\0\0\0\0\0\02s',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11274,1478268764.770352,1478268764.510000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11273,1478268765.602526,1478268765.330000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11272,0.000000,1478268688.006971,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11271,1478268292.513128,1478268292.200000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11270,1478268396.329306,1478268396.010000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11269,1478268400.335985,1478268399.940000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11268,1478268498.418230,1478268498.000000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11267,1478268499.401104,1478268499.000000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11266,1478268587.673782,1478268587.420000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11265,1478268588.487318,1478268588.190000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11264,0.000000,1478268676.086793,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11263,1478268064.475717,1478268064.150000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11262,1478268068.235661,1478268068.050000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11261,1478268177.126863,1478268176.940000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11260,1478268178.012360,1478268177.650000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11259,0.000000,1478268289.624623,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11258,0.000000,1478267948.607685,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11257,1478267617.828498,1478267617.580000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11256,1478267722.802667,1478267722.520000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11255,1478267723.691632,1478267723.340000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11254,1478267829.608107,1478267829.200000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11253,1478267830.500496,1478267830.210000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11252,0.000000,1478267942.815592,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11251,0.000000,1478267615.476264,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11250,1478267400.725008,1478267399.780000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11249,1478267401.798810,1478267401.460000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11248,1478267509.825646,1478267509.450000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11247,1478267513.693888,1478267513.390000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11246,1478267300.884599,1478267300.520000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11245,0.000000,1478267297.202178,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11244,1478266958.104955,1478266957.830000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11243,1478267064.135910,1478267063.880000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11242,1478267068.084358,1478267067.690000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11241,1478267178.170175,1478267177.870000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11240,1478267179.228406,1478267178.730000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11239,1478266732.785034,1478266732.530000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11238,1478266736.681738,1478266736.290000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11237,1478266841.585777,1478266841.170000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11236,1478266845.590765,1478266845.160000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11235,0.000000,1478266955.127647,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11234,0.000000,1478266627.800002,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11233,1478266373.711703,1478266373.380000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11232,1478266374.707752,1478266374.290000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11231,1478266505.681987,1478266505.460000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11230,1478266506.537094,1478266506.210000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11229,0.000000,1478266622.128294,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11228,0.000000,1478266240.391874,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11227,1478265979.533034,1478265979.190000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11226,1478265980.529268,1478265980.150000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11225,1478266106.736510,1478266106.480000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11224,1478266107.725415,1478266107.330000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11223,0.000000,1478266237.984540,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11222,0.000000,1478265853.783605,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11221,1478265589.323107,1478265588.930000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11220,1478265593.321848,1478265593.020000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11219,1478265716.508032,1478265716.140000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11218,1478265717.518978,1478265717.110000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11217,0.000000,1478265850.893446,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11216,0.000000,1478265468.706553,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11215,1478265089.276448,1478265088.860000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11214,1478265213.615278,1478265213.400000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11213,1478265217.384323,1478265217.140000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11212,1478265340.016164,1478265339.650000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11211,1478265340.974560,1478265340.620000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11210,0.000000,1478265466.332534,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11209,1478264716.830483,1478264716.440000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11208,1478264834.929040,1478264834.640000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11207,1478264835.909029,1478264835.540000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11206,1478264957.981012,1478264957.590000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11205,1478264958.982325,1478264958.570000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11204,0.000000,1478265086.329284,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11203,0.000000,1478264714.638809,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11202,1478264335.505939,1478264335.130000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11201,1478264458.322252,1478264457.910000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11200,1478264459.168545,1478264458.930000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11199,1478264584.798109,1478264584.390000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11198,1478264594.793595,1478264594.480000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11197,1478264064.831027,1478264064.600000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11196,1478264078.915506,1478264078.510000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11195,1478264193.929302,1478264193.540000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11194,1478264194.971028,1478264194.560000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11193,0.000000,1478264323.677667,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11192,0.000000,1478263946.876985,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11191,0.000000,1478263934.978305,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11190,1478263497.400246,1478263496.990000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11189,1478263508.678564,1478263508.130000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11188,0.000000,1478263376.022222,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11186,1478263254.990715,1478263254.770000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12829,0.000000,1480292932.626870,'\0\0\0\0\0\0\0\0\0\0sR)',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11181,1478262764.879706,1478262764.540000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12794,1480272710.647545,1480272710.220000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/uploadify/uploadify.php?folder=%2F',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3VwbG9hZGlmeS91cGxvYWRpZnkucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12830,1480292934.332507,1480292933.810000,'\0\0\0\0\0\0\0\0\0\0sR)',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12831,0.000000,1480296615.542641,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12832,0.000000,1480296655.644907,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12833,0.000000,1480297248.026289,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12834,0.000000,1480297250.965011,'\0\0\0\0\0\0\0\0\0\0A9',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12835,0.000000,1480300162.276521,'\0\0\0\0\0\0\0\0\0\0.\rg',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12836,0.000000,1480301473.143067,'\0\0\0\0\0\0\0\0\0\0a<',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12837,0.000000,1480302732.664230,'\0\0\0\0\0\0\0\0\0\0BU',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-february-2016/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12876,0.000000,1480345181.331005,'\0\0\0\0\0\0\0\0\0\0z',0,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(12877,0.000000,1480345239.163864,'\0\0\0\0\0\0\0\0\0\0z',1,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/','https://www.google.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(12878,0.000000,1480345272.005568,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12879,0.000000,1480347179.858236,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12880,0.000000,1480347227.510931,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12881,0.000000,1480349803.231989,'\0\0\0\0\0\0\0\0\0\0ܵl',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12882,0.000000,1480350081.540536,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12883,0.000000,1480350092.524749,'\0\0\0\0\0\0\0\0\0\0BOx',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12884,0.000000,1480354259.553970,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12885,0.000000,1480354299.029786,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12886,0.000000,1480356605.856825,'\0\0\0\0\0\0\0\0\0\0I#-',1,200,0,0,0,'http://www.fiepfa.org/wp-login.php?redirect_to=http%3A%2F%2Fwww.fiepfa.org%2Fwp-admin%2F&reauth=1','','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(12887,0.000000,1480356663.931988,'\0\0\0\0\0\0\0\0\0\0I#-',1,200,0,1,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php?redirect_to=http%3A%2F%2Fwww.fiepfa.org%2Fwp-admin%2F&reauth=1','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','loginOK',NULL,NULL),(12888,0.000000,1480357570.933562,'\0\0\0\0\0\0\0\0\0\0I#-',1,200,0,1,0,'http://www.fiepfa.org/wp-login.php?action=logout&_wpnonce=83147a0de7','http://www.fiepfa.org/wp-admin/options-general.php?page=updraftplus','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','logout',NULL,NULL),(12889,0.000000,1480357572.825886,'\0\0\0\0\0\0\0\0\0\0I#-',1,200,0,0,0,'http://www.fiepfa.org/wp-login.php?loggedout=true','http://www.fiepfa.org/wp-admin/options-general.php?page=updraftplus','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(12890,0.000000,1480361250.116887,'\0\0\0\0\0\0\0\0\0\0R',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12891,1480361254.224891,1480361253.730000,'\0\0\0\0\0\0\0\0\0\0R',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11187,1478263157.236785,1478263156.860000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12892,1480361253.128870,1480361252.410000,'\0\0\0\0\0\0\0\0\0\0R',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12893,0.000000,1480361632.819908,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12894,0.000000,1480361679.131530,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12895,0.000000,1480361986.411260,'\0\0\0\0\0\0\0\0\0\0\'.6',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12346,1480007379.261369,1480007378.820000,'\0\0\0\0\0\0\0\0\0\0MN',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12347,0.000000,1480008370.133678,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12348,0.000000,1480008652.721847,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12349,0.000000,1480008694.617623,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12350,0.000000,1480008768.929944,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12351,0.000000,1480009096.905225,'\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12352,0.000000,1480009561.369014,'\0\0\0\0\0\0\0\0\0\0]>',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12353,0.000000,1480010197.240962,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12354,1480009568.334089,1480009567.600000,'\0\0\0\0\0\0\0\0\0\0]>',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12355,1480009566.358549,1480009565.950000,'\0\0\0\0\0\0\0\0\0\0]>',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12356,0.000000,1480010202.171065,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12357,0.000000,1480013927.936256,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12358,0.000000,1480015008.473397,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F03%2F23%2Fmake-a-difference-by-becoming-a-pfa-officer%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12359,0.000000,1480015184.421324,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12360,0.000000,1480015936.811653,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12361,0.000000,1480015981.826110,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12362,0.000000,1480017287.919058,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12363,0.000000,1480018737.014261,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12364,0.000000,1480018857.364454,'\0\0\0\0\0\0\0\0\0\0ihX',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12365,0.000000,1480019238.515627,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12366,1480018861.665366,1480018860.830000,'\0\0\0\0\0\0\0\0\0\0ihX',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12367,1480018859.324406,1480018858.650000,'\0\0\0\0\0\0\0\0\0\0ihX',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12368,0.000000,1480019604.515688,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12369,0.000000,1480019653.166698,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12370,0.000000,1480020069.733230,'\0\0\0\0\0\0\0\0\0\0»u',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12371,0.000000,1480020071.616896,'\0\0\0\0\0\0\0\0\0\0»u',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12372,0.000000,1480022145.316455,'\0\0\0\0\0\0\0\0\0\0\r',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12373,0.000000,1480022680.116272,'\0\0\0\0\0\0\0\0\0\0{}G7',0,200,0,0,0,'http://www.fiepfa.org/category/news/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12374,1480022148.272501,1480022147.630000,'\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12375,1480022146.945342,1480022146.280000,'\0\0\0\0\0\0\0\0\0\0\r',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12376,0.000000,1480023154.833096,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12377,0.000000,1480023200.736753,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12378,0.000000,1480023335.954849,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fprivacy-policy%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12379,0.000000,1480023790.534555,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12380,0.000000,1480023796.708531,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12381,0.000000,1480023797.774445,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12382,0.000000,1480023799.039320,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=1','http://www.fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12383,0.000000,1480023800.128530,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=2','http://www.fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12384,0.000000,1480023801.108370,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=3','http://www.fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12385,0.000000,1480023807.414271,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=4','http://www.fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12386,0.000000,1480023808.518779,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=5','http://www.fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12387,0.000000,1480023810.444845,'\0\0\0\0\0\0\0\0\0\0[!',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12388,0.000000,1480024189.934152,'\0\0\0\0\0\0\0\0\0\0Or',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12389,0.000000,1480024231.114959,'\0\0\0\0\0\0\0\0\0\0X',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12390,1480024192.862737,1480024192.190000,'\0\0\0\0\0\0\0\0\0\0Or',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12391,1480024191.509418,1480024190.760000,'\0\0\0\0\0\0\0\0\0\0Or',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12392,0.000000,1480025344.865004,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fprivacy-policy%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12393,1480024235.352594,1480024234.920000,'\0\0\0\0\0\0\0\0\0\0X',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12394,1480024234.159902,1480024233.540000,'\0\0\0\0\0\0\0\0\0\0X',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12395,0.000000,1480025471.569298,'\0\0\0\0\0\0\0\0\0\0S\Zn',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12396,0.000000,1480025473.057955,'\0\0\0\0\0\0\0\0\0\0S\Zn',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12397,0.000000,1480025474.366821,'\0\0\0\0\0\0\0\0\0\0S\Zn',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12398,0.000000,1480025691.748343,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12399,0.000000,1480028092.915702,'\0\0\0\0\0\0\0\0\0\0N',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12400,0.000000,1480029306.443143,'\0\0\0\0\0\0\0\0\0\0d+',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(12401,0.000000,1480029787.831869,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12402,0.000000,1480030195.559322,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12403,0.000000,1480030235.471235,'\0\0\0\0\0\0\0\0\0\0L\n',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12404,0.000000,1480031338.723914,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12405,0.000000,1480031820.736357,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12406,0.000000,1480031910.908608,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/category/news/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12407,0.000000,1480032474.266276,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12408,0.000000,1480037489.573111,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12409,0.000000,1480037533.358697,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12410,0.000000,1480037534.756742,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12411,0.000000,1480038040.516545,'\0\0\0\0\0\0\0\0\0\0Y{-p',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12412,1480038044.151629,1480038042.570000,'\0\0\0\0\0\0\0\0\0\0Y{-p',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12413,0.000000,1480038141.017559,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12414,0.000000,1480038417.271420,'\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12415,0.000000,1480040424.877993,'\0\0\0\0\0\0\0\0\0\0q;o',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12416,0.000000,1480040426.673338,'\0\0\0\0\0\0\0\0\0\0q;o',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12417,0.000000,1480044889.763366,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12418,0.000000,1480044941.272469,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12419,0.000000,1480049054.169151,'\0\0\0\0\0\0\0\0\0\02t',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12420,0.000000,1480050343.229948,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12421,0.000000,1480050346.109114,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12422,0.000000,1480051534.348732,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12423,0.000000,1480051613.929354,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12424,0.000000,1480054022.575062,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12425,1480051620.130236,1480051619.490000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12426,1480051615.550545,1480051615.030000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12427,0.000000,1480054696.425049,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12428,0.000000,1480054699.370407,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12429,0.000000,1480059087.741357,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12430,0.000000,1480059130.946634,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12431,0.000000,1480062388.126115,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12432,0.000000,1480063898.909534,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=673','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12433,0.000000,1480063902.438465,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12434,0.000000,1480064408.907331,'\0\0\0\0\0\0\0\0\0\0ii',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12435,0.000000,1480066313.660425,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12436,0.000000,1480066358.859573,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12437,0.000000,1480066997.038215,'\0\0\0\0\0\0\0\0\0\0sG',0,200,0,0,0,'http://www.fiepfa.org/','','','',NULL,NULL),(12438,0.000000,1480067033.764827,'\0\0\0\0\0\0\0\0\0\0sG',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','','',NULL,NULL),(12439,0.000000,1480067037.027762,'\0\0\0\0\0\0\0\0\0\0sG',0,200,0,0,0,'http://www.fiepfa.org/?author=2','','','',NULL,NULL),(12440,0.000000,1480067042.775058,'\0\0\0\0\0\0\0\0\0\0sG',0,200,0,0,0,'http://www.fiepfa.org/?author=3','','','',NULL,NULL),(12441,0.000000,1480067045.472479,'\0\0\0\0\0\0\0\0\0\0sG',0,200,0,0,0,'http://www.fiepfa.org/?author=4','','','',NULL,NULL),(12442,0.000000,1480071623.239246,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12443,0.000000,1480073546.656985,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12444,0.000000,1480073592.530928,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12445,0.000000,1480074709.009194,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12446,0.000000,1480075136.330977,'\0\0\0\0\0\0\0\0\0\0pW',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12447,0.000000,1480076717.944263,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12448,0.000000,1480077069.062133,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12449,0.000000,1480077113.565444,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12450,0.000000,1480079286.037250,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12451,0.000000,1480079289.144666,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12452,0.000000,1480079290.705812,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12453,0.000000,1480079387.771003,'\0\0\0\0\0\0\0\0\0\01',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12454,0.000000,1480080608.710136,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12455,1480079392.727816,1480079392.160000,'\0\0\0\0\0\0\0\0\0\01',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12456,1480079390.820015,1480079390.400000,'\0\0\0\0\0\0\0\0\0\01',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12457,0.000000,1480080648.838960,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12458,0.000000,1480082109.421156,'\0\0\0\0\0\0\0\0\0\0X<',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12459,1480082116.538388,1480082116.070000,'\0\0\0\0\0\0\0\0\0\0X<',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12460,1480082112.018459,1480082111.400000,'\0\0\0\0\0\0\0\0\0\0X<',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12461,0.000000,1480082410.434772,'\0\0\0\0\0\0\0\0\0\0zo6',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12462,1480082414.833359,1480082414.120000,'\0\0\0\0\0\0\0\0\0\0zo6',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12463,1480082412.835754,1480082412.310000,'\0\0\0\0\0\0\0\0\0\0zo6',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12464,0.000000,1480083631.039407,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12465,0.000000,1480083638.311360,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12466,0.000000,1480084164.571315,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/category/news/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12467,0.000000,1480084288.044184,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12468,0.000000,1480084709.444624,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12469,0.000000,1480085134.279057,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12470,0.000000,1480086377.640139,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12471,0.000000,1480087096.428367,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12472,0.000000,1480087276.950021,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12473,0.000000,1480088026.434594,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12474,0.000000,1480088076.350616,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12475,0.000000,1480088273.168768,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12476,0.000000,1480088331.007852,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12477,0.000000,1480089669.860298,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12478,0.000000,1480089715.932689,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12479,0.000000,1480089821.961657,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12480,0.000000,1480089919.862330,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12481,0.000000,1480089962.768189,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12482,0.000000,1480090189.216867,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (compatible; DuckDuckGo-Favicons-Bot/1.0; +http://duckduckgo.com)','',NULL,NULL),(12483,0.000000,1480090353.517527,'\0\0\0\0\0\0\0\0\0\0D',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12484,0.000000,1480090813.362910,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12485,0.000000,1480090859.406830,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12486,0.000000,1480091268.266388,'\0\0\0\0\0\0\0\0\0\0»k',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12487,0.000000,1480091416.563571,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12488,0.000000,1480091457.049290,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12489,0.000000,1480093046.368039,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11988,0.000000,1479708547.337910,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/maill.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(12075,0.000000,1479778248.952778,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11989,0.000000,1479708645.929025,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/includes.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11990,0.000000,1479708716.808565,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/configurationbak.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11991,0.000000,1479708717.318501,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/configurationbak.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11992,0.000000,1479708998.655244,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11993,0.000000,1479709001.022766,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11994,0.000000,1479710798.928892,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11995,0.000000,1479711336.354947,'\0\0\0\0\0\0\0\0\0\0>Ҕ[',0,404,0,0,0,'http://www.fiepfa.org/JasperFitch.php?login=cmd','http://www.fiepfa.org/JasperFitch.php?login=cmd','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36','',NULL,NULL),(11996,0.000000,1479711668.656326,'\0\0\0\0\0\0\0\0\0\0U][T',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; DeuSu/5.0.2; +https://deusu.de/robot.html)','',NULL,NULL),(11997,0.000000,1479711670.710253,'\0\0\0\0\0\0\0\0\0\0U][T',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','','Mozilla/5.0 (compatible; DeuSu/5.0.2; +https://deusu.de/robot.html)','',NULL,NULL),(11998,0.000000,1479713011.551575,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11999,0.000000,1479713013.064222,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12000,0.000000,1479713014.451216,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12001,0.000000,1479713015.734835,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12002,0.000000,1479713017.307523,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-february-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12003,0.000000,1479713019.074939,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12004,0.000000,1479713021.016281,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12005,0.000000,1479713022.430685,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12006,0.000000,1479713025.345161,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12007,0.000000,1479713026.108120,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12008,0.000000,1479713028.154798,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12009,0.000000,1479713029.671438,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12010,0.000000,1479713030.444467,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12011,0.000000,1479713033.107765,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12012,0.000000,1479713042.965944,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12013,0.000000,1479713044.844094,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12014,0.000000,1479713563.943295,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12015,0.000000,1479713609.827494,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12016,0.000000,1479716545.320576,'\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'http://www.fiepfa.org/2016/04/27/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12017,0.000000,1479717098.764665,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12018,0.000000,1479718297.139919,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12019,0.000000,1479718299.131887,'\0\0\0\0\0\0\0\0\0\0Bg',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12020,0.000000,1479720763.866142,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12021,0.000000,1479720812.331912,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12022,0.000000,1479727999.258327,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12023,0.000000,1479728050.120165,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12024,0.000000,1479728577.723126,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12025,0.000000,1479731578.670935,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12026,0.000000,1479733711.014754,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12027,0.000000,1479734913.928501,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12028,0.000000,1479735091.207177,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12029,0.000000,1479735135.623022,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12030,0.000000,1479736280.947334,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/login.php?login=cmd','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(12031,0.000000,1479742426.019322,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12032,0.000000,1479742474.349405,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12033,0.000000,1479745231.636130,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/about/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12034,0.000000,1479747464.626017,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/page/2/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12035,0.000000,1479749433.477190,'\0\0\0\0\0\0\0\0\0\0Hgj',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12036,0.000000,1479749483.342908,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12037,0.000000,1479749525.367287,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12038,0.000000,1479751396.163301,'\0\0\0\0\0\0\0\0\0\0-C',0,200,0,0,0,'http://fiepfa.org/wp-content/themes/twentythirteen/author.php','http://fiepfa.org/wp-content/themes/twentythirteen/author.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','',NULL,NULL),(12039,0.000000,1479751397.823922,'\0\0\0\0\0\0\0\0\0\0-C',0,404,0,0,0,'http://www.fiepfa.org/wp-content/themes/twentythirteen/author.php','http://www.fiepfa.org/wp-content/themes/twentythirteen/author.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','',NULL,NULL),(12040,0.000000,1479752185.916265,'\0\0\0\0\0\0\0\0\0\0B@p',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12041,0.000000,1479753922.739146,'\0\0\0\0\0\0\0\0\0\0>Ҕ[',0,404,0,0,0,'http://www.fiepfa.org/Good-404-Sorry.php','http://www.fiepfa.org/Good-404-Sorry.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36','',NULL,NULL),(12042,0.000000,1479754301.227045,'\0\0\0\0\0\0\0\0\0\0BR',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-november-2015/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12043,0.000000,1479755639.336492,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12044,0.000000,1479756375.320374,'\0\0\0\0\0\0\0\0\0\0#U',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12045,0.000000,1479756376.425915,'\0\0\0\0\0\0\0\0\0\0#U',0,200,0,0,0,'http://fiepfa.org/administrator/','','Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Firefox/31.0','',NULL,NULL),(12046,0.000000,1479756823.821410,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12047,0.000000,1479756870.933072,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12048,0.000000,1479757156.122770,'\0\0\0\0\0\0\0\0\0\0>?',0,200,0,0,0,'http://fiepfa.org/','http://hundejo.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36','',NULL,NULL),(12049,0.000000,1479757159.556960,'\0\0\0\0\0\0\0\0\0\0>?',0,200,0,0,0,'http://www.fiepfa.org/','http://hundejo.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.120 Safari/537.36','',NULL,NULL),(12050,0.000000,1479761735.442672,'\0\0\0\0\0\0\0\0\0\06[',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:29.0) Gecko/20100101 Firefox/29.0','',NULL,NULL),(12051,0.000000,1479761738.328411,'\0\0\0\0\0\0\0\0\0\06[',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:29.0) Gecko/20100101 Firefox/29.0','',NULL,NULL),(12052,0.000000,1479764060.441199,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12053,0.000000,1479764111.550415,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12054,0.000000,1479764428.311208,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/plugins/contact-form-7/login.php?login=cmd','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(12055,0.000000,1479766647.023613,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(12056,0.000000,1479767409.359924,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12057,0.000000,1479767450.141550,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12058,0.000000,1479768984.752737,'\0\0\0\0\0\0\0\0\0\0[܃?',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','',NULL,NULL),(12059,0.000000,1479768986.946367,'\0\0\0\0\0\0\0\0\0\0[܃?',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36','',NULL,NULL),(12060,0.000000,1479770006.525354,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12061,0.000000,1479770008.360750,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12062,0.000000,1479770869.944050,'\0\0\0\0\0\0\0\0\0\0Ú³',0,404,0,0,0,'http://www.fiepfa.org/administrator','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12063,1479770877.869382,1479770877.380000,'\0\0\0\0\0\0\0\0\0\0Ú³',0,403,0,0,0,'http://www.fiepfa.org/administrator',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','logged:waf','Watched IP Traffic: 195.154.194.179','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2FkbWluaXN0cmF0b3I=\",\"category\":\"logged\",\"ssl\":0}'),(12069,0.000000,1479775902.725946,'\0\0\0\0\0\0\0\0\0\0{}G3',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12070,0.000000,1479776230.407368,'\0\0\0\0\0\0\0\0\0\0B@p',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12064,1479770869.848229,1479770869.300000,'\0\0\0\0\0\0\0\0\0\0Ú³',0,403,0,0,0,'http://www.fiepfa.org/administrator',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','logged:waf','Watched IP Traffic: 195.154.194.179','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L2FkbWluaXN0cmF0b3I=\",\"category\":\"logged\",\"ssl\":0}'),(12071,0.000000,1479776233.137767,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12072,0.000000,1479776516.157815,'\0\0\0\0\0\0\0\0\0\0B@x',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12065,0.000000,1479770877.961297,'\0\0\0\0\0\0\0\0\0\0Ú³',0,404,0,0,0,'http://www.fiepfa.org/administrator','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12066,0.000000,1479770999.720860,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12067,0.000000,1479771039.924539,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12068,0.000000,1479771215.938242,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12073,0.000000,1479776836.224046,'\0\0\0\0\0\0\0\0\0\0B@p',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12074,0.000000,1479777219.512413,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11564,0.000000,1479305510.942782,'\0\0\0\0\0\0\0\0\0\0[ғ',0,200,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11897,0.000000,1479619463.863341,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/03/01/the-barb-newsletter-march-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11896,0.000000,1479613610.768969,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11894,0.000000,1479612949.975384,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11895,0.000000,1479613502.544461,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/main/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11892,0.000000,1479606198.021813,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11893,0.000000,1479612898.931346,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11891,0.000000,1479605631.954446,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11890,0.000000,1479605273.366263,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11888,0.000000,1479600505.539232,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11889,0.000000,1479600507.968598,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11887,0.000000,1479598293.462997,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11886,0.000000,1479598251.309297,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11884,0.000000,1479597389.162916,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/cms/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11885,0.000000,1479597410.653859,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/cms/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11883,0.000000,1479591288.748618,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11881,0.000000,1479589675.933851,'\0\0\0\0\0\0\0\0\0\06Uݧ',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(11882,0.000000,1479591237.960481,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11879,0.000000,1479586024.159409,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11880,0.000000,1479587356.457686,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11878,0.000000,1479585906.773188,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11877,0.000000,1479585905.134844,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/category/news/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11875,0.000000,1479585901.426350,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11876,0.000000,1479585903.347390,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11874,0.000000,1479585899.659819,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11873,0.000000,1479585897.935491,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11872,0.000000,1479585895.959471,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11871,0.000000,1479585893.862039,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11870,0.000000,1479585892.235929,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/2016/04/01/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11869,0.000000,1479585887.271743,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11867,0.000000,1479585883.334406,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11868,0.000000,1479585885.573717,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12558,1480151445.268975,1480151444.220000,'\0\0\0\0\0\0\0\0\0\0Uʕ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12557,1480151446.727640,1480151446.000000,'\0\0\0\0\0\0\0\0\0\0Uʕ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11865,0.000000,1479585879.518110,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11866,0.000000,1479585881.407729,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12556,1480149045.410195,1480149044.710000,'\0\0\0\0\0\0\0\0\0\0uИ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11862,0.000000,1479585874.536127,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11863,0.000000,1479585876.316638,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-february-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11864,0.000000,1479585877.758196,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11860,0.000000,1479585870.772304,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11861,0.000000,1479585872.709083,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11858,0.000000,1479585847.220929,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11859,0.000000,1479585869.043762,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11857,0.000000,1479585846.729871,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11855,0.000000,1479585843.574513,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11856,0.000000,1479585846.023991,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11854,0.000000,1479585841.716394,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11853,0.000000,1479585839.361312,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11851,0.000000,1479582418.208435,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11852,0.000000,1479583040.941118,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11849,0.000000,1479581047.443163,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/new/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11850,0.000000,1479581068.041972,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/new/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11848,0.000000,1479580440.305920,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11846,0.000000,1479579052.558079,'\0\0\0\0\0\0\0\0\0\0(MG',0,200,0,0,0,'http://fiepfa.org/author/FIEPFAlogin/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11847,0.000000,1479580392.939007,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11845,0.000000,1479579045.420407,'\0\0\0\0\0\0\0\0\0\0(MG',0,200,0,0,0,'http://fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11843,0.000000,1479578237.417211,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11844,0.000000,1479578239.360121,'\0\0\0\0\0\0\0\0\0\0D',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11842,0.000000,1479576695.306947,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11840,0.000000,1479575758.810915,'\0\0\0\0\0\0\0\0\0\0qC',0,200,0,0,0,'http://www.fiepfa.org/?author=4','','','',NULL,NULL),(11841,0.000000,1479576651.413370,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11837,0.000000,1479575749.040884,'\0\0\0\0\0\0\0\0\0\0qC',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','','',NULL,NULL),(11838,0.000000,1479575755.147421,'\0\0\0\0\0\0\0\0\0\0qC',0,200,0,0,0,'http://www.fiepfa.org/?author=2','','','',NULL,NULL),(11839,0.000000,1479575757.054586,'\0\0\0\0\0\0\0\0\0\0qC',0,200,0,0,0,'http://www.fiepfa.org/?author=3','','','',NULL,NULL),(11835,0.000000,1479574854.940600,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/calendars/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11836,0.000000,1479575744.864789,'\0\0\0\0\0\0\0\0\0\0qC',0,200,0,0,0,'http://www.fiepfa.org/','','','',NULL,NULL),(11834,0.000000,1479572944.221186,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11832,0.000000,1479570835.139622,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/?p=115','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11833,0.000000,1479570837.369965,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11830,0.000000,1479569646.238210,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11831,0.000000,1479569695.837927,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11828,0.000000,1479567225.667275,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11829,0.000000,1479567237.618620,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11826,0.000000,1479566674.138657,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/news/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11827,0.000000,1479566696.456898,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/news/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11824,0.000000,1479563345.560679,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/home/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11825,0.000000,1479566222.831007,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12619,0.000000,1480162014.055869,'\0\0\0\0\0\0\0\0\0\0@Od',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla','',NULL,NULL),(12620,0.000000,1480163700.563312,'\0\0\0\0\0\0\0\0\0\0.tH',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12621,0.000000,1480163703.118949,'\0\0\0\0\0\0\0\0\0\0.tH',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12622,0.000000,1480168552.769757,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12623,0.000000,1480168555.738942,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12624,0.000000,1480168557.575462,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12625,0.000000,1480172122.561200,'\0\0\0\0\0\0\0\0\0\0 E',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12626,0.000000,1480172129.009995,'\0\0\0\0\0\0\0\0\0\0 E',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12627,0.000000,1480172134.262213,'\0\0\0\0\0\0\0\0\0\0 E',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12628,0.000000,1480172136.063630,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12629,0.000000,1480172138.062172,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12630,0.000000,1480172140.729250,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12631,0.000000,1480173782.539049,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12632,0.000000,1480174417.770319,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12633,0.000000,1480174465.709546,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12634,0.000000,1480177233.625103,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12635,0.000000,1480178545.052035,'\0\0\0\0\0\0\0\0\0\0w/4',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12636,0.000000,1480179934.822174,'\0\0\0\0\0\0\0\0\0\0=',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12637,1480178550.221223,1480178549.530000,'\0\0\0\0\0\0\0\0\0\0w/4',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12638,1480178548.139461,1480178547.450000,'\0\0\0\0\0\0\0\0\0\0w/4',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12639,0.000000,1480179938.225412,'\0\0\0\0\0\0\0\0\0\0=',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(12640,0.000000,1480180259.641632,'\0\0\0\0\0\0\0\0\0\0WC\"',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12641,1480179939.913085,1480179939.260000,'\0\0\0\0\0\0\0\0\0\0=',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12642,0.000000,1480181425.575892,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12643,1480180264.426543,1480180263.840000,'\0\0\0\0\0\0\0\0\0\0WC\"',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12644,1480180263.133434,1480180262.440000,'\0\0\0\0\0\0\0\0\0\0WC\"',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12645,0.000000,1480181465.549396,'\0\0\0\0\0\0\0\0\0\0L\n',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12646,0.000000,1480181505.836104,'\0\0\0\0\0\0\0\0\0\0(M>',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12647,0.000000,1480181508.669346,'\0\0\0\0\0\0\0\0\0\0(M>',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12648,0.000000,1480181510.242247,'\0\0\0\0\0\0\0\0\0\0(M>',0,200,0,0,0,'http://www.fiepfa.org/author/FIEPFAlogin/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12649,0.000000,1480181512.115011,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12650,0.000000,1480181512.967744,'\0\0\0\0\0\0\0\0\0\0(M>',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12651,0.000000,1480181515.334834,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12652,0.000000,1480181517.125663,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12653,0.000000,1480181519.042353,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12654,0.000000,1480181520.850221,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12655,0.000000,1480181522.705106,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12656,0.000000,1480181524.335459,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12657,0.000000,1480181525.954180,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12658,0.000000,1480181527.575637,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12659,0.000000,1480181528.767681,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12660,0.000000,1480181530.946296,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12661,0.000000,1480181532.038008,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/category/news/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12662,0.000000,1480181533.221388,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12663,0.000000,1480181536.250626,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12664,0.000000,1480181537.832742,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/04/01/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12665,0.000000,1480181539.548981,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12666,0.000000,1480181541.829996,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12667,0.000000,1480181542.820697,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-february-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12668,0.000000,1480181544.705149,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12669,0.000000,1480181545.641922,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12670,0.000000,1480181547.831342,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12671,0.000000,1480181549.148552,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12672,0.000000,1480181550.423985,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12673,0.000000,1480181552.653874,'\0\0\0\0\0\0\0\0\0\07\'B',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12674,0.000000,1480181552.767725,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12560,0.000000,1480152790.232662,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12561,0.000000,1480153933.705591,'\0\0\0\0\0\0\0\0\0\0g%\r',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12562,0.000000,1480155184.761802,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12563,0.000000,1480155187.464101,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12559,0.000000,1480152745.274415,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12564,0.000000,1480155786.465813,'\0\0\0\0\0\0\0\0\0\0ܵly',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12565,0.000000,1480157595.253309,'\0\0\0\0\0\0\0\0\0\0Oq3',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12566,0.000000,1480159972.836372,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12567,1480157599.259292,1480157598.620000,'\0\0\0\0\0\0\0\0\0\0Oq3',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12568,1480157597.930062,1480157597.270000,'\0\0\0\0\0\0\0\0\0\0Oq3',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12569,0.000000,1480160020.130693,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12570,0.000000,1480160184.526013,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://fiepfa.org/','http://3-letter-domains.net/try.php?u=http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','',NULL,NULL),(12571,0.000000,1480160189.738105,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/','http://3-letter-domains.net/try.php?u=http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.111 Safari/537.36','',NULL,NULL),(12572,0.000000,1480160283.430418,'\0\0\0\0\0\0\0\0\0\0a:',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12573,0.000000,1480160285.424008,'\0\0\0\0\0\0\0\0\0\0::$\"',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12574,0.000000,1480160292.842725,'\0\0\0\0\0\0\0\0\0\0::$\"',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12575,0.000000,1480160753.076947,'\0\0\0\0\0\0\0\0\0\0%',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12576,1480160757.228868,1480160756.840000,'\0\0\0\0\0\0\0\0\0\0%',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12577,1480160756.010514,1480160755.260000,'\0\0\0\0\0\0\0\0\0\0%',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12578,0.000000,1480161925.417391,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','http://www.fiepfa.org/robots.txt','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12579,0.000000,1480161930.437764,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12580,0.000000,1480161933.530401,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla','',NULL,NULL),(12581,0.000000,1480161937.049396,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/team/','http://www.fiepfa.org/team/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12582,0.000000,1480161936.968168,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/feed/','http://www.fiepfa.org/feed/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12583,0.000000,1480161938.062632,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12584,0.000000,1480161941.612738,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/about/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12585,0.000000,1480161942.519014,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla','',NULL,NULL),(12586,0.000000,1480161943.266447,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla','',NULL,NULL),(12587,0.000000,1480161947.167565,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla','',NULL,NULL),(12588,0.000000,1480161948.736875,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/calendars/','http://www.fiepfa.org/calendars/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12589,0.000000,1480161949.720969,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','http://www.fiepfa.org/fie-faculty-and-staff/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12590,0.000000,1480161953.857543,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','http://www.fiepfa.org/volunteers/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12591,0.000000,1480161954.941768,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla','',NULL,NULL),(12592,0.000000,1480161955.867518,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla','',NULL,NULL),(12593,0.000000,1480161960.838897,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla','',NULL,NULL),(12594,0.000000,1480161962.015591,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12595,0.000000,1480161962.575520,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','http://www.fiepfa.org/fundraising/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12596,0.000000,1480161967.715566,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','http://www.fiepfa.org/fundraising/2016-read-a-thon/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12597,0.000000,1480161968.343290,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla','',NULL,NULL),(12598,0.000000,1480161969.431965,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla','',NULL,NULL),(12599,0.000000,1480161973.643972,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla','',NULL,NULL),(12600,0.000000,1480161973.961485,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/playground/','http://www.fiepfa.org/playground/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12601,0.000000,1480161974.906601,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','http://www.fiepfa.org/news-and-events/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12602,0.000000,1480161978.570010,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','http://www.fiepfa.org/corporate-partners/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12603,0.000000,1480161978.875659,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/playground/','','Mozilla','',NULL,NULL),(12604,0.000000,1480161979.861068,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla','',NULL,NULL),(12605,0.000000,1480161983.456378,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla','',NULL,NULL),(12606,0.000000,1480161984.021959,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12607,0.000000,1480161986.263446,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','http://www.fiepfa.org/privacy-policy/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12608,0.000000,1480161990.510721,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','http://www.fiepfa.org/category/barb-newsletter/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12609,0.000000,1480161991.159899,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla','',NULL,NULL),(12610,0.000000,1480161993.122245,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla','',NULL,NULL),(12611,0.000000,1480161997.212262,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','','Mozilla','',NULL,NULL),(12612,0.000000,1480161997.845313,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/events/','http://www.fiepfa.org/category/events/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12613,0.000000,1480161999.812375,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/news/','http://www.fiepfa.org/category/news/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12614,0.000000,1480162003.243919,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','http://www.fiepfa.org/category/testing/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12615,0.000000,1480162003.762290,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla','',NULL,NULL),(12616,0.000000,1480162006.426252,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/news/','','Mozilla','',NULL,NULL),(12617,0.000000,1480162009.964786,'\0\0\0\0\0\0\0\0\0\0@Od',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla','',NULL,NULL),(12618,0.000000,1480162010.313004,'\0\0\0\0\0\0\0\0\0\0@Od',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','http://www.fiepfa.org/fie-calendar/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(12555,1480149047.273286,1480149046.610000,'\0\0\0\0\0\0\0\0\0\0uИ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12554,0.000000,1480151440.042815,'\0\0\0\0\0\0\0\0\0\0Uʕ',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12553,0.000000,1480149042.971720,'\0\0\0\0\0\0\0\0\0\0uИ',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12551,0.000000,1480145572.973497,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12552,0.000000,1480147002.116989,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12550,0.000000,1480145528.965136,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12549,0.000000,1480143105.171892,'\0\0\0\0\0\0\0\0\0\0Nj',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12548,0.000000,1480143103.808480,'\0\0\0\0\0\0\0\0\0\0Nj',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12547,0.000000,1480143101.156843,'\0\0\0\0\0\0\0\0\0\0Nj',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12545,0.000000,1480143018.384333,'\0\0\0\0\0\0\0\0\0\0oD,',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12546,0.000000,1480143020.735122,'\0\0\0\0\0\0\0\0\0\0oD,',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12544,0.000000,1480143016.644756,'\0\0\0\0\0\0\0\0\0\0oD,',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12542,0.000000,1480141942.633116,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12543,0.000000,1480141988.935164,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12541,1480141482.861544,1480141482.100000,'\0\0\0\0\0\0\0\0\0\0ȓ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12540,1480141484.722371,1480141483.960000,'\0\0\0\0\0\0\0\0\0\0ȓ',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12539,0.000000,1480141479.636850,'\0\0\0\0\0\0\0\0\0\0ȓ',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12537,0.000000,1480138238.561060,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12538,0.000000,1480138314.945584,'\0\0\0\0\0\0\0\0\0\0w_;P',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12535,0.000000,1480136315.159978,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12536,0.000000,1480138199.562508,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12534,0.000000,1480133497.339198,'\0\0\0\0\0\0\0\0\0\0 H',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12533,0.000000,1480131378.938123,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12532,0.000000,1480131325.052801,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12530,0.000000,1480126133.069726,'\0\0\0\0\0\0\0\0\0\0#F',0,404,0,0,0,'http://www.fiepfa.org/blog/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(12531,0.000000,1480127618.732529,'\0\0\0\0\0\0\0\0\0\0L\n',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12529,0.000000,1480126130.465311,'\0\0\0\0\0\0\0\0\0\0#F',0,200,0,0,0,'http://fiepfa.org/blog/','','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','',NULL,NULL),(12527,0.000000,1480121777.762650,'\0\0\0\0\0\0\0\0\0\0»',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12528,0.000000,1480122637.820383,'\0\0\0\0\0\0\0\0\0\0]< ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0) Match by Siteimprove.com','',NULL,NULL),(12526,0.000000,1480121775.848804,'\0\0\0\0\0\0\0\0\0\0»',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12525,0.000000,1480120941.017875,'\0\0\0\0\0\0\0\0\0\01w',0,200,0,0,0,'http://www.fiepfa.org/','','Mnogosearch-3.1.21','',NULL,NULL),(12524,0.000000,1480120915.457201,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/login.php?login=cmd','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12523,0.000000,1480120909.231034,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/login.php?login=cmd','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12521,0.000000,1480116644.308080,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12522,0.000000,1480116685.655283,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12520,0.000000,1480116436.235504,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12519,1480115907.262586,1480115906.610000,'\0\0\0\0\0\0\0\0\0\0q',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12518,1480115908.867195,1480115908.260000,'\0\0\0\0\0\0\0\0\0\0q',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12517,0.000000,1480115904.120112,'\0\0\0\0\0\0\0\0\0\0q',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12516,1480113041.367537,1480113040.930000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12515,1480113042.539796,1480113042.130000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12514,0.000000,1480113395.464016,'\0\0\0\0\0\0\0\0\0\0{}G',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12513,0.000000,1480113039.951989,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12511,0.000000,1480109602.921436,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12512,0.000000,1480109650.530205,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12510,1480107160.612680,1480107159.970000,'\0\0\0\0\0\0\0\0\0\0^',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12508,0.000000,1480107212.748552,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12509,1480107161.968647,1480107161.320000,'\0\0\0\0\0\0\0\0\0\0^',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12507,0.000000,1480107158.255040,'\0\0\0\0\0\0\0\0\0\0^',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12506,0.000000,1480104802.470658,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12504,0.000000,1480102415.320206,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12505,0.000000,1480102462.708112,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12503,1480101637.861392,1480101637.160000,'\0\0\0\0\0\0\0\0\0\0m',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12502,1480101639.440543,1480101638.840000,'\0\0\0\0\0\0\0\0\0\0m',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12500,0.000000,1480097950.450775,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(12501,0.000000,1480101634.641975,'\0\0\0\0\0\0\0\0\0\0m',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12498,1480096891.873191,1480096891.210000,'\0\0\0\0\0\0\0\0\0\0mk-',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12497,1480096893.256048,1480096892.720000,'\0\0\0\0\0\0\0\0\0\0mk-',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12496,0.000000,1480096889.153694,'\0\0\0\0\0\0\0\0\0\0mk-',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12495,0.000000,1480095049.921072,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12490,0.000000,1480093865.256033,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12491,0.000000,1480094128.050319,'\0\0\0\0\0\0\0\0\0\0 S',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12492,0.000000,1480095010.551988,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12493,1480094132.066075,1480094131.400000,'\0\0\0\0\0\0\0\0\0\0 S',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12494,1480094130.673333,1480094130.050000,'\0\0\0\0\0\0\0\0\0\0 S',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12499,0.000000,1480097802.163565,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11422,0.000000,1479214317.117604,'\0\0\0\0\0\0\0\0\0\0l;F',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11423,0.000000,1479214324.523814,'\0\0\0\0\0\0\0\0\0\0l;F',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11424,0.000000,1479214333.770086,'\0\0\0\0\0\0\0\0\0\0l;F',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11425,0.000000,1479216039.542642,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11426,0.000000,1479216041.091872,'\0\0\0\0\0\0\0\0\0\0BOp',0,404,1,0,0,'http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11427,0.000000,1479216649.991775,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11428,0.000000,1479216691.223858,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11429,0.000000,1479219985.650562,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11430,0.000000,1479220421.611080,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11431,0.000000,1479220471.591685,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11432,0.000000,1479222265.121540,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11433,0.000000,1479223977.635660,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11434,0.000000,1479224026.431957,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11435,0.000000,1479231062.947205,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11436,0.000000,1479231105.004626,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11437,0.000000,1479234270.248112,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11438,0.000000,1479235514.028777,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11439,0.000000,1479237335.295272,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11440,0.000000,1479237338.905680,'\0\0\0\0\0\0\0\0\0\0A',0,200,0,0,0,'http://www.fiepfa.org/2016/04/01/the-barb-newsletter-april-2016/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11441,0.000000,1479238432.317910,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11442,0.000000,1479238480.347222,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11443,0.000000,1479238590.419651,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11444,0.000000,1479238969.443722,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11445,0.000000,1479245601.911374,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11446,0.000000,1479245649.356508,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11447,0.000000,1479246024.516958,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11448,0.000000,1479246026.948497,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11449,0.000000,1479246028.432069,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11450,0.000000,1479246029.691695,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11451,0.000000,1479246032.391648,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11452,0.000000,1479247726.007233,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11453,0.000000,1479249386.516665,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11454,0.000000,1479249487.029530,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11455,0.000000,1479249488.253111,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11456,0.000000,1479249489.610010,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=1','http://www.fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11457,0.000000,1479249490.919030,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=2','http://www.fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11458,0.000000,1479249492.197413,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=3','http://www.fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11459,0.000000,1479249493.618959,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=4','http://www.fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11460,0.000000,1479249494.931929,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=5','http://www.fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11461,0.000000,1479249496.154690,'\0\0\0\0\0\0\0\0\0\0[]',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(11462,0.000000,1479251658.962006,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(11463,0.000000,1479252599.218095,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11464,0.000000,1479252639.531550,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11465,0.000000,1479253999.142519,'\0\0\0\0\0\0\0\0\0\0ܵl',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11466,0.000000,1479254615.610710,'\0\0\0\0\0\0\0\0\0\0>ҘT',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(11467,0.000000,1479255198.659544,'\0\0\0\0\0\0\0\0\0\0bU',1,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(11468,0.000000,1479255205.439972,'\0\0\0\0\0\0\0\0\0\0bU',1,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','http://www.fiepfa.org/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(11469,0.000000,1479258303.917414,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11470,0.000000,1479259863.046962,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11471,0.000000,1479259905.301641,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11472,0.000000,1479261784.916892,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11473,0.000000,1479263620.921769,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11474,0.000000,1479267302.756088,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11475,0.000000,1479267357.153970,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11476,0.000000,1479270592.824151,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11477,0.000000,1479270633.652264,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11478,0.000000,1479274201.358020,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11479,0.000000,1479274238.543074,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11480,0.000000,1479275789.821158,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11481,0.000000,1479281572.710110,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11482,0.000000,1479281618.050925,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11483,0.000000,1479282674.560086,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11484,0.000000,1479282790.591704,'\0\0\0\0\0\0\0\0\0\0B8',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11485,0.000000,1479288800.050770,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11486,0.000000,1479288840.438377,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11487,0.000000,1479288841.701738,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11488,0.000000,1479290634.353137,'\0\0\0\0\0\0\0\0\0\0UX2',0,200,0,0,0,'http://fiepfa.org/','http://1-free-share-buttons.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','',NULL,NULL),(11489,0.000000,1479290636.305323,'\0\0\0\0\0\0\0\0\0\0UX2',0,200,0,0,0,'http://www.fiepfa.org/','http://1-free-share-buttons.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','',NULL,NULL),(11490,0.000000,1479292366.191589,'\0\0\0\0\0\0\0\0\0\0.\ri',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11491,0.000000,1479292683.438083,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/','http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11492,0.000000,1479292686.656791,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://www.fiepfa.org/','http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11493,0.000000,1479292688.899167,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11494,0.000000,1479292690.463016,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=1','http://fiepfa.org/?author=1','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11495,0.000000,1479292692.358549,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=2','http://fiepfa.org/?author=2','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11496,0.000000,1479292695.450551,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=3','http://fiepfa.org/?author=3','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11497,0.000000,1479292699.751922,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=4','http://fiepfa.org/?author=4','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11498,0.000000,1479292704.704974,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=5','http://fiepfa.org/?author=5','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11499,0.000000,1479292706.707884,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=6','http://fiepfa.org/?author=6','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11500,0.000000,1479292708.753421,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=7','http://fiepfa.org/?author=7','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11501,0.000000,1479292710.643623,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=8','http://fiepfa.org/?author=8','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11502,0.000000,1479292713.457767,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=9','http://fiepfa.org/?author=9','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11503,0.000000,1479292718.044372,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=10','http://fiepfa.org/?author=10','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11504,0.000000,1479292720.703563,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=11','http://fiepfa.org/?author=11','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11505,0.000000,1479292722.410925,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=12','http://fiepfa.org/?author=12','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11506,0.000000,1479292724.243899,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=13','http://fiepfa.org/?author=13','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11507,0.000000,1479292726.419426,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=14','http://fiepfa.org/?author=14','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11508,0.000000,1479292728.525564,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=15','http://fiepfa.org/?author=15','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11509,0.000000,1479292731.917643,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=16','http://fiepfa.org/?author=16','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11510,0.000000,1479292735.696452,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=17','http://fiepfa.org/?author=17','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11511,0.000000,1479292739.042470,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=18','http://fiepfa.org/?author=18','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11512,0.000000,1479292742.197043,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=19','http://fiepfa.org/?author=19','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11513,0.000000,1479292745.055183,'\0\0\0\0\0\0\0\0\0\0[ґ',0,200,0,0,0,'http://fiepfa.org/?author=20','http://fiepfa.org/?author=20','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11514,0.000000,1479294868.527953,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11515,0.000000,1479295938.162555,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11516,0.000000,1479295985.995887,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11517,0.000000,1479297135.751009,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11518,1479297137.335770,1479297136.980000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11519,0.000000,1479298138.495513,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11520,0.000000,1479298391.738290,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11521,0.000000,1479298999.633410,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11523,0.000000,1479299342.509909,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11524,0.000000,1479299713.457540,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11525,1479299345.518439,1479299344.910000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11526,0.000000,1479299717.733652,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11527,0.000000,1479300047.707769,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11528,1479300052.699105,1479300052.060000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11529,0.000000,1479300395.508592,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11530,0.000000,1479300705.655999,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11531,1479300401.302314,1479300400.870000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11532,0.000000,1479301057.730944,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11533,1479301066.494664,1479301066.040000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11534,0.000000,1479301411.798005,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11535,0.000000,1479301963.721153,'\0\0\0\0\0\0\0\0\0\0{N',1,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','',NULL,NULL),(11536,0.000000,1479301973.691608,'\0\0\0\0\0\0\0\0\0\0{N',1,200,0,0,0,'http://www.fiepfa.org/team/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','',NULL,NULL),(11537,0.000000,1479301996.745298,'\0\0\0\0\0\0\0\0\0\0{N',1,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/team/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','',NULL,NULL),(11538,0.000000,1479301997.721693,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11539,0.000000,1479302004.953834,'\0\0\0\0\0\0\0\0\0\0{N',1,200,0,0,0,'http://www.fiepfa.org/team/','http://www.fiepfa.org/about/','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:49.0) Gecko/20100101 Firefox/49.0','',NULL,NULL),(11540,0.000000,1479302069.757050,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11541,0.000000,1479302385.832901,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11542,1479302075.645545,1479302075.010000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11543,0.000000,1479302724.323178,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11544,1479302390.638626,1479302390.060000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11545,1479302729.617745,1479302728.950000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11546,0.000000,1479303018.522767,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11547,0.000000,1479303039.803648,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11548,1479303044.426628,1479303043.960000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11549,0.000000,1479303059.537273,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11550,0.000000,1479303393.709587,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11551,1479303397.348053,1479303396.990000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11552,0.000000,1479303749.751021,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11553,0.000000,1479304100.716315,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11554,1479303754.244424,1479303753.880000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11562,0.000000,1479305506.545794,'\0\0\0\0\0\0\0\0\0\0[ғ',0,200,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','loginFailInvalidUsername',NULL,NULL),(11563,1479305177.001423,1479305176.330000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11560,0.000000,1479305171.856931,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11561,1479304831.605403,1479304831.070000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11558,0.000000,1479304826.828999,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11559,1479304497.796626,1479304497.130000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11555,0.000000,1479304109.736537,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11556,0.000000,1479304408.604325,'\0\0\0\0\0\0\0\0\0\0{}Gd',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11557,0.000000,1479304491.783927,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11565,0.000000,1479305847.925241,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11566,0.000000,1479306183.608188,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11567,1479305852.642485,1479305852.130000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11568,0.000000,1479306514.725281,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11569,1479306188.728926,1479306188.100000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11570,1479306519.602528,1479306519.040000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11571,0.000000,1479306863.831940,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11572,0.000000,1479307206.822248,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11573,1479307212.544117,1479307212.090000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11574,0.000000,1479307543.737984,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11575,0.000000,1479308229.823337,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12269,0.000000,1479930666.868519,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=3','http://www.fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12268,0.000000,1479930665.836705,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=2','http://www.fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12266,0.000000,1479930663.735327,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12267,0.000000,1479930664.820106,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=1','http://www.fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12265,0.000000,1479930662.017621,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12263,0.000000,1479930602.163723,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12264,0.000000,1479930660.067185,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12262,0.000000,1479930132.078037,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12260,0.000000,1479928823.963017,'\0\0\0\0\0\0\0\0\0\0x',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(12261,0.000000,1479928825.823624,'\0\0\0\0\0\0\0\0\0\0x',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12259,0.000000,1479928820.776028,'\0\0\0\0\0\0\0\0\0\0x',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(12257,0.000000,1479921196.711439,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12258,0.000000,1479924149.666482,'\0\0\0\0\0\0\0\0\0\0ܵl',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12255,0.000000,1479920473.547823,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12256,0.000000,1479921193.737913,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12254,0.000000,1479919376.318618,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:11.0) Gecko Firefox/11.0','',NULL,NULL),(12253,0.000000,1479919366.668015,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.19.4 (KHTML, like Gecko) Version/5.0.2 Safari/533.18.5','',NULL,NULL),(12252,0.000000,1479919351.167566,'\0\0\0\0\0\0\0\0\0\0	^',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12251,0.000000,1479919342.551013,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0','',NULL,NULL),(12250,0.000000,1479915287.147211,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12249,0.000000,1479915236.518601,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12248,0.000000,1479914021.942811,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Ffundraising%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12247,0.000000,1479911382.205725,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12246,0.000000,1479908885.423712,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://www.fiepfa.org/wordpress','http://www.field-of-view.com/wordpress','Opera/9.80 (Macintosh  Intel Mac OS X 10.6.6  U  ru) Presto/2.7.62 Version/11.01','',NULL,NULL),(12245,0.000000,1479908883.067987,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org//wordpress','http://www.field-of-view.com/wordpress','Opera/9.80 (Macintosh  Intel Mac OS X 10.6.6  U  ru) Presto/2.7.62 Version/11.01','',NULL,NULL),(12243,0.000000,1479906495.556504,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12244,0.000000,1479907103.959259,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F04%2F01%2Fthe-barb-newsletter-april-2016%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12242,0.000000,1479905621.512402,'\0\0\0\0\0\0\0\0\0\0_a',0,200,0,0,0,'http://www.fiepfa.org/','http://www.google.com.my/search?q=anything&ie=utf-8','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/534.7 (KHTML, like Gecko) Chrome/7.0.514.0 Safari/534.7','',NULL,NULL),(12241,0.000000,1479904417.638551,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12240,0.000000,1479904145.442038,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12239,0.000000,1479903966.631108,'\0\0\0\0\0\0\0\0\0\0P(',0,404,0,0,0,'http://www.fiepfa.org/accouynt','http://fiepfa.org/accouynt','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(12238,0.000000,1479903964.760254,'\0\0\0\0\0\0\0\0\0\0P(',0,200,0,0,0,'http://fiepfa.org/accouynt','http://ya.ru/?q=http%3A%2F%2Ffiepfa.org%2Faccouynt','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(12237,0.000000,1479903087.471842,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12236,0.000000,1479903085.421837,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=700','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12235,0.000000,1479902471.646960,'\0\0\0\0\0\0\0\0\0\0F)',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)','',NULL,NULL),(12232,0.000000,1479900718.424301,'\0\0\0\0\0\0\0\0\0\0`~m',0,200,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:38.0) Gecko/20100101 Firefox/38.0','',NULL,NULL),(12233,0.000000,1479900763.759882,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12234,0.000000,1479900809.559835,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12231,0.000000,1479900344.879239,'\0\0\0\0\0\0\0\0\0\0]s_',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)','',NULL,NULL),(12230,0.000000,1479900277.956074,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11985,0.000000,1479708386.043236,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/images/google-assist.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11986,0.000000,1479708386.433621,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/functions.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11987,0.000000,1479708477.851706,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/plugins/myshe.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11984,0.000000,1479708041.516392,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/sqlibak.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11983,0.000000,1479708041.455164,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/sqlibak.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11982,0.000000,1479707964.068409,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/plugins/wp-cache.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11981,0.000000,1479707854.071771,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/tmp.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11979,0.000000,1479707738.359070,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/infos.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11980,0.000000,1479707738.339133,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/administrator/includes/readmy.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11978,0.000000,1479707738.056937,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/news.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11977,0.000000,1479707737.672496,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/images/xxx.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11975,0.000000,1479706198.475993,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11976,0.000000,1479706237.274257,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11973,0.000000,1479700131.747413,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-december-2015-and-january-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11974,0.000000,1479704257.613157,'\0\0\0\0\0\0\0\0\0\0>G',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11971,0.000000,1479699305.848921,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11972,0.000000,1479699358.763882,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11969,0.000000,1479695677.050510,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11970,0.000000,1479695730.028668,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11966,0.000000,1479691881.713300,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11967,0.000000,1479691925.568230,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11968,0.000000,1479692279.709871,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11965,0.000000,1479691163.348561,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11964,0.000000,1479691122.461725,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11962,0.000000,1479687885.909450,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11963,0.000000,1479690578.471889,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11960,0.000000,1479686440.124265,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(11961,0.000000,1479687884.008107,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11958,0.000000,1479684700.442899,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11959,0.000000,1479686181.829434,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(11955,0.000000,1479681028.609923,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11956,0.000000,1479681071.020536,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11957,0.000000,1479684658.174569,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11954,0.000000,1479677672.933322,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11953,0.000000,1479677624.538305,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11952,0.000000,1479677115.407973,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11951,0.000000,1479675995.230706,'\0\0\0\0\0\0\0\0\0\0bX',0,404,0,0,0,'http://www.fiepfa.org/apple-touch-icon-120x120.png','','MobileSafari/602.1 CFNetwork/808.1.4 Darwin/16.1.0','',NULL,NULL),(11949,0.000000,1479675989.725814,'\0\0\0\0\0\0\0\0\0\0bX',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B150 Safari/602.1','',NULL,NULL),(11950,0.000000,1479675993.237198,'\0\0\0\0\0\0\0\0\0\0bX',0,404,0,0,0,'http://www.fiepfa.org/apple-touch-icon-120x120-precomposed.png','','MobileSafari/602.1 CFNetwork/808.1.4 Darwin/16.1.0','',NULL,NULL),(11948,0.000000,1479670459.211462,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11947,0.000000,1479670414.176609,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11945,0.000000,1479666808.534965,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11946,0.000000,1479667537.527359,'\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11944,0.000000,1479666763.120501,'\0\0\0\0\0\0\0\0\0\0L\n',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11942,0.000000,1479663981.041972,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-november-2015/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11943,0.000000,1479666139.565915,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11941,0.000000,1479663097.946711,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11939,0.000000,1479661884.212094,'\0\0\0\0\0\0\0\0\0\0I#s',1,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11940,0.000000,1479663056.815366,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11938,0.000000,1479661882.517466,'\0\0\0\0\0\0\0\0\0\0I#s',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11937,0.000000,1479660566.747218,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11936,0.000000,1479660566.314929,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11935,0.000000,1479660564.050115,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11934,0.000000,1479660530.232923,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11933,0.000000,1479659483.174332,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11931,0.000000,1479656108.428269,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11932,0.000000,1479659442.433718,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11930,0.000000,1479656057.268757,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11929,0.000000,1479653266.644396,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11928,0.000000,1479653263.413452,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=615','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11927,0.000000,1479648704.410716,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11926,0.000000,1479648662.508180,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11925,0.000000,1479648317.542235,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11924,0.000000,1479648066.542214,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11923,0.000000,1479647198.248461,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11921,0.000000,1479644356.333533,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11922,0.000000,1479644375.955065,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11920,0.000000,1479641677.264555,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11918,0.000000,1479639764.333434,'\0\0\0\0\0\0\0\0\0\0]< ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.0) Match by Siteimprove.com','',NULL,NULL),(11919,0.000000,1479641628.949431,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11917,0.000000,1479636995.747679,'\0\0\0\0\0\0\0\0\0\0[Q',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(11916,0.000000,1479636371.208744,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11915,0.000000,1479634393.951173,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11913,0.000000,1479630820.458464,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11914,0.000000,1479634348.111671,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11912,0.000000,1479630774.623350,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11910,0.000000,1479627160.926691,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11911,0.000000,1479627207.616415,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11909,0.000000,1479626877.959028,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11907,0.000000,1479625562.435543,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11908,0.000000,1479626856.037603,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11906,0.000000,1479625558.522322,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11905,0.000000,1479625271.512379,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11904,0.000000,1479624967.850407,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11903,0.000000,1479623196.725199,'\0\0\0\0\0\0\0\0\0\0ؑ',0,200,0,0,0,'http://www.fiepfa.org/','http://whois.domaintools.com/fiepfa.org','Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)','',NULL,NULL),(11901,0.000000,1479620751.224427,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11902,0.000000,1479623193.538607,'\0\0\0\0\0\0\0\0\0\0ؑ',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en; rv:1.9.0.13) Gecko/2009073022 Firefox/3.5.2 (.NET CLR 3.5.30729) SurveyBot/2.3 (DomainTools)','',NULL,NULL),(11899,0.000000,1479619815.828285,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11900,0.000000,1479620316.304736,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11898,0.000000,1479619776.867109,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11576,1479307549.910412,1479307549.170000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12826,0.000000,1480291633.949781,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11582,1479309211.660279,1479309211.230000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11581,0.000000,1479309833.004047,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11580,0.000000,1479309209.013884,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11579,0.000000,1479308874.724747,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11578,0.000000,1479308869.224075,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11577,0.000000,1479308236.557443,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11182,1478262649.831018,1478262649.430000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12827,0.000000,1480292927.858992,'\0\0\0\0\0\0\0\0\0\0sR)',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12828,1480291635.562288,1480291634.850000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12793,1480272712.659591,1480272712.230000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=%2F&type=file&feid=&obfuscate=&sessidpass=',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3RpbnlfbWNlL3BsdWdpbnMvdGlueWJyb3dzZXIvdXBsb2FkX2ZpbGUucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11178,1478262906.726214,1478262906.360000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12823,0.000000,1480291630.055456,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12824,1480290629.442079,1480290628.910000,'\0\0\0\0\0\0\0\0\0\0]W',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11179,1478262905.729748,1478262905.330000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12825,1480290628.214919,1480290627.530000,'\0\0\0\0\0\0\0\0\0\0]W',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11180,1478262768.722516,1478262768.440000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12792,1480272715.014758,1480272714.620000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3NpdGVzL2FsbC9saWJyYXJpZXMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5taW5pbWFsLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12791,0.000000,1480272713.516466,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12789,0.000000,1480272708.121970,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12790,0.000000,1480272711.453541,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(11176,0.000000,1478262646.786224,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12841,0.000000,1480304119.168025,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12842,0.000000,1480305850.866931,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11177,0.000000,1478263033.073706,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12843,0.000000,1480306408.858581,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12844,0.000000,1480306836.570900,'\0\0\0\0\0\0\0\0\0\0+5',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12845,0.000000,1480308060.945394,'\0\0\0\0\0\0\0\0\0\0՟&Z',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11175,1478262167.923507,1478262167.510000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12838,1480301478.416249,1480301477.770000,'\0\0\0\0\0\0\0\0\0\0a<',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12788,1480272702.730853,1480272702.320000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Slider Revolution: Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"60\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvcGZhc3RpbmdyYXlzL3B1YmxpY19odG1sL3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12839,1480301475.971007,1480301475.550000,'\0\0\0\0\0\0\0\0\0\0a<',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12840,0.000000,1480304066.016328,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11173,1478262320.637816,1478262320.170000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12787,1480272707.374415,1480272706.930000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/license.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L2xpY2Vuc2UucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(11174,1478262319.584750,1478262319.170000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12786,0.000000,1480272705.765079,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/revslider/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12784,0.000000,1480272700.906469,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12785,0.000000,1480272703.772319,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/revslider/temp/update_extract/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12846,1480306840.425646,1480306839.760000,'\0\0\0\0\0\0\0\0\0\0+5',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11172,1478262438.795562,1478262438.420000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12847,1480306838.555181,1480306837.880000,'\0\0\0\0\0\0\0\0\0\0+5',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12783,1480272700.245656,1480272699.710000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbeWl3X2NvbnRhY3RdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"Lw==\",\"category\":\"file_upload\",\"ssl\":0}'),(12781,0.000000,1480272696.958771,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/readme.html','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12782,0.000000,1480272698.831388,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/Login-wall-etgFB/login_wall.php?login=cmd&z3=c2ZuLnBocA%3D%3D&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8%3d','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12780,0.000000,1480272693.619315,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12778,0.000000,1480267877.658956,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12779,0.000000,1480269323.555082,'\0\0\0\0\0\0\0\0\0\0»e',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12776,0.000000,1480266622.111210,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12777,0.000000,1480267838.314157,'\0\0\0\0\0\0\0\0\0\0L\n',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11169,1478261956.598806,1478261956.360000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11170,1478261954.984333,1478261954.580000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11171,1478262439.787204,1478262439.450000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12775,1480266346.040321,1480266345.680000,'\0\0\0\0\0\0\0\0\0\0-xaI',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12774,1480266347.429522,1480266347.080000,'\0\0\0\0\0\0\0\0\0\0-xaI',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12772,0.000000,1480265393.619272,'\0\0\0\0\0\0\0\0\0\0»e',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12773,0.000000,1480266344.670120,'\0\0\0\0\0\0\0\0\0\0-xaI',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12771,0.000000,1480265133.569120,'\0\0\0\0\0\0\0\0\0\0»e',0,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12770,0.000000,1480264728.226644,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12768,0.000000,1480264213.511765,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12769,0.000000,1480264256.264760,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12767,0.000000,1480263985.251827,'\0\0\0\0\0\0\0\0\0\0{}G9',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12766,0.000000,1480263062.024287,'\0\0\0\0\0\0\0\0\0\0»e',0,200,0,0,0,'http://www.fiepfa.org/2016/04/01/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12763,0.000000,1480262387.335703,'\0\0\0\0\0\0\0\0\0\0g8q',0,200,0,0,0,'http://www.fiepfa.org/?author=3','','','',NULL,NULL),(12764,0.000000,1480262388.672688,'\0\0\0\0\0\0\0\0\0\0g8q',0,200,0,0,0,'http://www.fiepfa.org/?author=4','','','',NULL,NULL),(12765,0.000000,1480263060.713613,'\0\0\0\0\0\0\0\0\0\0»e',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Qwantify/2.3w; +https://www.qwant.com/)/2.3w','',NULL,NULL),(12760,0.000000,1480262382.156330,'\0\0\0\0\0\0\0\0\0\0g8q',0,200,0,0,0,'http://www.fiepfa.org/','','','',NULL,NULL),(12761,0.000000,1480262384.212249,'\0\0\0\0\0\0\0\0\0\0g8q',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','','',NULL,NULL),(12762,0.000000,1480262385.710486,'\0\0\0\0\0\0\0\0\0\0g8q',0,200,0,0,0,'http://www.fiepfa.org/?author=2','','','',NULL,NULL),(12759,0.000000,1480260922.310702,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12756,0.000000,1480256075.064883,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12757,0.000000,1480257694.972420,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12758,0.000000,1480260871.739242,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12742,0.000000,1480247592.865307,'\0\0\0\0\0\0\0\0\0\0O`',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12740,0.000000,1480246431.371334,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12741,0.000000,1480247591.352310,'\0\0\0\0\0\0\0\0\0\0O`',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(11168,1478262055.628005,1478262055.380000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12752,0.000000,1480251447.967675,'\0\0\0\0\0\0\0\0\0\01<;',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12753,0.000000,1480253475.670367,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12754,0.000000,1480253517.608400,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12755,0.000000,1480254515.359235,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11167,1478262056.620402,1478262056.360000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12749,1480251007.737135,1480251007.300000,'\0\0\0\0\0\0\0\0\0\01z',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12750,0.000000,1480251435.470058,'\0\0\0\0\0\0\0\0\0\01<;',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12751,0.000000,1480251440.341810,'\0\0\0\0\0\0\0\0\0\01<;',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(11165,0.000000,1478261843.117084,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11166,0.000000,1478262164.995101,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12737,1480239723.435148,1480239722.740000,'\0\0\0\0\0\0\0\0\0\0Yz',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12738,0.000000,1480240491.140505,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12739,0.000000,1480246383.548742,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12736,1480239724.868397,1480239724.210000,'\0\0\0\0\0\0\0\0\0\0Yz',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12747,0.000000,1480251004.715295,'\0\0\0\0\0\0\0\0\0\01z',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12748,1480251014.624178,1480251013.630000,'\0\0\0\0\0\0\0\0\0\01z',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11164,1478261566.414958,1478261566.030000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12743,0.000000,1480247594.660513,'\0\0\0\0\0\0\0\0\0\0O`',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12744,0.000000,1480247728.963883,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12745,0.000000,1480247731.845835,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12746,0.000000,1480247979.924387,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12734,0.000000,1480239203.245240,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12735,0.000000,1480239721.754071,'\0\0\0\0\0\0\0\0\0\0Yz',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12733,0.000000,1480239158.016300,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12732,1480233216.770285,1480233216.110000,'\0\0\0\0\0\0\0\0\0\0+[F',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12731,1480233212.058603,1480233210.720000,'\0\0\0\0\0\0\0\0\0\0+[F',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12729,0.000000,1480231985.753808,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12730,0.000000,1480233207.205751,'\0\0\0\0\0\0\0\0\0\0+[F',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12727,0.000000,1480228445.615511,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12728,0.000000,1480231939.799381,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12724,0.000000,1480227495.849806,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12725,0.000000,1480227498.034615,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12726,0.000000,1480228399.648658,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12721,0.000000,1480224566.942065,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12722,0.000000,1480224604.827119,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12723,0.000000,1480225691.446543,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12720,0.000000,1480224493.344686,'\0\0\0\0\0\0\0\0\0\0.C',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12717,0.000000,1480223171.756877,'\0\0\0\0\0\0\0\0\0\0\n	',0,200,0,0,0,'http://fiepfa.org/robots.txt','','Mozilla/5.0','',NULL,NULL),(12718,0.000000,1480223256.656036,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(12719,0.000000,1480223256.678802,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 5.1; rv:6.0.2) Gecko/20100101 Firefox/6.0.2','',NULL,NULL),(12716,0.000000,1480217773.955772,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12714,1480214200.249711,1480214199.560000,'\0\0\0\0\0\0\0\0\0\0s%',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12715,0.000000,1480217721.110716,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12713,1480214202.617620,1480214201.850000,'\0\0\0\0\0\0\0\0\0\0s%',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12712,0.000000,1480214197.545385,'\0\0\0\0\0\0\0\0\0\0s%',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12709,0.000000,1480209620.328694,'\0\0\0\0\0\0\0\0\0\0\\9	',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12710,0.000000,1480209622.840552,'\0\0\0\0\0\0\0\0\0\0\\9	',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12711,0.000000,1480209625.075282,'\0\0\0\0\0\0\0\0\0\0\\9	',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12707,0.000000,1480207042.319357,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12708,0.000000,1480207741.973230,'\0\0\0\0\0\0\0\0\0\0(M>',0,200,0,0,0,'http://www.fiepfa.org/category/barb-newsletter/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12705,0.000000,1480204916.438243,'\0\0\0\0\0\0\0\0\0\0pΈ`',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12706,0.000000,1480204920.935904,'\0\0\0\0\0\0\0\0\0\0pΈ`',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12703,0.000000,1480203093.119329,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12704,0.000000,1480204911.913278,'\0\0\0\0\0\0\0\0\0\0pΈ`',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','loginFailInvalidUsername',NULL,NULL),(12702,0.000000,1480203052.009929,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12700,0.000000,1480201407.842828,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12701,0.000000,1480201795.255536,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F03%2F01%2Fthe-barb-newsletter-march-2016%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12698,1480196407.371499,1480196406.730000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12699,0.000000,1480198604.115547,'\0\0\0\0\0\0\0\0\0\05,',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; XoviBot/2.0; +http://www.xovibot.net/)','',NULL,NULL),(12696,0.000000,1480196405.805933,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12697,1480196408.836780,1480196408.290000,'\0\0\0\0\0\0\0\0\0\0',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12694,0.000000,1480196026.955980,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12695,0.000000,1480196074.454840,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12692,0.000000,1480191880.022013,'\0\0\0\0\0\0\0\0\0\0-C',0,200,0,0,0,'http://fiepfa.org/wp-readme.php','http://fiepfa.org/wp-readme.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','',NULL,NULL),(12693,0.000000,1480191884.413103,'\0\0\0\0\0\0\0\0\0\0-C',0,404,0,0,0,'http://www.fiepfa.org/wp-readme.php','http://www.fiepfa.org/wp-readme.php','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','',NULL,NULL),(12691,1480190521.832373,1480190521.000000,'\0\0\0\0\0\0\0\0\0\0/2?',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12689,0.000000,1480190519.642652,'\0\0\0\0\0\0\0\0\0\0/2?',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12690,1480190523.746388,1480190523.150000,'\0\0\0\0\0\0\0\0\0\0/2?',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12688,0.000000,1480190254.352675,'\0\0\0\0\0\0\0\0\0\0(ME',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12685,0.000000,1480188176.080427,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12686,0.000000,1480188853.323554,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12687,0.000000,1480188898.507005,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12684,1480187632.264881,1480187631.610000,'\0\0\0\0\0\0\0\0\0\0I.',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12680,0.000000,1480183766.633074,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12679,0.000000,1480183027.027631,'\0\0\0\0\0\0\0\0\0\0>Ң*',0,404,0,0,0,'http://www.fiepfa.org/wprpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12681,0.000000,1480186846.272067,'\0\0\0\0\0\0\0\0\0\0(ME',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12682,0.000000,1480187630.916817,'\0\0\0\0\0\0\0\0\0\0I.',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12678,1480183026.930892,1480183026.460000,'\0\0\0\0\0\0\0\0\0\0>Ң*',0,403,0,0,0,'http://www.fiepfa.org/wprpc.php',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','logged:waf','Watched IP Traffic: 62.210.162.42','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwcnBjLnBocA==\",\"category\":\"logged\",\"ssl\":0}'),(12683,1480187633.132162,1480187632.700000,'\0\0\0\0\0\0\0\0\0\0I.',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12677,0.000000,1480183020.875860,'\0\0\0\0\0\0\0\0\0\0>Ң*',0,404,0,0,0,'http://www.fiepfa.org/wprpc.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(12675,0.000000,1480181912.434883,'\0\0\0\0\0\0\0\0\0\0= :',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.6) Gecko/20091201 Firefox/3.5.6 (.NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)','',NULL,NULL),(12676,1480183020.824120,1480183020.480000,'\0\0\0\0\0\0\0\0\0\0>Ң*',0,403,0,0,0,'http://www.fiepfa.org/wprpc.php',NULL,'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','logged:waf','Watched IP Traffic: 62.210.162.42','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwcnBjLnBocA==\",\"category\":\"logged\",\"ssl\":0}'),(11075,0.000000,1478242165.102264,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11076,1478242248.477586,1478242248.260000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11077,1478242247.612022,1478242247.300000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11078,0.000000,1478242474.727943,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11079,1478242356.225835,1478242355.770000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11080,1478242355.170400,1478242354.670000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11081,0.000000,1478242477.583182,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11082,0.000000,1478242858.835040,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11083,1478242726.903399,1478242726.620000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11084,1478242725.995905,1478242725.640000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11085,1478242610.607251,1478242610.350000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11086,1478242606.689247,1478242606.300000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11087,0.000000,1478242861.291055,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11088,1478243000.514671,1478243000.140000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11089,1478242999.595910,1478242999.300000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11090,1478243137.108938,1478243136.740000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11091,1478243136.172472,1478243135.820000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11092,0.000000,1478243391.988111,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11093,0.000000,1478243785.869077,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11094,1478243653.504924,1478243653.250000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11095,1478243652.637445,1478243652.250000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11096,1478243507.879855,1478243507.470000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11097,1478243506.885173,1478243506.550000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11098,1478243394.677607,1478243394.410000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11099,0.000000,1478243788.987120,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11100,0.000000,1478244088.992499,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11101,1478244361.626029,1478244361.340000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11102,1478244360.733550,1478244360.350000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11103,1478244258.602376,1478244258.220000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11104,1478244244.474940,1478244244.190000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11105,1478244091.705693,1478244091.300000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11106,0.000000,1478244505.784446,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11107,1478244623.322887,1478244623.020000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11108,1478244622.474866,1478244622.210000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11109,1478244507.670233,1478244507.350000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11110,0.000000,1478246162.182859,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11111,0.000000,1478257874.382187,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11112,0.000000,1478258308.572674,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11113,1478257876.733097,1478257876.340000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11114,0.000000,1478258311.594670,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11115,1478258554.822062,1478258554.440000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11116,0.000000,1478258687.210332,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11117,1478258553.872989,1478258553.470000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11118,1478258428.668604,1478258428.250000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11119,1478258427.636608,1478258427.200000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11120,0.000000,1478258689.427223,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11121,0.000000,1478259079.010536,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11122,1478258949.727821,1478258949.340000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11123,1478258948.784551,1478258948.570000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11124,1478258821.108909,1478258820.700000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11125,1478258820.088151,1478258819.670000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11126,1478259331.694250,1478259331.450000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11127,1478259330.886417,1478259330.430000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11128,1478259216.290002,1478259215.960000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11129,1478259206.368173,1478259205.890000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11130,0.000000,1478259471.823728,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11131,0.000000,1478259824.814366,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11132,1478259686.792824,1478259686.440000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11133,1478259685.822193,1478259685.470000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11134,1478259586.178529,1478259585.770000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11135,1478259585.019782,1478259584.730000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11136,1478259474.228396,1478259473.850000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11137,0.000000,1478260280.683156,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11138,1478259964.873156,1478259964.450000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11139,1478259954.830991,1478259954.430000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11140,1478259830.516588,1478259830.210000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11141,0.000000,1478260283.781641,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11142,0.000000,1478260643.681984,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11143,1478260542.133503,1478260541.740000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11144,1478260541.131702,1478260540.730000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11145,1478260407.482937,1478260407.230000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11146,1478260406.690823,1478260406.400000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11147,0.000000,1478260646.823810,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11148,0.000000,1478261059.926990,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11149,1478260915.784820,1478260915.400000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11150,1478260914.806134,1478260914.390000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11151,1478260790.031466,1478260789.630000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11152,1478260785.930605,1478260785.520000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11153,0.000000,1478261062.428768,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11154,1478261325.532567,1478261325.330000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11155,1478261324.771525,1478261324.550000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11156,1478261198.016538,1478261197.760000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11157,1478261197.171669,1478261196.760000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11158,0.000000,1478261443.924453,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11159,0.000000,1478261456.122819,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11160,0.000000,1478261839.968201,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11161,1478261713.709181,1478261713.300000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11162,1478261712.720780,1478261712.350000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11163,1478261567.328988,1478261566.980000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12344,0.000000,1480007377.822746,'\0\0\0\0\0\0\0\0\0\0MN',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12345,1480007380.743529,1480007380.100000,'\0\0\0\0\0\0\0\0\0\0MN',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12343,0.000000,1480007203.864208,'\0\0\0\0\0\0\0\0\0\07\'W',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12341,0.000000,1480005707.546122,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/playground/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12342,0.000000,1480007193.126649,'\0\0\0\0\0\0\0\0\0\07\'W',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12340,0.000000,1480005390.755954,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12339,0.000000,1480005388.734621,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=5','http://fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12338,0.000000,1480005387.852288,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=4','http://fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12337,0.000000,1480005386.662048,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=3','http://fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12336,0.000000,1480005385.519153,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=2','http://fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12334,0.000000,1480005382.538299,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12335,0.000000,1480005384.267792,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/?author=1','http://fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12333,0.000000,1480005381.128394,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12331,0.000000,1480001641.540297,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12332,0.000000,1480005377.461243,'\0\0\0\0\0\0\0\0\0\0[',0,200,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12330,0.000000,1480001594.661909,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12328,0.000000,1479994253.518744,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12329,0.000000,1479994294.434715,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12327,0.000000,1479988870.260776,'\0\0\0\0\0\0\0\0\0\06Q3',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)','',NULL,NULL),(12326,0.000000,1479988865.019599,'\0\0\0\0\0\0\0\0\0\06Q3',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3 GTB6 (.NET CLR 3.5.30729)','',NULL,NULL),(12324,0.000000,1479987205.231399,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12325,0.000000,1479987879.618791,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12323,0.000000,1479987158.957253,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12322,0.000000,1479985059.833082,'\0\0\0\0\0\0\0\0\0\02>f',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12320,0.000000,1479983594.356687,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12321,0.000000,1479983597.626034,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/comments/feed/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12319,0.000000,1479983141.222007,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-february-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12317,0.000000,1479980323.726580,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',NULL,NULL),(12318,0.000000,1479981131.772452,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12316,0.000000,1479980320.314673,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://fiepfa.org/','http://fiepfa.org/','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)','',NULL,NULL),(12314,0.000000,1479979996.353315,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12315,0.000000,1479980128.514410,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/category/testing/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12312,0.000000,1479976287.938026,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12313,0.000000,1479979952.230709,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12311,0.000000,1479975724.747690,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12309,0.000000,1479972818.671821,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12310,0.000000,1479972863.641909,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12307,0.000000,1479970360.523658,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12308,0.000000,1479970363.758312,'\0\0\0\0\0\0\0\0\0\0A0',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12306,0.000000,1479970104.408529,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12305,0.000000,1479969488.557269,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12303,0.000000,1479965726.330435,'\0\0\0\0\0\0\0\0\0\0[1',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','http://www.fiepfa.org/xmlrpc.php','\"Mozilla/5.0 (Windows NT 6.1; WOW64; rv:32.0) Gecko/20100101 Firefox/32.0\"','',NULL,NULL),(12304,0.000000,1479966794.466578,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12302,0.000000,1479965452.737455,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12301,0.000000,1479965412.415050,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12299,0.000000,1479962853.362272,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/537.36','',NULL,NULL),(12300,0.000000,1479963949.654649,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12297,0.000000,1479961773.356761,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12298,0.000000,1479961812.415409,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12295,0.000000,1479958925.462888,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12296,0.000000,1479961224.972854,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12294,0.000000,1479958747.010854,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12292,0.000000,1479958528.205456,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12293,0.000000,1479958581.515664,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12291,0.000000,1479952653.937040,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12290,0.000000,1479952361.516132,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12288,0.000000,1479951096.637578,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12289,0.000000,1479952359.637426,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12286,0.000000,1479949181.445700,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12287,0.000000,1479951055.110260,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12285,0.000000,1479947175.370837,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12283,0.000000,1479946041.868625,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12284,0.000000,1479946076.956902,'\0\0\0\0\0\0\0\0\0\0[',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12282,0.000000,1479945833.836399,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-december-2015-and-january-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12281,0.000000,1479943844.336922,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12279,0.000000,1479942598.450793,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12280,0.000000,1479943804.165888,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12278,0.000000,1479941580.944312,'\0\0\0\0\0\0\0\0\0\0(M!',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12277,0.000000,1479936831.221475,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12275,0.000000,1479934540.269273,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12276,0.000000,1479936785.470572,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12273,0.000000,1479932312.928014,'\0\0\0\0\0\0\0\0\0\0OR',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)','',NULL,NULL),(12274,0.000000,1479933255.840529,'\0\0\0\0\0\0\0\0\0\0	_',0,200,0,0,0,'http://www.fiepfa.org/','','Apache-HttpClient/UNAVAILABLE (java 1.4)','',NULL,NULL),(12272,0.000000,1479930671.370242,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12271,0.000000,1479930669.463924,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=5','http://www.fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12270,0.000000,1479930668.140057,'\0\0\0\0\0\0\0\0\0\0ʣ|',0,200,0,0,0,'http://www.fiepfa.org/?author=4','http://www.fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(11583,0.000000,1479310396.695496,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11584,1479310133.026291,1479310132.310000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11585,1479309837.806081,1479309837.140000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11586,0.000000,1479310424.262337,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11587,0.000000,1479310471.410574,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11588,0.000000,1479310943.805969,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11589,0.000000,1479311431.759847,'\0\0\0\0\0\0\0\0\0\0[ғ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11590,1479311179.055824,1479311178.550000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11591,1479311177.557297,1479311176.930000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11592,1479310946.821517,1479310946.190000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11593,1479311438.724738,1479311438.170000,'\0\0\0\0\0\0\0\0\0\0[ғ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(11594,0.000000,1479313850.823547,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11595,0.000000,1479316762.547612,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11596,0.000000,1479317299.922898,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11597,0.000000,1479317456.431455,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11598,0.000000,1479317497.056523,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11599,0.000000,1479321166.041935,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11600,0.000000,1479321211.841548,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11601,0.000000,1479323446.863023,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11602,0.000000,1479328198.099862,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11603,0.000000,1479331963.395947,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11604,0.000000,1479332007.331342,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11605,0.000000,1479334086.801289,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/05/13/the-barb-newsletter-may-2016/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11606,0.000000,1479338274.957607,'\0\0\0\0\0\0\0\0\0\0@>\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(11607,0.000000,1479338353.699787,'\0\0\0\0\0\0\0\0\0\0@>\'',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36','',NULL,NULL),(11608,0.000000,1479338997.409667,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11609,0.000000,1479339039.040000,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11610,0.000000,1479345314.291991,'\0\0\0\0\0\0\0\0\0\0A',0,200,0,0,0,'http://www.fiepfa.org/2016/03/01/the-barb-newsletter-march-2016/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11611,0.000000,1479346142.921350,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11612,0.000000,1479346260.055636,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11613,0.000000,1479346302.958542,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11614,0.000000,1479350727.650148,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11615,0.000000,1479350731.241888,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11616,0.000000,1479353711.151670,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11617,0.000000,1479353762.952315,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11618,0.000000,1479358685.856197,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11619,0.000000,1479360604.375473,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11620,0.000000,1479360639.646267,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11621,0.000000,1479361564.131660,'\0\0\0\0\0\0\0\0\0\0Út',0,404,0,0,0,'http://www.fiepfa.org/up.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(11622,0.000000,1479361564.133512,'\0\0\0\0\0\0\0\0\0\0Út',0,404,0,0,0,'http://www.fiepfa.org/upload.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(11623,0.000000,1479361575.330203,'\0\0\0\0\0\0\0\0\0\0Út',0,404,0,0,0,'http://www.fiepfa.org/up.php','','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36','',NULL,NULL),(11624,0.000000,1479363377.956314,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11625,0.000000,1479363380.838302,'\0\0\0\0\0\0\0\0\0\0\\',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11626,0.000000,1479363485.710977,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11627,0.000000,1479363487.010923,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11628,0.000000,1479364865.339981,'\0\0\0\0\0\0\0\0\0\0BAt',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11629,0.000000,1479367986.119226,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11630,0.000000,1479368032.325258,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11631,0.000000,1479371540.104553,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11632,0.000000,1479371585.320613,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11633,0.000000,1479371807.646743,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11634,0.000000,1479371821.593975,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11635,0.000000,1479375112.622006,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11636,0.000000,1479375156.425520,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11637,0.000000,1479377671.424580,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/embed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11638,0.000000,1479382346.927084,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11639,0.000000,1479382393.109260,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11640,0.000000,1479384292.447226,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F05%2F13%2Fthe-barb-newsletter-may-2016%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11641,0.000000,1479386671.407570,'\0\0\0\0\0\0\0\0\0\0BAp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11642,0.000000,1479389434.554463,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11643,0.000000,1479389476.602481,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11644,0.000000,1479391623.048671,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=297','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11645,0.000000,1479391625.599009,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/about/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11646,0.000000,1479397691.251067,'\0\0\0\0\0\0\0\0\0\0A',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11647,0.000000,1479399272.659742,'\0\0\0\0\0\0\0\0\0\0{}G6',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11648,0.000000,1479399375.217306,'\0\0\0\0\0\0\0\0\0\0{}G,',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11649,0.000000,1479399986.660258,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(11650,0.000000,1479401951.829146,'\0\0\0\0\0\0\0\0\0\0:',0,200,0,0,0,'http://www.fiepfa.org/2016/03/16/parent-workshop-on-florida-standards-assessment-program-fsa-and-accountability-system/','https://www.google.com/','Mozilla/5.0 (Linux; Android 6.0.1; SAMSUNG SM-G925T Build/MMB29K) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/4.0 Chrome/44.0.2403.133 Mobile Safari/537.36','',NULL,NULL),(11651,0.000000,1479402600.842549,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/xmlrpc-activate.php','http://www.fiepfa.org/xmlrpc-activate.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36','',NULL,NULL),(11652,0.000000,1479403819.776597,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11653,0.000000,1479403860.465683,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11654,0.000000,1479405635.170534,'\0\0\0\0\0\0\0\0\0\0Lj',1,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Linux; Android 6.0.1; XT1585 Build/MCK24.183-22) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36','',NULL,NULL),(11655,0.000000,1479405651.439156,'\0\0\0\0\0\0\0\0\0\0Lj',1,200,0,0,0,'http://www.fiepfa.org/team/','http://www.fiepfa.org/','Mozilla/5.0 (Linux; Android 6.0.1; XT1585 Build/MCK24.183-22) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36','',NULL,NULL),(11656,0.000000,1479405687.738106,'\0\0\0\0\0\0\0\0\0\0Lj',1,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','http://www.fiepfa.org/team/','Mozilla/5.0 (Linux; Android 6.0.1; XT1585 Build/MCK24.183-22) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.85 Mobile Safari/537.36','',NULL,NULL),(11657,0.000000,1479408549.446428,'\0\0\0\0\0\0\0\0\0\0BAt',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11658,0.000000,1479408552.842723,'\0\0\0\0\0\0\0\0\0\0BAx',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11659,0.000000,1479411157.716806,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11660,0.000000,1479411203.570372,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11661,0.000000,1479414360.145049,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','',NULL,NULL),(11662,0.000000,1479414361.752447,'\0\0\0\0\0\0\0\0\0\0#',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)','',NULL,NULL),(11663,0.000000,1479414516.727180,'\0\0\0\0\0\0\0\0\0\0.\ri',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11664,0.000000,1479418391.413760,'\0\0\0\0\0\0\0\0\0\0L!',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11665,0.000000,1479418437.421163,'\0\0\0\0\0\0\0\0\0\0b\Z',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_5) AppleWebKit/601.6.17 (KHTML, like Gecko) Version/9.1.1 Safari/601.6.17','',NULL,NULL),(11666,0.000000,1479418439.252185,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11667,0.000000,1479421937.146430,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/themes/wp-conns.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11668,0.000000,1479421942.838653,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/plugins/wp-conns.php','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(11669,0.000000,1479422732.759821,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(11670,0.000000,1479425390.503777,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11671,0.000000,1479425424.430921,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11672,0.000000,1479425709.526199,'\0\0\0\0\0\0\0\0\0\0b^',1,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/6.1.6 Safari/537.78.2','',NULL,NULL),(11673,0.000000,1479426183.910071,'\0\0\0\0\0\0\0\0\0\0b^',1,200,0,0,0,'http://www.fiepfa.org/fie-faculty-and-staff/','http://www.fiepfa.org/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_5) AppleWebKit/537.78.2 (KHTML, like Gecko) Version/6.1.6 Safari/537.78.2','',NULL,NULL),(11674,0.000000,1479426507.837740,'\0\0\0\0\0\0\0\0\0\0BAp',0,404,1,0,0,'http://www.fiepfa.org/2016/04/27/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11675,0.000000,1479430149.073795,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-december-2015-and-january-2016/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(11676,0.000000,1479432629.867122,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11677,0.000000,1479432678.907242,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11678,0.000000,1479432722.061634,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11679,0.000000,1479432739.908756,'\0\0\0\0\0\0\0\0\0\0BAx',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11680,0.000000,1479433000.514422,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11681,0.000000,1479433005.369259,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11682,0.000000,1479433298.229853,'\0\0\0\0\0\0\0\0\0\0h/,',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; NetcraftSurveyAgent/1.0; +info@netcraft.com)','',NULL,NULL),(11683,0.000000,1479436729.152986,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11684,0.000000,1479440146.861860,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11685,0.000000,1479440200.231969,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11686,0.000000,1479441312.829094,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11687,0.000000,1479442872.532206,'\0\0\0\0\0\0\0\0\0\0{}GG',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11688,0.000000,1479447006.822190,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11689,0.000000,1479447044.559814,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11690,0.000000,1479449231.942571,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11691,0.000000,1479451475.236881,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11692,0.000000,1479452640.248202,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/web/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11693,0.000000,1479455326.909977,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fabout%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11694,0.000000,1479456170.019528,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11695,0.000000,1479461516.389418,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11696,0.000000,1479461562.359146,'\0\0\0\0\0\0\0\0\0\0L\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11697,0.000000,1479466334.815475,'\0\0\0\0\0\0\0\0\0\0.u',0,200,1,0,0,'http://fiepfa.org/wordpress/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11698,0.000000,1479466356.219472,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/wordpress/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11699,0.000000,1479468797.118103,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11700,0.000000,1479468843.068864,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11701,0.000000,1479469366.154703,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://fiepfa.org/index.php/admin/','http://FIEPFA.ORG/index.php/admin/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11702,0.000000,1479469369.644681,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/admin/','http://www.fiepfa.org/admin/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11703,0.000000,1479469372.864991,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://fiepfa.org/downloader/','http://FIEPFA.ORG/downloader/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11704,0.000000,1479469374.513186,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://www.fiepfa.org/downloader/','http://www.fiepfa.org/downloader/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36','',NULL,NULL),(11705,0.000000,1479470129.755607,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11706,0.000000,1479471388.315732,'\0\0\0\0\0\0\0\0\0\0bY',1,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(11707,0.000000,1479471399.515856,'\0\0\0\0\0\0\0\0\0\0bY',1,200,0,0,0,'http://www.fiepfa.org/fundraising/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(11708,0.000000,1479471441.947689,'\0\0\0\0\0\0\0\0\0\0bY',1,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/fundraising/','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(11709,0.000000,1479472074.052689,'\0\0\0\0\0\0\0\0\0\0bY',1,200,0,0,0,'http://www.fiepfa.org/fundraising/','http://www.fiepfa.org/about/','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(11710,0.000000,1479472200.750368,'\0\0\0\0\0\0\0\0\0\0bY',1,200,0,0,0,'http://www.fiepfa.org/team/','http://www.fiepfa.org/fundraising/','Mozilla/5.0 (Windows NT 6.1; rv:50.0) Gecko/20100101 Firefox/50.0','',NULL,NULL),(11711,0.000000,1479475824.933062,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11712,0.000000,1479475867.543247,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11713,0.000000,1479477059.860758,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11714,0.000000,1479477061.918950,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11715,0.000000,1479477553.853023,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11716,0.000000,1479478740.961827,'\0\0\0\0\0\0\0\0\0\0Ɍ',0,200,0,0,0,'http://www.fiepfa.org/','','Zend_Http_Client','',NULL,NULL),(11717,0.000000,1479478743.873252,'\0\0\0\0\0\0\0\0\0\0.\r',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11718,0.000000,1479479667.759436,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11719,0.000000,1479479718.872541,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11720,0.000000,1479480182.805152,'\0\0\0\0\0\0\0\0\0\0k',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11721,0.000000,1479480184.931855,'\0\0\0\0\0\0\0\0\0\0k',1,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11722,0.000000,1479480442.549476,'\0\0\0\0\0\0\0\0\0\0Ʉ',0,200,0,0,0,'http://www.fiepfa.org/','','','',NULL,NULL),(11723,0.000000,1479480657.140906,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/calendars/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11724,0.000000,1479480682.738432,'\0\0\0\0\0\0\0\0\0\07\'+',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11725,0.000000,1479483212.136975,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11726,0.000000,1479483264.053466,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11727,0.000000,1479483374.770006,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11728,0.000000,1479483740.263192,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11729,0.000000,1479483742.135223,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11730,0.000000,1479485133.870437,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11731,0.000000,1479485193.316573,'\0\0\0\0\0\0\0\0\0\0I',1,200,0,0,0,'http://www.fiepfa.org/','https://outlook.live.com/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393','',NULL,NULL),(11732,0.000000,1479485199.366107,'\0\0\0\0\0\0\0\0\0\0I',1,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.79 Safari/537.36 Edge/14.14393','',NULL,NULL),(11733,0.000000,1479485384.060526,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=629','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11734,0.000000,1479485385.948517,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11735,0.000000,1479488580.323194,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/page/2/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11736,0.000000,1479488906.231873,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11737,0.000000,1479490269.350520,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11738,0.000000,1479490310.208186,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11739,0.000000,1479493322.158221,'\0\0\0\0\0\0\0\0\0\0`',0,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11740,0.000000,1479493358.326607,'\0\0\0\0\0\0\0\0\0\0`',0,200,0,0,0,'http://www.fiepfa.org/','http://fie.oneclay.net/for-parents.html','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36','',NULL,NULL),(11741,0.000000,1479495388.120167,'\0\0\0\0\0\0\0\0\0\0U',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(11742,0.000000,1479495391.533777,'\0\0\0\0\0\0\0\0\0\0U',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36','',NULL,NULL),(11743,0.000000,1479495487.405774,'\0\0\0\0\0\0\0\0\0\0kH<',1,200,0,0,0,'http://www.fiepfa.org/','https://www.google.com/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14B100 Safari/601.1.46','',NULL,NULL),(11744,0.000000,1479495499.037675,'\0\0\0\0\0\0\0\0\0\0kH<',1,200,0,0,0,'http://www.fiepfa.org/playground/','http://www.fiepfa.org/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14B100 Safari/601.1.46','',NULL,NULL),(11745,0.000000,1479495687.038329,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=590','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11746,0.000000,1479495689.107858,'\0\0\0\0\0\0\0\0\0\0L	',0,200,0,0,0,'http://www.fiepfa.org/2016/03/23/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11747,0.000000,1479497610.255741,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11748,0.000000,1479497656.125358,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11749,0.000000,1479497696.273013,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11750,0.000000,1479497915.248033,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11751,0.000000,1479498683.842806,'\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows; U; Windows NT 5.1; fr; rv:1.9.2b5) Gecko/20091204 Firefox/3.6b5','',NULL,NULL),(11752,0.000000,1479499087.811509,'\0\0\0\0\0\0\0\0\0\0.',0,200,0,0,0,'http://www.fiepfa.org/','','mozilla/3.0 (Windows NT 6.1; rv:2.0.1) Gecko/20100101 Firefox/5.0.1','',NULL,NULL),(11753,0.000000,1479499705.405092,'\0\0\0\0\0\0\0\0\0\0L\Z',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F03%2F23%2Fmake-a-difference-by-becoming-a-pfa-officer%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11754,0.000000,1479501908.273102,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11755,0.000000,1479501910.432120,'\0\0\0\0\0\0\0\0\0\0BK',0,404,1,0,0,'http://www.fiepfa.org/2016/04/07/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11756,0.000000,1479502171.868802,'\0\0\0\0\0\0\0\0\0\0{}Gt',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11757,0.000000,1479502549.267948,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11758,0.000000,1479504187.539872,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/blog/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11759,0.000000,1479504796.438809,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11760,0.000000,1479504843.891592,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11761,0.000000,1479505211.737577,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11762,0.000000,1479505727.045590,'\0\0\0\0\0\0\0\0\0\0)P',0,200,0,0,0,'http://fiepfa.org/','http://1-99seo.com/try.php?u=http://fiepfa.org','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.143 Safari/537.36','',NULL,NULL),(11763,0.000000,1479506869.269054,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/fundraising/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(11764,0.000000,1479508461.614730,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11765,0.000000,1479510176.964237,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/author/FIEPFAlogin/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11766,0.000000,1479510222.335796,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/','http://r.search.yahoo.com/RV=1/RE=1479539017/RB=/RO=8/RU=http%3a%2f%2fwww.fiepfa.org%2f/RS=^ADAhCLkYxZk2FuV78IaDni9Z1TW3Mk-','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1','',NULL,NULL),(11767,0.000000,1479510252.336621,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/volunteers/','http://www.fiepfa.org/','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1','',NULL,NULL),(11768,0.000000,1479510266.606193,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','http://www.fiepfa.org/volunteers/','Mozilla/5.0 (iPhone; CPU iPhone OS 9_3_2 like Mac OS X) AppleWebKit/601.1.46 (KHTML, like Gecko) Version/9.0 Mobile/13F69 Safari/601.1','',NULL,NULL),(11769,0.000000,1479510305.623649,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/author/FIEPFAlogin/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11770,0.000000,1479510474.167122,'\0\0\0\0\0\0\0\0\0\0Lj&',1,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11771,0.000000,1479510493.455475,'\0\0\0\0\0\0\0\0\0\0Lj&',1,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11772,0.000000,1479510495.212301,'\0\0\0\0\0\0\0\0\0\0Lj&',1,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11773,0.000000,1479510504.850929,'\0\0\0\0\0\0\0\0\0\0Lj&',1,200,0,0,0,'http://www.fiepfa.org/news-and-events/','http://www.fiepfa.org/about/','Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; rv:11.0) like Gecko','',NULL,NULL),(11774,0.000000,1479510800.466060,'\0\0\0\0\0\0\0\0\0\0Gq',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(11775,0.000000,1479510802.413750,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(11776,0.000000,1479510813.445531,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/about/','http://www.fiepfa.org/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0.1 Safari/602.2.14','',NULL,NULL),(11777,0.000000,1479511860.718813,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11778,0.000000,1479511903.854093,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11779,0.000000,1479512409.530527,'\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(11780,0.000000,1479512415.424675,'\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; ScoutJet; +http://www.scoutjet.com/)','',NULL,NULL),(11781,0.000000,1479513052.517079,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fvolunteers%2Fvolunteer-hours-submission-portal%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11782,0.000000,1479517070.964547,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11783,0.000000,1479519185.865873,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/blogs/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11784,0.000000,1479520006.242635,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11785,0.000000,1479520091.051868,'\0\0\0\0\0\0\0\0\0\0BK\r',0,404,1,0,0,'http://www.fiepfa.org/mobile/wp-content/uploads/2016/02/FIE-BARB-201511.pdf','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11786,0.000000,1479520826.523216,'\0\0\0\0\0\0\0\0\0\0.\rz',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11787,0.000000,1479521089.520327,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fvolunteers%2Fvolunteer-hours-submission-portal%2F&format=xml','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11788,0.000000,1479521634.129319,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:28.0) Gecko/20100101 Firefox/28.0','',NULL,NULL),(11789,0.000000,1479522094.952929,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/wp/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11790,0.000000,1479526358.732839,'\0\0\0\0\0\0\0\0\0\0P',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11791,0.000000,1479526361.455230,'\0\0\0\0\0\0\0\0\0\0@',0,200,0,0,0,'http://www.fiepfa.org/author/dan-webb/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11792,0.000000,1479526551.964500,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11793,0.000000,1479526606.348083,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11794,0.000000,1479527447.632950,'\0\0\0\0\0\0\0\0\0\0BK',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11795,0.000000,1479529389.066864,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11796,0.000000,1479529419.870588,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11797,0.000000,1479530366.506700,'\0\0\0\0\0\0\0\0\0\0Sw',0,200,0,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/23.0.1271.6 Safari/537.11','',NULL,NULL),(11798,0.000000,1479530369.065983,'\0\0\0\0\0\0\0\0\0\0Sw',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/23.0.1271.6 Safari/537.11','',NULL,NULL),(11799,0.000000,1479530370.362283,'\0\0\0\0\0\0\0\0\0\0Sw',0,200,0,0,0,'http://fiepfa.org/administrator/','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/23.0.1271.6 Safari/537.11','',NULL,NULL),(11800,0.000000,1479530372.020551,'\0\0\0\0\0\0\0\0\0\0Sw',0,200,0,0,0,'http://fiepfa.org/admin.php','','Mozilla/5.0 (Windows NT 5.1) AppleWebKit/537.1 (KHTML, like Gecko) Chrome/23.0.1271.6 Safari/537.11','',NULL,NULL),(11801,0.000000,1479533400.150975,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11802,0.000000,1479533438.155540,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11803,0.000000,1479536197.009516,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11804,0.000000,1479536199.415481,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(11805,0.000000,1479536319.855359,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/?p=386','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11806,0.000000,1479536321.553143,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/winter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11807,0.000000,1479540750.209340,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11808,0.000000,1479540794.442647,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11809,0.000000,1479540809.642202,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11810,0.000000,1479541083.011237,'\0\0\0\0\0\0\0\0\0\0.u',0,404,1,0,0,'http://www.fiepfa.org/test/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11811,0.000000,1479543044.766981,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2F2016%2F02%2F02%2Fwinter-2016-hula-dance-and-read-a-thon-featured-on-fundraising-page%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11812,0.000000,1479546182.916673,'\0\0\0\0\0\0\0\0\0\0BK	',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(11813,0.000000,1479547940.769313,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11814,0.000000,1479547986.847857,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11815,0.000000,1479548901.154403,'\0\0\0\0\0\0\0\0\0\0B\'',0,200,0,0,0,'http://www.fiepfa.org/author/FIEPFAlogin/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(11816,0.000000,1479551128.126010,'\0\0\0\0\0\0\0\0\0\0MLx',0,200,0,0,0,'http://www.fiepfa.org/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2220.0 Safari/537.36','',NULL,NULL),(11817,0.000000,1479551133.863462,'\0\0\0\0\0\0\0\0\0\0MLx',0,200,0,0,0,'http://www.fiepfa.org/2016/06/02/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','http://www.fiepfa.org/','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2220.0 Safari/537.36','',NULL,NULL),(11818,0.000000,1479551619.507327,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11819,0.000000,1479551667.265320,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11820,0.000000,1479555160.917108,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11821,0.000000,1479555208.534106,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11822,0.000000,1479562535.313521,'\0\0\0\0\0\0\0\0\0\0ܵl',0,200,0,0,0,'http://www.fiepfa.org/category/events/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11823,0.000000,1479562710.317624,'\0\0\0\0\0\0\0\0\0\0BK\r',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12867,0.000000,1480332807.455817,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12868,0.000000,1480332854.266144,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12869,0.000000,1480335872.642759,'\0\0\0\0\0\0\0\0\0\0Bb',0,200,0,0,0,'http://www.fiepfa.org/author/FIEPFAlogin/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12870,0.000000,1480338048.375872,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12871,0.000000,1480338051.418700,'\0\0\0\0\0\0\0\0\0\0D',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)','',NULL,NULL),(12872,0.000000,1480342602.436977,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12873,0.000000,1480343036.470971,'\0\0\0\0\0\0\0\0\0\0b',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12874,1480343039.205657,1480343038.720000,'\0\0\0\0\0\0\0\0\0\0b',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12875,0.000000,1480343041.205576,'\0\0\0\0\0\0\0\0\0\0b',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(12866,0.000000,1480330130.135312,'\0\0\0\0\0\0\0\0\0\07\'H',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12865,0.000000,1480329576.873675,'\0\0\0\0\0\0\0\0\0\07\'S',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/make-a-difference-by-becoming-a-pfa-officer/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12864,0.000000,1480327537.742803,'\0\0\0\0\0\0\0\0\0\0BOt',0,404,1,0,0,'http://www.fiepfa.org/2016/04/27/pfa-president-dan-webb-shares-insight-on-boards-progress-in-2015-and-2016/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12862,0.000000,1480325604.352267,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12863,0.000000,1480326268.854156,'\0\0\0\0\0\0\0\0\0\0BOt',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12861,0.000000,1480325559.261376,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12860,0.000000,1480325146.511440,'\0\0\0\0\0\0\0\0\0\0u(',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12859,0.000000,1480323354.253837,'\0\0\0\0\0\0\0\0\0\0Bg',0,200,0,0,0,'http://www.fiepfa.org/news-and-events/page/2/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12857,0.000000,1480322122.365768,'\0\0\0\0\0\0\0\0\0\0Bl',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12858,0.000000,1480322256.851319,'\0\0\0\0\0\0\0\0\0\0Pc',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12856,0.000000,1480321856.022272,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12855,0.000000,1480318364.243233,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12854,0.000000,1480318319.215189,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12852,0.000000,1480314790.458902,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12853,0.000000,1480314838.221225,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12850,0.000000,1480311036.756566,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12851,0.000000,1480313559.468697,'\0\0\0\0\0\0\0\0\0\0m_&\'',0,200,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0','loginFailInvalidUsername',NULL,NULL),(12812,1480275558.124859,1480275557.670000,'\0\0\0\0\0\0\0\0\0\0N',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12811,1480275559.436885,1480275558.800000,'\0\0\0\0\0\0\0\0\0\0N',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12795,0.000000,1480272715.850809,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/files/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12796,0.000000,1480272718.551155,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/files/guest/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12797,0.000000,1480272720.840028,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/2016/11/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12798,1480272722.072198,1480272721.820000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L21vZHVsZXMvbW9kX3NpbXBsZWZpbGV1cGxvYWR2MS4zL2VsZW1lbnRzL3VkZC5waHA=\",\"category\":\"file_upload\",\"ssl\":0}'),(11184,0.000000,1478263373.285540,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12815,1480279443.417859,1480279442.720000,'\0\0\0\0\0\0\0\0\0\0C',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12816,1480279442.072671,1480279441.380000,'\0\0\0\0\0\0\0\0\0\0C',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12848,0.000000,1480308066.756375,'\0\0\0\0\0\0\0\0\0\0՟&Z',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php','http://www.fiepfa.org/','PHP/5.2.31','',NULL,NULL),(12849,0.000000,1480310996.576866,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12809,0.000000,1480275556.883791,'\0\0\0\0\0\0\0\0\0\0N',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(11185,1478263255.913815,1478263255.510000,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,403,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12808,0.000000,1480275252.074892,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12799,1480272719.768491,1480272719.440000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/woocommerce-product-options/includes/image-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93b29jb21tZXJjZS1wcm9kdWN0LW9wdGlvbnMvaW5jbHVkZXMvaW1hZ2UtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12810,0.000000,1480276482.065444,'\0\0\0\0\0\0\0\0\0\0bV',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12807,0.000000,1480275206.840596,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12806,1480272730.260021,1480272729.620000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/xmlrpc.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(12803,0.000000,1480272726.137693,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12804,0.000000,1480272727.829609,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12805,0.000000,1480272728.975600,'\0\0\0\0\0\0\0\0\0\0Ú',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12802,0.000000,1480272724.563658,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/?feed=rss2','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12817,1480276487.235852,1480276486.500000,'\0\0\0\0\0\0\0\0\0\0bV',0,403,0,0,0,'http://www.fiepfa.org/wp-login.php',NULL,'Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3dwLWxvZ2luLnBocA==\"}'),(12801,0.000000,1480272722.728821,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/modules/mod_simplefileuploadv1.3/elements/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12818,0.000000,1480282411.352490,'\0\0\0\0\0\0\0\0\0\0L ',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12819,0.000000,1480282458.960758,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12820,0.000000,1480285561.208376,'\0\0\0\0\0\0\0\0\0\0BOp',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12821,0.000000,1480289147.309123,'\0\0\0\0\0\0\0\0\0\07\'H',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12822,0.000000,1480290624.741888,'\0\0\0\0\0\0\0\0\0\0]W',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12800,1480272717.611963,1480272717.350000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZXNdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9qcXVlcnktaHRtbDUtZmlsZS11cGxvYWQvanF1ZXJ5LWh0bWw1LWZpbGUtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12813,0.000000,1480276485.750013,'\0\0\0\0\0\0\0\0\0\0bV',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(11183,0.000000,1478263156.168015,'\0\0\0\0\0\0\0\0\0\0[Ґ',0,503,0,0,0,'http://fiepfa.org/wp-login.php','http://fiepfa.org/wp-login.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','blocked: Blocked by Wordfence Security Network',NULL),(12814,0.000000,1480279437.470917,'\0\0\0\0\0\0\0\0\0\0C',0,503,0,0,0,'http://www.fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12076,0.000000,1479778290.016798,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12077,0.000000,1479779195.046593,'\0\0\0\0\0\0\0\0\0\0Gq',1,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','http://www.fiepfa.org/volunteers/','Mozilla/5.0 (iPhone; CPU iPhone OS 10_1_1 like Mac OS X) AppleWebKit/602.2.14 (KHTML, like Gecko) Version/10.0 Mobile/14B100 Safari/602.1','',NULL,NULL),(12078,0.000000,1479781083.550921,'\0\0\0\0\0\0\0\0\0\0',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','http://fiepfa.org/xmlrpc.php','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12079,0.000000,1479781110.872552,'\0\0\0\0\0\0\0\0\0\0',0,404,0,0,0,'http://fiepfa.org/wp-content/plugins/contact-form-7/login.php?login=cmd','','Mozilla/5.0 (Windows NT 6.1; rv:34.0) Gecko/20100101 Firefox/34.0','',NULL,NULL),(12080,0.000000,1479791311.957932,'\0\0\0\0\0\0\0\0\0\0(MG',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12081,0.000000,1479792599.048437,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12082,0.000000,1479792636.443408,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12083,0.000000,1479793865.116599,'\0\0\0\0\0\0\0\0\0\0B',0,200,0,0,0,'http://www.fiepfa.org/2016/04/01/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; AhrefsBot/5.1; +http://ahrefs.com/robot/)','',NULL,NULL),(12084,0.000000,1479795780.172519,'\0\0\0\0\0\0\0\0\0\0B@x',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12085,0.000000,1479796378.513650,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12086,0.000000,1479796425.628352,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12087,0.000000,1479799956.277524,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12088,0.000000,1479800001.886446,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12089,0.000000,1479804278.567097,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12090,0.000000,1479804314.631113,'\0\0\0\0\0\0\0\0\0\0(M!',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12091,0.000000,1479804348.468798,'\0\0\0\0\0\0\0\0\0\0(M!',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12092,0.000000,1479804641.160262,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12093,0.000000,1479804645.349336,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/xmlrpc.php?rsd','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12094,0.000000,1479805520.520045,'\0\0\0\0\0\0\0\0\0\0(M!',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12095,0.000000,1479807169.070289,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12096,0.000000,1479807215.945691,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12097,1479813452.023531,1479813451.610000,'\0\0\0\0\0\0\0\0\0\0W',0,403,0,0,0,'http://fiepfa.org/robots.txt',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','logged:waf','Watched IP Traffic: 178.137.87.242','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3JvYm90cy50eHQ=\",\"category\":\"logged\",\"ssl\":0}'),(12098,0.000000,1479813452.069090,'\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://fiepfa.org/robots.txt','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(12099,0.000000,1479813457.414970,'\0\0\0\0\0\0\0\0\0\0W',0,200,0,0,0,'http://fiepfa.org/?author=1','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','',NULL,NULL),(12100,1479813459.170776,1479813458.580000,'\0\0\0\0\0\0\0\0\0\0W',0,403,0,0,0,'http://fiepfa.org/xmlrpc.php',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','logged:waf','Watched IP Traffic: 178.137.87.242','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\",\"category\":\"logged\",\"ssl\":0}'),(12101,1479813457.327175,1479813456.840000,'\0\0\0\0\0\0\0\0\0\0W',0,403,0,0,1,'http://fiepfa.org/?author=1',NULL,'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','logged:waf','Watched IP Traffic: 178.137.87.242','{\"learningMode\":0,\"failedRules\":\"logged\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"Lw==\",\"category\":\"logged\",\"ssl\":0}'),(12102,0.000000,1479813459.255521,'\0\0\0\0\0\0\0\0\0\0W',0,503,0,0,0,'http://fiepfa.org/xmlrpc.php','','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:48.0) Gecko/20100101 Firefox/48.0','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12103,0.000000,1479814469.111020,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12104,0.000000,1479814498.712111,'\0\0\0\0\0\0\0\0\0\0B@p',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12105,0.000000,1479814517.879876,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12106,0.000000,1479814979.552220,'\0\0\0\0\0\0\0\0\0\0(M!',0,200,0,0,0,'http://www.fiepfa.org/corporate-partners/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12107,0.000000,1479816592.618768,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/category/testing/feed/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12108,0.000000,1479819117.833381,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12109,0.000000,1479819248.206558,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/privacy-policy/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12110,0.000000,1479819448.741935,'\0\0\0\0\0\0\0\0\0\0(MG',0,404,0,0,0,'http://www.fiepfa.org/2016/04/07/the-barb-newsletter-april-2016/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12111,0.000000,1479820418.014961,'\0\0\0\0\0\0\0\0\0\07\'',0,404,0,0,0,'http://www.fiepfa.org/fie-calendar/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12112,0.000000,1479820986.725816,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12113,0.000000,1479821416.241948,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12114,0.000000,1479821458.230070,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12115,0.000000,1479822039.421325,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/author/christine-leon-vorst/','','Mozilla/5.0 (iPhone; CPU iPhone OS 7_0 like Mac OS X) AppleWebKit/537.51.1 (KHTML, like Gecko) Version/7.0 Mobile/11A465 Safari/9537.53 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12116,0.000000,1479825637.257214,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/','','','',NULL,NULL),(12117,0.000000,1479825641.836117,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','','',NULL,NULL),(12118,0.000000,1479825644.358183,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=2','','','',NULL,NULL),(12119,0.000000,1479825647.006856,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=3','','','',NULL,NULL),(12120,0.000000,1479825649.837704,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=4','','','',NULL,NULL),(12121,0.000000,1479825653.623277,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=5','','','',NULL,NULL),(12122,0.000000,1479825656.468834,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=6','','','',NULL,NULL),(12123,0.000000,1479825659.948876,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=7','','','',NULL,NULL),(12124,0.000000,1479825663.972778,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=8','','','',NULL,NULL),(12125,0.000000,1479825666.738681,'\0\0\0\0\0\0\0\0\0\0y*t',0,200,0,0,0,'http://www.fiepfa.org/?author=9','','','',NULL,NULL),(12126,0.000000,1479827467.171255,'\0\0\0\0\0\0\0\0\0\0z',0,404,1,0,0,'http://www.fiepfa.org/en/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12127,0.000000,1479828770.811184,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12128,0.000000,1479828818.938279,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12129,0.000000,1479829479.944527,'\0\0\0\0\0\0\0\0\0\016',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12130,0.000000,1479829482.610890,'\0\0\0\0\0\0\0\0\0\016',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12131,0.000000,1479830995.621169,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,0,0,'http://fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(12132,0.000000,1479830998.829665,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(12133,0.000000,1479831000.751436,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(12134,0.000000,1479831003.772776,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(12135,0.000000,1479831006.447236,'\0\0\0\0\0\0\0\0\0\0a',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(12136,0.000000,1479832240.862967,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12137,0.000000,1479832242.827840,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/2016/02/02/the-barb-newsletter-december-2015-and-january-2016/feed/','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12138,0.000000,1479832247.432940,'\0\0\0\0\0\0\0\0\0\0\\',0,200,0,0,0,'http://www.fiepfa.org/?p=337','','Mozilla/5.0 (compatible; Exabot/3.0; +http://www.exabot.com/go/robot)','',NULL,NULL),(12139,0.000000,1479832555.529317,'\0\0\0\0\0\0\0\0\0\0z',0,200,1,0,0,'http://fiepfa.org/site/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12140,0.000000,1479837544.614802,'\0\0\0\0\0\0\0\0\0\0z',0,200,1,0,0,'http://fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12141,0.000000,1479837885.210145,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12142,0.000000,1479840340.568205,'\0\0\0\0\0\0\0\0\0\0z',0,200,1,0,0,'http://fiepfa.org/home/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12143,0.000000,1479840347.625548,'\0\0\0\0\0\0\0\0\0\0z',0,404,1,0,0,'http://www.fiepfa.org/home/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12144,0.000000,1479840416.215918,'\0\0\0\0\0\0\0\0\0\0>Ҕ[',0,404,0,0,0,'http://www.fiepfa.org/xmlrpc-activate.php','http://www.fiepfa.org/xmlrpc-activate.php','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36','',NULL,NULL),(12145,0.000000,1479840656.156493,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/wp-json/oembed/1.0/embed?url=http%3A%2F%2Fwww.fiepfa.org%2Fabout%2F','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12146,0.000000,1479840674.064467,'\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12147,0.000000,1479840675.532780,'\0\0\0\0\0\0\0\0\0\0V',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12148,0.000000,1479843199.140231,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12149,0.000000,1479843244.893048,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12150,0.000000,1479846790.113305,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12151,0.000000,1479846837.941790,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12152,0.000000,1479847344.725255,'\0\0\0\0\0\0\0\0\0\0z',0,200,1,0,0,'http://fiepfa.org/blogs/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12153,0.000000,1479847973.337900,'\0\0\0\0\0\0\0\0\0\0{}G3',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12154,0.000000,1479848093.813430,'\0\0\0\0\0\0\0\0\0\0ܵl',0,200,0,0,0,'http://www.fiepfa.org/volunteers/volunteer-hours-submission-portal/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12155,0.000000,1479849606.853969,'\0\0\0\0\0\0\0\0\0\0z',0,404,1,0,0,'http://www.fiepfa.org/news/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12156,0.000000,1479850365.753483,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12157,0.000000,1479850412.013702,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12158,0.000000,1479852991.960296,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/team/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12159,0.000000,1479855862.359749,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/fundraising/2016-read-a-thon/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12160,0.000000,1479856131.351502,'\0\0\0\0\0\0\0\0\0\0z',0,200,1,0,0,'http://fiepfa.org/news/wp-login.php','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12161,0.000000,1479857418.004983,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12162,0.000000,1479857458.433334,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12163,0.000000,1479857994.668736,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','http://www.fiepfa.org/wp-login.php','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12164,0.000000,1479858005.143774,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12165,0.000000,1479858006.041345,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12166,0.000000,1479858007.249951,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=1','http://www.fiepfa.org/?author=1','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12167,0.000000,1479858008.636882,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=2','http://www.fiepfa.org/?author=2','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12168,0.000000,1479858009.838902,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=3','http://www.fiepfa.org/?author=3','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12169,0.000000,1479858010.861663,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=4','http://www.fiepfa.org/?author=4','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12170,0.000000,1479858012.068600,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=5','http://www.fiepfa.org/?author=5','Mozilla/4.0 (compatible; MSIE 9.0; Windows NT 6.1; 125LA; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)','',NULL,NULL),(12171,0.000000,1479858013.414544,'\0\0\0\0\0\0\0\0\0\0[r',0,200,0,0,0,'http://www.fiepfa.org/?author=1','','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.0)','',NULL,NULL),(12172,0.000000,1479858470.057814,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12173,0.000000,1479861093.140501,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12174,0.000000,1479861137.039267,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12175,0.000000,1479861818.463774,'\0\0\0\0\0\0\0\0\0\0B@p',0,404,1,0,0,'http://www.fiepfa.org/m/wp-content/uploads/2016/02/FIE-BARB-201511.pdf','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12176,0.000000,1479863210.765097,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12177,0.000000,1479864681.265391,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12178,0.000000,1479864724.332664,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12179,0.000000,1479869900.943190,'\0\0\0\0\0\0\0\0\0\07\'',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(12180,0.000000,1479869929.330570,'\0\0\0\0\0\0\0\0\0\0B@t',0,200,1,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12181,0.000000,1479869930.912645,'\0\0\0\0\0\0\0\0\0\0B@x',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12182,0.000000,1479872070.961798,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12183,0.000000,1479872121.516694,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12184,0.000000,1479879009.458222,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12185,0.000000,1479879049.759109,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12186,0.000000,1479879352.475223,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12187,0.000000,1479881564.716515,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12188,0.000000,1479881895.507902,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12189,0.000000,1479881897.818710,'\0\0\0\0\0\0\0\0\0\0F\'j',0,200,0,0,0,'http://www.fiepfa.org/','','python-requests/2.9.1','',NULL,NULL),(12190,0.000000,1479882725.773842,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12191,0.000000,1479882769.439043,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12192,0.000000,1479883524.127309,'\0\0\0\0\0\0\0\0\0\0',0,200,0,0,0,'http://www.fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)','',NULL,NULL),(12193,0.000000,1479885597.622118,'\0\0\0\0\0\0\0\0\0\0RO',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12194,0.000000,1479885598.812313,'\0\0\0\0\0\0\0\0\0\0RO',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1','',NULL,NULL),(12195,0.000000,1479886062.643025,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12196,0.000000,1479886360.124724,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12197,0.000000,1479886405.424762,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12198,0.000000,1479888622.956003,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12199,0.000000,1479893592.816432,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12200,0.000000,1479893646.453169,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(12201,0.000000,1479896383.255042,'\0\0\0\0\0\0\0\0\0\0BB',0,200,1,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)','',NULL,NULL),(12202,0.000000,1479899576.848645,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12203,0.000000,1479899580.018095,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/readme.html','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12204,0.000000,1479899581.656837,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/Login-wall-etgFB/login_wall.php?login=cmd&z3=c2ZuLnBocA%3D%3D&z4=L3dwLWNvbnRlbnQvcGx1Z2lucy8%3d','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12205,1479899582.926081,1479899582.530000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbeWl3X2NvbnRhY3RdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"Lw==\",\"category\":\"file_upload\",\"ssl\":0}'),(12206,0.000000,1479899583.934917,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12207,0.000000,1479899587.465782,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/revslider/temp/update_extract/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12208,0.000000,1479899588.822455,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/plugins/revslider/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12209,1479899590.048116,1479899589.630000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/license.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L2xpY2Vuc2UucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12210,1479899586.512609,1479899586.020000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-admin/admin-ajax.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Slider Revolution: Arbitrary File Upload','{\"learningMode\":0,\"failedRules\":\"60\",\"paramKey\":\"c2VydmVyLnNjcmlwdF9maWxlbmFtZQ==\",\"paramValue\":\"L2hvbWUvcGZhc3RpbmdyYXlzL3B1YmxpY19odG1sL3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"path\":\"L3dwLWFkbWluL2FkbWluLWFqYXgucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12211,0.000000,1479899591.031401,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12212,0.000000,1479899594.111462,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12213,1479899595.164863,1479899594.830000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/tiny_mce/plugins/tinybrowser/upload_file.php?folder=%2F&type=file&feid=&obfuscate=&sessidpass=',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3RpbnlfbWNlL3BsdWdpbnMvdGlueWJyb3dzZXIvdXBsb2FkX2ZpbGUucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12214,1479899593.371809,1479899592.920000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/uploadify/uploadify.php?folder=%2F',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3VwbG9hZGlmeS91cGxvYWRpZnkucGhw\",\"category\":\"file_upload\",\"ssl\":0}'),(12215,0.000000,1479899596.226300,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12216,0.000000,1479899599.009652,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/files/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12217,0.000000,1479899601.014519,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/files/guest/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12218,1479899601.926439,1479899601.670000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/woocommerce-product-options/includes/image-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy93b29jb21tZXJjZS1wcm9kdWN0LW9wdGlvbnMvaW5jbHVkZXMvaW1hZ2UtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12219,1479899600.239181,1479899599.830000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/wp-content/plugins/jquery-html5-file-upload/jquery-html5-file-upload.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbZmlsZXNdWzBd\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3dwLWNvbnRlbnQvcGx1Z2lucy9qcXVlcnktaHRtbDUtZmlsZS11cGxvYWQvanF1ZXJ5LWh0bWw1LWZpbGUtdXBsb2FkLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12220,1479899598.252054,1479899598.030000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/sites/all/libraries/elfinder/php/connector.minimal.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicous File Upload','{\"learningMode\":0,\"failedRules\":\"11\",\"paramKey\":\"cmVxdWVzdC5maWxlTmFtZXNbdXBsb2FkXVswXQ==\",\"paramValue\":\"c2ZuLnBocA==\",\"path\":\"L3NpdGVzL2FsbC9saWJyYXJpZXMvZWxmaW5kZXIvcGhwL2Nvbm5lY3Rvci5taW5pbWFsLnBocA==\",\"category\":\"file_upload\",\"ssl\":0}'),(12221,0.000000,1479899602.803325,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/wp-content/uploads/2016/11/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12222,0.000000,1479899605.758757,'\0\0\0\0\0\0\0\0\0\0Ú',0,404,0,0,0,'http://www.fiepfa.org/modules/mod_simplefileuploadv1.3/elements/sfn.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12223,0.000000,1479899607.011965,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/?feed=rss2','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12224,1479899605.114168,1479899604.850000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/modules/mod_simplefileuploadv1.3/elements/udd.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:waf','Malicious File Upload (PHP)','{\"learningMode\":0,\"failedRules\":\"76\",\"paramKey\":\"c2VydmVyLmVtcHR5\",\"paramValue\":\"\",\"path\":\"L21vZHVsZXMvbW9kX3NpbXBsZWZpbGV1cGxvYWR2MS4zL2VsZW1lbnRzL3VkZC5waHA=\",\"category\":\"file_upload\",\"ssl\":0}'),(12225,0.000000,1479899608.607879,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/feed/','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12226,0.000000,1479899610.812759,'\0\0\0\0\0\0\0\0\0\0Ú',0,200,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','',NULL,NULL),(12227,0.000000,1479899611.858336,'\0\0\0\0\0\0\0\0\0\0Ú',0,503,0,0,0,'http://www.fiepfa.org/wp-login.php','','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:wfsnrepeat','Blocked by Wordfence Security Network',NULL),(12228,0.000000,1479900261.705557,'\0\0\0\0\0\0\0\0\0\0\rɉ',0,200,0,0,0,'http://www.fiepfa.org/','http://www.bing.com','Mozilla/5.0 (compatible; MSIE 8.0; Windows NT 6.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET CLR 1.0.3705; .NET CLR 1.1.4322)','',NULL,NULL),(12229,1479899613.127976,1479899612.630000,'\0\0\0\0\0\0\0\0\0\0Ú',0,403,0,0,0,'http://www.fiepfa.org/xmlrpc.php',NULL,'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)','blocked:wfsnrepeat','Blocked by Wordfence Security Network','{\"learningMode\":0,\"failedRules\":\"\",\"paramKey\":\"\",\"paramValue\":\"\",\"path\":\"L3htbHJwYy5waHA=\"}'),(11417,0.000000,1479209672.831256,'\0\0\0\0\0\0\0\0\0\0L\"',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11418,0.000000,1479211953.758014,'\0\0\0\0\0\0\0\0\0\0.\r',0,200,0,0,0,'http://www.fiepfa.org/volunteers/','','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','',NULL,NULL),(11419,0.000000,1479212854.122894,'\0\0\0\0\0\0\0\0\0\0L',0,200,0,0,0,'http://www.fiepfa.org/','','Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)','',NULL,NULL),(11420,0.000000,1479214305.110906,'\0\0\0\0\0\0\0\0\0\0l;F',0,200,0,0,0,'http://fiepfa.org/robots.txt','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL),(11421,0.000000,1479214311.265862,'\0\0\0\0\0\0\0\0\0\0l;F',0,200,0,0,0,'http://fiepfa.org/','','Mozilla/5.0 (compatible; MJ12bot/v1.4.7; http://mj12bot.com/)','',NULL,NULL);
/*!40000 ALTER TABLE `wp_wfHits` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfHoover`
--

DROP TABLE IF EXISTS `wp_wfHoover`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfHoover` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `owner` text,
  `host` text,
  `path` text,
  `hostKey` binary(4) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `k2` (`hostKey`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfHoover`
--

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

--
-- Table structure for table `wp_wfIssues`
--

DROP TABLE IF EXISTS `wp_wfIssues`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfIssues` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `time` int(10) unsigned NOT NULL,
  `status` varchar(10) NOT NULL,
  `type` varchar(20) NOT NULL,
  `severity` tinyint(3) unsigned NOT NULL,
  `ignoreP` char(32) NOT NULL,
  `ignoreC` char(32) NOT NULL,
  `shortMsg` varchar(255) NOT NULL,
  `longMsg` text,
  `data` text,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=751 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfIssues`
--

LOCK TABLES `wp_wfIssues` WRITE;
/*!40000 ALTER TABLE `wp_wfIssues` DISABLE KEYS */;
INSERT INTO `wp_wfIssues` VALUES (749,1480302831,'new','wfPluginUpgrade',2,'23afbdb1b9308cf0d2afe07680f756fd','23afbdb1b9308cf0d2afe07680f756fd','The Plugin \"Black Studio TinyMCE Widget\" needs an upgrade (2.2.12 -> 2.3.1).','You need to upgrade \"Black Studio TinyMCE Widget\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:27:\"Black Studio TinyMCE Widget\";s:9:\"PluginURI\";s:58:\"https://wordpress.org/plugins/black-studio-tinymce-widget/\";s:7:\"Version\";s:6:\"2.2.12\";s:11:\"Description\";s:166:\"Adds a new &#8220;Visual Editor&#8221; widget type based on the native WordPress TinyMCE editor. <cite>By <a href=\"http://www.blackstudio.it\">Black Studio</a>.</cite>\";s:6:\"Author\";s:52:\"<a href=\"http://www.blackstudio.it\">Black Studio</a>\";s:9:\"AuthorURI\";s:25:\"http://www.blackstudio.it\";s:10:\"TextDomain\";s:27:\"black-studio-tinymce-widget\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:100:\"<a href=\"https://wordpress.org/plugins/black-studio-tinymce-widget/\">Black Studio TinyMCE Widget</a>\";s:10:\"AuthorName\";s:12:\"Black Studio\";s:10:\"pluginFile\";s:109:\"/home/pfastingrays/public_html/wp-content/plugins/black-studio-tinymce-widget/black-studio-tinymce-widget.php\";s:10:\"newVersion\";s:5:\"2.3.1\";s:4:\"slug\";s:27:\"black-studio-tinymce-widget\";s:5:\"wpURL\";s:57:\"https://wordpress.org/plugins/black-studio-tinymce-widget\";s:20:\"vulnerabilityPatched\";b:0;}'),(750,1480302831,'new','wfPluginUpgrade',2,'dc4ca158a94b496294de326ef320def9','dc4ca158a94b496294de326ef320def9','The Plugin \"UpdraftPlus - Backup/Restore\" needs an upgrade (1.12.25 -> 1.12.29).','You need to upgrade \"UpdraftPlus - Backup/Restore\" to the newest version to ensure you have any security fixes the developer has released.','a:16:{s:4:\"Name\";s:28:\"UpdraftPlus - Backup/Restore\";s:9:\"PluginURI\";s:23:\"https://updraftplus.com\";s:7:\"Version\";s:7:\"1.12.25\";s:11:\"Description\";s:237:\"Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV &amp; email, on automatic schedules. <cite>By <a href=\"https://updraftplus.com\">UpdraftPlus.Com, DavidAnderson</a>.</cite>\";s:6:\"Author\";s:68:\"<a href=\"https://updraftplus.com\">UpdraftPlus.Com, DavidAnderson</a>\";s:9:\"AuthorURI\";s:23:\"https://updraftplus.com\";s:10:\"TextDomain\";s:11:\"updraftplus\";s:10:\"DomainPath\";s:10:\"/languages\";s:7:\"Network\";b:0;s:5:\"Title\";s:66:\"<a href=\"https://updraftplus.com\">UpdraftPlus - Backup/Restore</a>\";s:10:\"AuthorName\";s:30:\"UpdraftPlus.Com, DavidAnderson\";s:10:\"pluginFile\";s:77:\"/home/pfastingrays/public_html/wp-content/plugins/updraftplus/updraftplus.php\";s:10:\"newVersion\";s:7:\"1.12.29\";s:4:\"slug\";s:11:\"updraftplus\";s:5:\"wpURL\";s:41:\"https://wordpress.org/plugins/updraftplus\";s:20:\"vulnerabilityPatched\";b:0;}');
/*!40000 ALTER TABLE `wp_wfIssues` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfKnownFileList`
--

DROP TABLE IF EXISTS `wp_wfKnownFileList`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfKnownFileList` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `path` text NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=3013 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfKnownFileList`
--

LOCK TABLES `wp_wfKnownFileList` WRITE;
/*!40000 ALTER TABLE `wp_wfKnownFileList` DISABLE KEYS */;
INSERT INTO `wp_wfKnownFileList` VALUES (1,'index.php'),(2,'license.txt'),(3,'readme.a9f262ab37327fb573bef73facba8cd7.html'),(4,'wp-activate.php'),(5,'wp-admin/about.php'),(6,'wp-admin/admin-ajax.php'),(7,'wp-admin/admin-footer.php'),(8,'wp-admin/admin-functions.php'),(9,'wp-admin/admin-header.php'),(10,'wp-admin/admin-post.php'),(11,'wp-admin/admin.php'),(12,'wp-admin/async-upload.php'),(13,'wp-admin/comment.php'),(14,'wp-admin/credits.php'),(15,'wp-admin/css/about-rtl.css'),(16,'wp-admin/css/about-rtl.min.css'),(17,'wp-admin/css/about.css'),(18,'wp-admin/css/about.min.css'),(19,'wp-admin/css/admin-menu-rtl.css'),(20,'wp-admin/css/admin-menu-rtl.min.css'),(21,'wp-admin/css/admin-menu.css'),(22,'wp-admin/css/admin-menu.min.css'),(23,'wp-admin/css/color-picker-rtl.css'),(24,'wp-admin/css/color-picker-rtl.min.css'),(25,'wp-admin/css/color-picker.css'),(26,'wp-admin/css/color-picker.min.css'),(27,'wp-admin/css/colors/_admin.scss'),(28,'wp-admin/css/colors/_mixins.scss'),(29,'wp-admin/css/colors/_variables.scss'),(30,'wp-admin/css/colors/blue/colors-rtl.css'),(31,'wp-admin/css/colors/blue/colors-rtl.min.css'),(32,'wp-admin/css/colors/blue/colors.css'),(33,'wp-admin/css/colors/blue/colors.min.css'),(34,'wp-admin/css/colors/blue/colors.scss'),(35,'wp-admin/css/colors/coffee/colors-rtl.css'),(36,'wp-admin/css/colors/coffee/colors-rtl.min.css'),(37,'wp-admin/css/colors/coffee/colors.css'),(38,'wp-admin/css/colors/coffee/colors.min.css'),(39,'wp-admin/css/colors/coffee/colors.scss'),(40,'wp-admin/css/colors/ectoplasm/colors-rtl.css'),(41,'wp-admin/css/colors/ectoplasm/colors-rtl.min.css'),(42,'wp-admin/css/colors/ectoplasm/colors.css'),(43,'wp-admin/css/colors/ectoplasm/colors.min.css'),(44,'wp-admin/css/colors/ectoplasm/colors.scss'),(45,'wp-admin/css/colors/light/colors-rtl.css'),(46,'wp-admin/css/colors/light/colors-rtl.min.css'),(47,'wp-admin/css/colors/light/colors.css'),(48,'wp-admin/css/colors/light/colors.min.css'),(49,'wp-admin/css/colors/light/colors.scss'),(50,'wp-admin/css/colors/midnight/colors-rtl.css'),(51,'wp-admin/css/colors/midnight/colors-rtl.min.css'),(52,'wp-admin/css/colors/midnight/colors.css'),(53,'wp-admin/css/colors/midnight/colors.min.css'),(54,'wp-admin/css/colors/midnight/colors.scss'),(55,'wp-admin/css/colors/ocean/colors-rtl.css'),(56,'wp-admin/css/colors/ocean/colors-rtl.min.css'),(57,'wp-admin/css/colors/ocean/colors.css'),(58,'wp-admin/css/colors/ocean/colors.min.css'),(59,'wp-admin/css/colors/ocean/colors.scss'),(60,'wp-admin/css/colors/sunrise/colors-rtl.css'),(61,'wp-admin/css/colors/sunrise/colors-rtl.min.css'),(62,'wp-admin/css/colors/sunrise/colors.css'),(63,'wp-admin/css/colors/sunrise/colors.min.css'),(64,'wp-admin/css/colors/sunrise/colors.scss'),(65,'wp-admin/css/common-rtl.css'),(66,'wp-admin/css/common-rtl.min.css'),(67,'wp-admin/css/common.css'),(68,'wp-admin/css/common.min.css'),(69,'wp-admin/css/customize-controls-rtl.css'),(70,'wp-admin/css/customize-controls-rtl.min.css'),(71,'wp-admin/css/customize-controls.css'),(72,'wp-admin/css/customize-controls.min.css'),(73,'wp-admin/css/customize-nav-menus-rtl.css'),(74,'wp-admin/css/customize-nav-menus-rtl.min.css'),(75,'wp-admin/css/customize-nav-menus.css'),(76,'wp-admin/css/customize-nav-menus.min.css'),(77,'wp-admin/css/customize-widgets-rtl.css'),(78,'wp-admin/css/customize-widgets-rtl.min.css'),(79,'wp-admin/css/customize-widgets.css'),(80,'wp-admin/css/customize-widgets.min.css'),(81,'wp-admin/css/dashboard-rtl.css'),(82,'wp-admin/css/dashboard-rtl.min.css'),(83,'wp-admin/css/dashboard.css'),(84,'wp-admin/css/dashboard.min.css'),(85,'wp-admin/css/deprecated-media-rtl.css'),(86,'wp-admin/css/deprecated-media-rtl.min.css'),(87,'wp-admin/css/deprecated-media.css'),(88,'wp-admin/css/deprecated-media.min.css'),(89,'wp-admin/css/edit-rtl.css'),(90,'wp-admin/css/edit-rtl.min.css'),(91,'wp-admin/css/edit.css'),(92,'wp-admin/css/edit.min.css'),(93,'wp-admin/css/farbtastic-rtl.css'),(94,'wp-admin/css/farbtastic-rtl.min.css'),(95,'wp-admin/css/farbtastic.css'),(96,'wp-admin/css/farbtastic.min.css'),(97,'wp-admin/css/forms-rtl.css'),(98,'wp-admin/css/forms-rtl.min.css'),(99,'wp-admin/css/forms.css'),(100,'wp-admin/css/forms.min.css'),(101,'wp-admin/css/ie-rtl.css'),(102,'wp-admin/css/ie-rtl.min.css'),(103,'wp-admin/css/ie.css'),(104,'wp-admin/css/ie.min.css'),(105,'wp-admin/css/install-rtl.css'),(106,'wp-admin/css/install-rtl.min.css'),(107,'wp-admin/css/install.css'),(108,'wp-admin/css/install.min.css'),(109,'wp-admin/css/l10n-rtl.css'),(110,'wp-admin/css/l10n-rtl.min.css'),(111,'wp-admin/css/l10n.css'),(112,'wp-admin/css/l10n.min.css'),(113,'wp-admin/css/list-tables-rtl.css'),(114,'wp-admin/css/list-tables-rtl.min.css'),(115,'wp-admin/css/list-tables.css'),(116,'wp-admin/css/list-tables.min.css'),(117,'wp-admin/css/login-rtl.css'),(118,'wp-admin/css/login-rtl.min.css'),(119,'wp-admin/css/login.css'),(120,'wp-admin/css/login.min.css'),(121,'wp-admin/css/media-rtl.css'),(122,'wp-admin/css/media-rtl.min.css'),(123,'wp-admin/css/media.css'),(124,'wp-admin/css/media.min.css'),(125,'wp-admin/css/nav-menus-rtl.css'),(126,'wp-admin/css/nav-menus-rtl.min.css'),(127,'wp-admin/css/nav-menus.css'),(128,'wp-admin/css/nav-menus.min.css'),(129,'wp-admin/css/press-this-editor-rtl.css'),(130,'wp-admin/css/press-this-editor-rtl.min.css'),(131,'wp-admin/css/press-this-editor.css'),(132,'wp-admin/css/press-this-editor.min.css'),(133,'wp-admin/css/press-this-rtl.css'),(134,'wp-admin/css/press-this-rtl.min.css'),(135,'wp-admin/css/press-this.css'),(136,'wp-admin/css/press-this.min.css'),(137,'wp-admin/css/revisions-rtl.css'),(138,'wp-admin/css/revisions-rtl.min.css'),(139,'wp-admin/css/revisions.css'),(140,'wp-admin/css/revisions.min.css'),(141,'wp-admin/css/site-icon-rtl.css'),(142,'wp-admin/css/site-icon-rtl.min.css'),(143,'wp-admin/css/site-icon.css'),(144,'wp-admin/css/site-icon.min.css'),(145,'wp-admin/css/themes-rtl.css'),(146,'wp-admin/css/themes-rtl.min.css'),(147,'wp-admin/css/themes.css'),(148,'wp-admin/css/themes.min.css'),(149,'wp-admin/css/widgets-rtl.css'),(150,'wp-admin/css/widgets-rtl.min.css'),(151,'wp-admin/css/widgets.css'),(152,'wp-admin/css/widgets.min.css'),(153,'wp-admin/css/wp-admin-rtl.css'),(154,'wp-admin/css/wp-admin-rtl.min.css'),(155,'wp-admin/css/wp-admin.css'),(156,'wp-admin/css/wp-admin.min.css'),(157,'wp-admin/custom-background.php'),(158,'wp-admin/custom-header.php'),(159,'wp-admin/customize.php'),(160,'wp-admin/edit-comments.php'),(161,'wp-admin/edit-form-advanced.php'),(162,'wp-admin/edit-form-comment.php'),(163,'wp-admin/edit-link-form.php'),(164,'wp-admin/edit-tag-form.php'),(165,'wp-admin/edit-tags.php'),(166,'wp-admin/edit.php'),(167,'wp-admin/export.php'),(168,'wp-admin/freedoms.php'),(169,'wp-admin/images/align-center-2x.png'),(170,'wp-admin/images/align-center.png'),(171,'wp-admin/images/align-left-2x.png'),(172,'wp-admin/images/align-left.png'),(173,'wp-admin/images/align-none-2x.png'),(174,'wp-admin/images/align-none.png'),(175,'wp-admin/images/align-right-2x.png'),(176,'wp-admin/images/align-right.png'),(177,'wp-admin/images/arrows-2x.png'),(178,'wp-admin/images/arrows.png'),(179,'wp-admin/images/browser-rtl.png'),(180,'wp-admin/images/browser.png'),(181,'wp-admin/images/bubble_bg-2x.gif'),(182,'wp-admin/images/bubble_bg.gif'),(183,'wp-admin/images/comment-grey-bubble-2x.png'),(184,'wp-admin/images/comment-grey-bubble.png'),(185,'wp-admin/images/date-button-2x.gif'),(186,'wp-admin/images/date-button.gif'),(187,'wp-admin/images/generic.png'),(188,'wp-admin/images/icons32-2x.png'),(189,'wp-admin/images/icons32-vs-2x.png'),(190,'wp-admin/images/icons32-vs.png'),(191,'wp-admin/images/icons32.png'),(192,'wp-admin/images/imgedit-icons-2x.png'),(193,'wp-admin/images/imgedit-icons.png'),(194,'wp-admin/images/list-2x.png'),(195,'wp-admin/images/list.png'),(196,'wp-admin/images/loading.gif'),(197,'wp-admin/images/marker.png'),(198,'wp-admin/images/mask.png'),(199,'wp-admin/images/media-button-2x.png'),(200,'wp-admin/images/media-button-image.gif'),(201,'wp-admin/images/media-button-music.gif'),(202,'wp-admin/images/media-button-other.gif'),(203,'wp-admin/images/media-button-video.gif'),(204,'wp-admin/images/media-button.png'),(205,'wp-admin/images/menu-2x.png'),(206,'wp-admin/images/menu-vs-2x.png'),(207,'wp-admin/images/menu-vs.png'),(208,'wp-admin/images/menu.png'),(209,'wp-admin/images/no.png'),(210,'wp-admin/images/post-formats-vs.png'),(211,'wp-admin/images/post-formats.png'),(212,'wp-admin/images/post-formats32-vs.png'),(213,'wp-admin/images/post-formats32.png'),(214,'wp-admin/images/resize-2x.gif'),(215,'wp-admin/images/resize-rtl-2x.gif'),(216,'wp-admin/images/resize-rtl.gif'),(217,'wp-admin/images/resize.gif'),(218,'wp-admin/images/se.png'),(219,'wp-admin/images/sort-2x.gif'),(220,'wp-admin/images/sort.gif'),(221,'wp-admin/images/spinner-2x.gif'),(222,'wp-admin/images/spinner.gif'),(223,'wp-admin/images/stars-2x.png'),(224,'wp-admin/images/stars.png'),(225,'wp-admin/images/w-logo-blue.png'),(226,'wp-admin/images/w-logo-white.png'),(227,'wp-admin/images/wheel.png'),(228,'wp-admin/images/wordpress-logo-white.svg'),(229,'wp-admin/images/wordpress-logo.png'),(230,'wp-admin/images/wordpress-logo.svg'),(231,'wp-admin/images/wpspin_light-2x.gif'),(232,'wp-admin/images/wpspin_light.gif'),(233,'wp-admin/images/xit-2x.gif'),(234,'wp-admin/images/xit.gif'),(235,'wp-admin/images/yes.png'),(236,'wp-admin/import.php'),(237,'wp-admin/includes/admin-filters.php'),(238,'wp-admin/includes/admin.php'),(239,'wp-admin/includes/ajax-actions.php'),(240,'wp-admin/includes/bookmark.php'),(241,'wp-admin/includes/class-automatic-upgrader-skin.php'),(242,'wp-admin/includes/class-bulk-plugin-upgrader-skin.php'),(243,'wp-admin/includes/class-bulk-theme-upgrader-skin.php'),(244,'wp-admin/includes/class-bulk-upgrader-skin.php'),(245,'wp-admin/includes/class-core-upgrader.php'),(246,'wp-admin/includes/class-file-upload-upgrader.php'),(247,'wp-admin/includes/class-ftp-pure.php'),(248,'wp-admin/includes/class-ftp-sockets.php'),(249,'wp-admin/includes/class-ftp.php'),(250,'wp-admin/includes/class-language-pack-upgrader-skin.php'),(251,'wp-admin/includes/class-language-pack-upgrader.php'),(252,'wp-admin/includes/class-pclzip.php'),(253,'wp-admin/includes/class-plugin-installer-skin.php'),(254,'wp-admin/includes/class-plugin-upgrader-skin.php'),(255,'wp-admin/includes/class-plugin-upgrader.php'),(256,'wp-admin/includes/class-theme-installer-skin.php'),(257,'wp-admin/includes/class-theme-upgrader-skin.php'),(258,'wp-admin/includes/class-theme-upgrader.php'),(259,'wp-admin/includes/class-walker-category-checklist.php'),(260,'wp-admin/includes/class-walker-nav-menu-checklist.php'),(261,'wp-admin/includes/class-walker-nav-menu-edit.php'),(262,'wp-admin/includes/class-wp-ajax-upgrader-skin.php'),(263,'wp-admin/includes/class-wp-automatic-updater.php'),(264,'wp-admin/includes/class-wp-comments-list-table.php'),(265,'wp-admin/includes/class-wp-filesystem-base.php'),(266,'wp-admin/includes/class-wp-filesystem-direct.php'),(267,'wp-admin/includes/class-wp-filesystem-ftpext.php'),(268,'wp-admin/includes/class-wp-filesystem-ftpsockets.php'),(269,'wp-admin/includes/class-wp-filesystem-ssh2.php'),(270,'wp-admin/includes/class-wp-importer.php'),(271,'wp-admin/includes/class-wp-internal-pointers.php'),(272,'wp-admin/includes/class-wp-links-list-table.php'),(273,'wp-admin/includes/class-wp-list-table.php'),(274,'wp-admin/includes/class-wp-media-list-table.php'),(275,'wp-admin/includes/class-wp-ms-sites-list-table.php'),(276,'wp-admin/includes/class-wp-ms-themes-list-table.php'),(277,'wp-admin/includes/class-wp-ms-users-list-table.php'),(278,'wp-admin/includes/class-wp-plugin-install-list-table.php'),(279,'wp-admin/includes/class-wp-plugins-list-table.php'),(280,'wp-admin/includes/class-wp-post-comments-list-table.php'),(281,'wp-admin/includes/class-wp-posts-list-table.php'),(282,'wp-admin/includes/class-wp-press-this.php'),(283,'wp-admin/includes/class-wp-screen.php'),(284,'wp-admin/includes/class-wp-site-icon.php'),(285,'wp-admin/includes/class-wp-terms-list-table.php'),(286,'wp-admin/includes/class-wp-theme-install-list-table.php'),(287,'wp-admin/includes/class-wp-themes-list-table.php'),(288,'wp-admin/includes/class-wp-upgrader-skin.php'),(289,'wp-admin/includes/class-wp-upgrader-skins.php'),(290,'wp-admin/includes/class-wp-upgrader.php'),(291,'wp-admin/includes/class-wp-users-list-table.php'),(292,'wp-admin/includes/comment.php'),(293,'wp-admin/includes/continents-cities.php'),(294,'wp-admin/includes/credits.php'),(295,'wp-admin/includes/dashboard.php'),(296,'wp-admin/includes/deprecated.php'),(297,'wp-admin/includes/edit-tag-messages.php'),(298,'wp-admin/includes/export.php'),(299,'wp-admin/includes/file.php'),(300,'wp-admin/includes/image-edit.php'),(301,'wp-admin/includes/image.php'),(302,'wp-admin/includes/import.php'),(303,'wp-admin/includes/list-table.php'),(304,'wp-admin/includes/media.php'),(305,'wp-admin/includes/menu.php'),(306,'wp-admin/includes/meta-boxes.php'),(307,'wp-admin/includes/misc.php'),(308,'wp-admin/includes/ms-admin-filters.php'),(309,'wp-admin/includes/ms-deprecated.php'),(310,'wp-admin/includes/ms.php'),(311,'wp-admin/includes/nav-menu.php'),(312,'wp-admin/includes/network.php'),(313,'wp-admin/includes/noop.php'),(314,'wp-admin/includes/options.php'),(315,'wp-admin/includes/plugin-install.php'),(316,'wp-admin/includes/plugin.php'),(317,'wp-admin/includes/post.php'),(318,'wp-admin/includes/revision.php'),(319,'wp-admin/includes/schema.php'),(320,'wp-admin/includes/screen.php'),(321,'wp-admin/includes/taxonomy.php'),(322,'wp-admin/includes/template.php'),(323,'wp-admin/includes/theme-install.php'),(324,'wp-admin/includes/theme.php'),(325,'wp-admin/includes/translation-install.php'),(326,'wp-admin/includes/update-core.php'),(327,'wp-admin/includes/update.php'),(328,'wp-admin/includes/upgrade.php'),(329,'wp-admin/includes/user.php'),(330,'wp-admin/includes/widgets.php'),(331,'wp-admin/index.php'),(332,'wp-admin/install-helper.php'),(333,'wp-admin/install.php'),(334,'wp-admin/js/accordion.js'),(335,'wp-admin/js/accordion.min.js'),(336,'wp-admin/js/bookmarklet.js'),(337,'wp-admin/js/bookmarklet.min.js'),(338,'wp-admin/js/color-picker.js'),(339,'wp-admin/js/color-picker.min.js'),(340,'wp-admin/js/comment.js'),(341,'wp-admin/js/comment.min.js'),(342,'wp-admin/js/common.js'),(343,'wp-admin/js/common.min.js'),(344,'wp-admin/js/custom-background.js'),(345,'wp-admin/js/custom-background.min.js'),(346,'wp-admin/js/custom-header.js'),(347,'wp-admin/js/customize-controls.js'),(348,'wp-admin/js/customize-controls.min.js'),(349,'wp-admin/js/customize-nav-menus.js'),(350,'wp-admin/js/customize-nav-menus.min.js'),(351,'wp-admin/js/customize-widgets.js'),(352,'wp-admin/js/customize-widgets.min.js'),(353,'wp-admin/js/dashboard.js'),(354,'wp-admin/js/dashboard.min.js'),(355,'wp-admin/js/edit-comments.js'),(356,'wp-admin/js/edit-comments.min.js'),(357,'wp-admin/js/editor-expand.js'),(358,'wp-admin/js/editor-expand.min.js'),(359,'wp-admin/js/editor.js'),(360,'wp-admin/js/editor.min.js'),(361,'wp-admin/js/farbtastic.js'),(362,'wp-admin/js/gallery.js'),(363,'wp-admin/js/gallery.min.js'),(364,'wp-admin/js/image-edit.js'),(365,'wp-admin/js/image-edit.min.js'),(366,'wp-admin/js/inline-edit-post.js'),(367,'wp-admin/js/inline-edit-post.min.js'),(368,'wp-admin/js/inline-edit-tax.js'),(369,'wp-admin/js/inline-edit-tax.min.js'),(370,'wp-admin/js/iris.min.js'),(371,'wp-admin/js/language-chooser.js'),(372,'wp-admin/js/language-chooser.min.js'),(373,'wp-admin/js/link.js'),(374,'wp-admin/js/link.min.js'),(375,'wp-admin/js/media-gallery.js'),(376,'wp-admin/js/media-gallery.min.js'),(377,'wp-admin/js/media-upload.js'),(378,'wp-admin/js/media-upload.min.js'),(379,'wp-admin/js/media.js'),(380,'wp-admin/js/media.min.js'),(381,'wp-admin/js/nav-menu.js'),(382,'wp-admin/js/nav-menu.min.js'),(383,'wp-admin/js/password-strength-meter.js'),(384,'wp-admin/js/password-strength-meter.min.js'),(385,'wp-admin/js/plugin-install.js'),(386,'wp-admin/js/plugin-install.min.js'),(387,'wp-admin/js/post.js'),(388,'wp-admin/js/post.min.js'),(389,'wp-admin/js/postbox.js'),(390,'wp-admin/js/postbox.min.js'),(391,'wp-admin/js/press-this.js'),(392,'wp-admin/js/press-this.min.js'),(393,'wp-admin/js/revisions.js'),(394,'wp-admin/js/revisions.min.js'),(395,'wp-admin/js/set-post-thumbnail.js'),(396,'wp-admin/js/set-post-thumbnail.min.js'),(397,'wp-admin/js/svg-painter.js'),(398,'wp-admin/js/svg-painter.min.js'),(399,'wp-admin/js/tags-box.js'),(400,'wp-admin/js/tags-box.min.js'),(401,'wp-admin/js/tags.js'),(402,'wp-admin/js/tags.min.js'),(403,'wp-admin/js/theme.js'),(404,'wp-admin/js/theme.min.js'),(405,'wp-admin/js/updates.js'),(406,'wp-admin/js/updates.min.js'),(407,'wp-admin/js/user-profile.js'),(408,'wp-admin/js/user-profile.min.js'),(409,'wp-admin/js/user-suggest.js'),(410,'wp-admin/js/user-suggest.min.js'),(411,'wp-admin/js/widgets.js'),(412,'wp-admin/js/widgets.min.js'),(413,'wp-admin/js/word-count.js'),(414,'wp-admin/js/word-count.min.js'),(415,'wp-admin/js/wp-fullscreen-stub.js'),(416,'wp-admin/js/wp-fullscreen-stub.min.js'),(417,'wp-admin/js/xfn.js'),(418,'wp-admin/js/xfn.min.js'),(419,'wp-admin/link-add.php'),(420,'wp-admin/link-manager.php'),(421,'wp-admin/link-parse-opml.php'),(422,'wp-admin/link.php'),(423,'wp-admin/load-scripts.php'),(424,'wp-admin/load-styles.php'),(425,'wp-admin/maint/repair.php'),(426,'wp-admin/media-new.php'),(427,'wp-admin/media-upload.php'),(428,'wp-admin/media.php'),(429,'wp-admin/menu-header.php'),(430,'wp-admin/menu.php'),(431,'wp-admin/moderation.php'),(432,'wp-admin/ms-admin.php'),(433,'wp-admin/ms-delete-site.php'),(434,'wp-admin/ms-edit.php'),(435,'wp-admin/ms-options.php'),(436,'wp-admin/ms-sites.php'),(437,'wp-admin/ms-themes.php'),(438,'wp-admin/ms-upgrade-network.php'),(439,'wp-admin/ms-users.php'),(440,'wp-admin/my-sites.php'),(441,'wp-admin/nav-menus.php'),(442,'wp-admin/network/about.php'),(443,'wp-admin/network/admin.php'),(444,'wp-admin/network/credits.php'),(445,'wp-admin/network/edit.php'),(446,'wp-admin/network/freedoms.php'),(447,'wp-admin/network/index.php'),(448,'wp-admin/network/menu.php'),(449,'wp-admin/network/plugin-editor.php'),(450,'wp-admin/network/plugin-install.php'),(451,'wp-admin/network/plugins.php'),(452,'wp-admin/network/profile.php'),(453,'wp-admin/network/settings.php'),(454,'wp-admin/network/setup.php'),(455,'wp-admin/network/site-info.php'),(456,'wp-admin/network/site-new.php'),(457,'wp-admin/network/site-settings.php'),(458,'wp-admin/network/site-themes.php'),(459,'wp-admin/network/site-users.php'),(460,'wp-admin/network/sites.php'),(461,'wp-admin/network/theme-editor.php'),(462,'wp-admin/network/theme-install.php'),(463,'wp-admin/network/themes.php'),(464,'wp-admin/network/update-core.php'),(465,'wp-admin/network/update.php'),(466,'wp-admin/network/upgrade.php'),(467,'wp-admin/network/user-edit.php'),(468,'wp-admin/network/user-new.php'),(469,'wp-admin/network/users.php'),(470,'wp-admin/network.php'),(471,'wp-admin/options-discussion.php'),(472,'wp-admin/options-general.php'),(473,'wp-admin/options-head.php'),(474,'wp-admin/options-media.php'),(475,'wp-admin/options-permalink.php'),(476,'wp-admin/options-reading.php'),(477,'wp-admin/options-writing.php'),(478,'wp-admin/options.php'),(479,'wp-admin/plugin-editor.php'),(480,'wp-admin/plugin-install.php'),(481,'wp-admin/plugins.php'),(482,'wp-admin/post-new.php'),(483,'wp-admin/post.php'),(484,'wp-admin/press-this.php'),(485,'wp-admin/profile.php'),(486,'wp-admin/revision.php'),(487,'wp-admin/setup-config.php'),(488,'wp-admin/term.php'),(489,'wp-admin/theme-editor.php'),(490,'wp-admin/theme-install.php'),(491,'wp-admin/themes.php'),(492,'wp-admin/tools.php'),(493,'wp-admin/update-core.php'),(494,'wp-admin/update.php'),(495,'wp-admin/upgrade-functions.php'),(496,'wp-admin/upgrade.php'),(497,'wp-admin/upload.php'),(498,'wp-admin/user/about.php'),(499,'wp-admin/user/admin.php'),(500,'wp-admin/user/credits.php'),(501,'wp-admin/user/freedoms.php'),(502,'wp-admin/user/index.php'),(503,'wp-admin/user/menu.php'),(504,'wp-admin/user/profile.php'),(505,'wp-admin/user/user-edit.php'),(506,'wp-admin/user-edit.php'),(507,'wp-admin/user-new.php'),(508,'wp-admin/users.php'),(509,'wp-admin/widgets.php'),(510,'wp-blog-header.php'),(511,'wp-comments-post.php'),(512,'wp-config-sample.php'),(513,'wp-config.php'),(514,'wp-content/index.php'),(515,'wp-content/plugins/akismet/.htaccess'),(516,'wp-content/plugins/akismet/LICENSE.txt'),(517,'wp-content/plugins/akismet/_inc/akismet.css'),(518,'wp-content/plugins/akismet/_inc/akismet.js'),(519,'wp-content/plugins/akismet/_inc/form.js'),(520,'wp-content/plugins/akismet/_inc/img/logo-full-2x.png'),(521,'wp-content/plugins/akismet/akismet.php'),(522,'wp-content/plugins/akismet/class.akismet-admin.php'),(523,'wp-content/plugins/akismet/class.akismet-cli.php'),(524,'wp-content/plugins/akismet/class.akismet-widget.php'),(525,'wp-content/plugins/akismet/class.akismet.php'),(526,'wp-content/plugins/akismet/index.php'),(527,'wp-content/plugins/akismet/readme.txt'),(528,'wp-content/plugins/akismet/views/config.php'),(529,'wp-content/plugins/akismet/views/get.php'),(530,'wp-content/plugins/akismet/views/notice.php'),(531,'wp-content/plugins/akismet/views/start.php'),(532,'wp-content/plugins/akismet/views/stats.php'),(533,'wp-content/plugins/akismet/views/strict.php'),(534,'wp-content/plugins/akismet/wrapper.php'),(535,'wp-content/plugins/black-studio-tinymce-widget/black-studio-tinymce-widget.php'),(536,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.css'),(537,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget-pre33.min.css'),(538,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.css'),(539,'wp-content/plugins/black-studio-tinymce-widget/css/black-studio-tinymce-widget.min.css'),(540,'wp-content/plugins/black-studio-tinymce-widget/includes/class-admin-pointer.php'),(541,'wp-content/plugins/black-studio-tinymce-widget/includes/class-admin.php'),(542,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-plugins.php'),(543,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility-wordpress.php'),(544,'wp-content/plugins/black-studio-tinymce-widget/includes/class-compatibility.php'),(545,'wp-content/plugins/black-studio-tinymce-widget/includes/class-text-filters.php'),(546,'wp-content/plugins/black-studio-tinymce-widget/includes/class-widget.php'),(547,'wp-content/plugins/black-studio-tinymce-widget/includes/deprecated.php'),(548,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.js'),(549,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pointer.min.js'),(550,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.js'),(551,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre33.min.js'),(552,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.js'),(553,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-pre39.min.js'),(554,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.js'),(555,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget-setup.min.js'),(556,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.js'),(557,'wp-content/plugins/black-studio-tinymce-widget/js/black-studio-tinymce-widget.min.js'),(558,'wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.js'),(559,'wp-content/plugins/black-studio-tinymce-widget/js/wp-page-widget.min.js'),(560,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.mo'),(561,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ca.po'),(562,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.mo'),(563,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-cs_CZ.po'),(564,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.mo'),(565,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-da_DK.po'),(566,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.mo'),(567,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-de_DE.po'),(568,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.mo'),(569,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-el.po'),(570,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.mo'),(571,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-en_GB.po'),(572,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.mo'),(573,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-es_ES.po'),(574,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.mo'),(575,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fa_IR.po'),(576,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.mo'),(577,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fi.po'),(578,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.mo'),(579,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-fr_FR.po'),(580,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.mo'),(581,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-it_IT.po'),(582,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.mo'),(583,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ja.po'),(584,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.mo'),(585,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-km.po'),(586,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.mo'),(587,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ko_KR.po'),(588,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.mo'),(589,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-lt_LT.po'),(590,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.mo'),(591,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-nl_NL.po'),(592,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.mo'),(593,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pl_PL.po'),(594,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.mo'),(595,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-pt_BR.po'),(596,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.mo'),(597,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ro_RO.po'),(598,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.mo'),(599,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-ru_RU.po'),(600,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.mo'),(601,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sk_SK.po'),(602,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.mo'),(603,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-sv_SE.po'),(604,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.mo'),(605,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-tr_TR.po'),(606,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.mo'),(607,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-uk.po'),(608,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.mo'),(609,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget-zh_CN.po'),(610,'wp-content/plugins/black-studio-tinymce-widget/languages/black-studio-tinymce-widget.pot'),(611,'wp-content/plugins/black-studio-tinymce-widget/readme.txt'),(612,'wp-content/plugins/elegant-themes-icons/assets/css/etfonts-style.css'),(613,'wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.eot'),(614,'wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.svg'),(615,'wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.ttf'),(616,'wp-content/plugins/elegant-themes-icons/assets/fonts/ElegantIcons.woff'),(617,'wp-content/plugins/elegant-themes-icons/eticonfonts.php'),(618,'wp-content/plugins/elegant-themes-icons/readme.txt'),(619,'wp-content/plugins/elegant-themes-updater/elegant-themes-updater.php'),(620,'wp-content/plugins/index.php'),(621,'wp-content/plugins/updraftplus/admin.php'),(622,'wp-content/plugins/updraftplus/backup.php'),(623,'wp-content/plugins/updraftplus/central/bootstrap.php'),(624,'wp-content/plugins/updraftplus/central/classes/class-automatic-upgrader-skin.php'),(625,'wp-content/plugins/updraftplus/central/commands.php'),(626,'wp-content/plugins/updraftplus/central/listener.php'),(627,'wp-content/plugins/updraftplus/central/modules/core.php'),(628,'wp-content/plugins/updraftplus/central/modules/updates.php'),(629,'wp-content/plugins/updraftplus/central/modules/updraftplus.php'),(630,'wp-content/plugins/updraftplus/central/modules/users.php'),(631,'wp-content/plugins/updraftplus/changelog.txt'),(632,'wp-content/plugins/updraftplus/class-updraftplus.php'),(633,'wp-content/plugins/updraftplus/class-zip.php'),(634,'wp-content/plugins/updraftplus/clean-composer.sh'),(635,'wp-content/plugins/updraftplus/composer.json'),(636,'wp-content/plugins/updraftplus/composer.lock'),(637,'wp-content/plugins/updraftplus/css/admin.css'),(638,'wp-content/plugins/updraftplus/example-decrypt.php'),(639,'wp-content/plugins/updraftplus/images/automaticbackup.png'),(640,'wp-content/plugins/updraftplus/images/azure.png'),(641,'wp-content/plugins/updraftplus/images/copycom.png'),(642,'wp-content/plugins/updraftplus/images/dashicon.png'),(643,'wp-content/plugins/updraftplus/images/dreamobjects_logo-horiz-2013.png'),(644,'wp-content/plugins/updraftplus/images/dropbox-logo.png'),(645,'wp-content/plugins/updraftplus/images/googlecloud.png'),(646,'wp-content/plugins/updraftplus/images/icons/azure.png'),(647,'wp-content/plugins/updraftplus/images/icons/cloudfiles.png'),(648,'wp-content/plugins/updraftplus/images/icons/copycom.png'),(649,'wp-content/plugins/updraftplus/images/icons/dreamobjects.png'),(650,'wp-content/plugins/updraftplus/images/icons/dropbox.png'),(651,'wp-content/plugins/updraftplus/images/icons/email.png'),(652,'wp-content/plugins/updraftplus/images/icons/folder.png'),(653,'wp-content/plugins/updraftplus/images/icons/googlecloud.png'),(654,'wp-content/plugins/updraftplus/images/icons/googledrive.png'),(655,'wp-content/plugins/updraftplus/images/icons/onedrive.png'),(656,'wp-content/plugins/updraftplus/images/icons/openstack.png'),(657,'wp-content/plugins/updraftplus/images/icons/s3.png'),(658,'wp-content/plugins/updraftplus/images/icons/updraftvault.png'),(659,'wp-content/plugins/updraftplus/images/icons/webdav.png'),(660,'wp-content/plugins/updraftplus/images/onedrive.png'),(661,'wp-content/plugins/updraftplus/images/padlock-150.png'),(662,'wp-content/plugins/updraftplus/images/rackspacecloud-logo.png'),(663,'wp-content/plugins/updraftplus/images/ud-logo-150.png'),(664,'wp-content/plugins/updraftplus/images/udlogo-rotating.gif'),(665,'wp-content/plugins/updraftplus/images/udp-logo-white.png'),(666,'wp-content/plugins/updraftplus/images/updraft_cross.png'),(667,'wp-content/plugins/updraftplus/images/updraft_freev.png'),(668,'wp-content/plugins/updraftplus/images/updraft_premv.png'),(669,'wp-content/plugins/updraftplus/images/updraft_tick.png'),(670,'wp-content/plugins/updraftplus/images/updraftvault-150.png'),(671,'wp-content/plugins/updraftplus/includes/Dropbox/API.php'),(672,'wp-content/plugins/updraftplus/includes/Dropbox/Exception.php'),(673,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/ConsumerAbstract.php'),(674,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/Curl.php'),(675,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Consumer/WordPress.php'),(676,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/Encrypter.php'),(677,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/StorageInterface.php'),(678,'wp-content/plugins/updraftplus/includes/Dropbox/OAuth/Storage/WordPress.php'),(679,'wp-content/plugins/updraftplus/includes/Dropbox2/API.php'),(680,'wp-content/plugins/updraftplus/includes/Dropbox2/Exception.php'),(681,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/ConsumerAbstract.php'),(682,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/Curl.php'),(683,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Consumer/WordPress.php'),(684,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/Encrypter.php'),(685,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/StorageInterface.php'),(686,'wp-content/plugins/updraftplus/includes/Dropbox2/OAuth/Storage/WordPress.php'),(687,'wp-content/plugins/updraftplus/includes/Google/Auth/Abstract.php'),(688,'wp-content/plugins/updraftplus/includes/Google/Auth/AppIdentity.php'),(689,'wp-content/plugins/updraftplus/includes/Google/Auth/AssertionCredentials.php'),(690,'wp-content/plugins/updraftplus/includes/Google/Auth/ComputeEngine.php'),(691,'wp-content/plugins/updraftplus/includes/Google/Auth/Exception.php'),(692,'wp-content/plugins/updraftplus/includes/Google/Auth/LoginTicket.php'),(693,'wp-content/plugins/updraftplus/includes/Google/Auth/OAuth2.php'),(694,'wp-content/plugins/updraftplus/includes/Google/Auth/Simple.php'),(695,'wp-content/plugins/updraftplus/includes/Google/Cache/Abstract.php'),(696,'wp-content/plugins/updraftplus/includes/Google/Cache/Apc.php'),(697,'wp-content/plugins/updraftplus/includes/Google/Cache/Exception.php'),(698,'wp-content/plugins/updraftplus/includes/Google/Cache/File.php'),(699,'wp-content/plugins/updraftplus/includes/Google/Cache/Memcache.php'),(700,'wp-content/plugins/updraftplus/includes/Google/Cache/Null.php'),(701,'wp-content/plugins/updraftplus/includes/Google/Client.php'),(702,'wp-content/plugins/updraftplus/includes/Google/Collection.php'),(703,'wp-content/plugins/updraftplus/includes/Google/Config.php'),(704,'wp-content/plugins/updraftplus/includes/Google/Exception.php'),(705,'wp-content/plugins/updraftplus/includes/Google/Http/Batch.php'),(706,'wp-content/plugins/updraftplus/includes/Google/Http/CacheParser.php'),(707,'wp-content/plugins/updraftplus/includes/Google/Http/MediaFileUpload.php'),(708,'wp-content/plugins/updraftplus/includes/Google/Http/REST.php'),(709,'wp-content/plugins/updraftplus/includes/Google/Http/Request.php'),(710,'wp-content/plugins/updraftplus/includes/Google/IO/Abstract.php'),(711,'wp-content/plugins/updraftplus/includes/Google/IO/Curl.php'),(712,'wp-content/plugins/updraftplus/includes/Google/IO/Exception.php'),(713,'wp-content/plugins/updraftplus/includes/Google/IO/Stream.php'),(714,'wp-content/plugins/updraftplus/includes/Google/IO/cacerts.pem'),(715,'wp-content/plugins/updraftplus/includes/Google/Logger/Abstract.php'),(716,'wp-content/plugins/updraftplus/includes/Google/Logger/Exception.php'),(717,'wp-content/plugins/updraftplus/includes/Google/Logger/File.php'),(718,'wp-content/plugins/updraftplus/includes/Google/Logger/Null.php'),(719,'wp-content/plugins/updraftplus/includes/Google/Logger/Psr.php'),(720,'wp-content/plugins/updraftplus/includes/Google/Model.php'),(721,'wp-content/plugins/updraftplus/includes/Google/Service/Audit.php'),(722,'wp-content/plugins/updraftplus/includes/Google/Service/Container.php'),(723,'wp-content/plugins/updraftplus/includes/Google/Service/Datastore.php'),(724,'wp-content/plugins/updraftplus/includes/Google/Service/Directory.php'),(725,'wp-content/plugins/updraftplus/includes/Google/Service/Dns.php'),(726,'wp-content/plugins/updraftplus/includes/Google/Service/Drive.php'),(727,'wp-content/plugins/updraftplus/includes/Google/Service/Exception.php'),(728,'wp-content/plugins/updraftplus/includes/Google/Service/GroupsMigration.php'),(729,'wp-content/plugins/updraftplus/includes/Google/Service/Groupssettings.php'),(730,'wp-content/plugins/updraftplus/includes/Google/Service/IdentityToolkit.php'),(731,'wp-content/plugins/updraftplus/includes/Google/Service/Licensing.php'),(732,'wp-content/plugins/updraftplus/includes/Google/Service/Logging.php'),(733,'wp-content/plugins/updraftplus/includes/Google/Service/Oauth2.php'),(734,'wp-content/plugins/updraftplus/includes/Google/Service/Reports.php'),(735,'wp-content/plugins/updraftplus/includes/Google/Service/Resource.php'),(736,'wp-content/plugins/updraftplus/includes/Google/Service/Resourceviews.php'),(737,'wp-content/plugins/updraftplus/includes/Google/Service/Storage.php'),(738,'wp-content/plugins/updraftplus/includes/Google/Service/Tasks.php'),(739,'wp-content/plugins/updraftplus/includes/Google/Service.php'),(740,'wp-content/plugins/updraftplus/includes/Google/Signer/Abstract.php'),(741,'wp-content/plugins/updraftplus/includes/Google/Signer/P12.php'),(742,'wp-content/plugins/updraftplus/includes/Google/Task/Exception.php'),(743,'wp-content/plugins/updraftplus/includes/Google/Task/Retryable.php'),(744,'wp-content/plugins/updraftplus/includes/Google/Task/Runner.php'),(745,'wp-content/plugins/updraftplus/includes/Google/Utils/URITemplate.php'),(746,'wp-content/plugins/updraftplus/includes/Google/Utils.php'),(747,'wp-content/plugins/updraftplus/includes/Google/Verifier/Abstract.php'),(748,'wp-content/plugins/updraftplus/includes/Google/Verifier/Pem.php'),(749,'wp-content/plugins/updraftplus/includes/Google/autoload.php'),(750,'wp-content/plugins/updraftplus/includes/S3.php'),(751,'wp-content/plugins/updraftplus/includes/S3compat.php'),(752,'wp-content/plugins/updraftplus/includes/cacert.pem'),(753,'wp-content/plugins/updraftplus/includes/class-partialfileservlet.php'),(754,'wp-content/plugins/updraftplus/includes/class-semaphore.php'),(755,'wp-content/plugins/updraftplus/includes/class-udrpc.php'),(756,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles.php'),(757,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_exceptions.php'),(758,'wp-content/plugins/updraftplus/includes/cloudfiles/cloudfiles_http.php'),(759,'wp-content/plugins/updraftplus/includes/ftp.class.php'),(760,'wp-content/plugins/updraftplus/includes/get-cpanel-quota-usage.pl'),(761,'wp-content/plugins/updraftplus/includes/google-extensions.php'),(762,'wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_18_b81900_40x40.png'),(763,'wp-content/plugins/updraftplus/includes/images/ui-bg_diagonals-thick_20_666666_40x40.png'),(764,'wp-content/plugins/updraftplus/includes/images/ui-bg_flat_10_000000_40x100.png'),(765,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_f6f6f6_1x400.png'),(766,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_100_fdf5ce_1x400.png'),(767,'wp-content/plugins/updraftplus/includes/images/ui-bg_glass_65_ffffff_1x400.png'),(768,'wp-content/plugins/updraftplus/includes/images/ui-bg_gloss-wave_35_f6a828_500x100.png'),(769,'wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_100_eeeeee_1x100.png'),(770,'wp-content/plugins/updraftplus/includes/images/ui-bg_highlight-soft_75_ffe45c_1x100.png'),(771,'wp-content/plugins/updraftplus/includes/images/ui-icons_222222_256x240.png'),(772,'wp-content/plugins/updraftplus/includes/images/ui-icons_228ef1_256x240.png'),(773,'wp-content/plugins/updraftplus/includes/images/ui-icons_ef8c08_256x240.png'),(774,'wp-content/plugins/updraftplus/includes/images/ui-icons_ffd27a_256x240.png'),(775,'wp-content/plugins/updraftplus/includes/images/ui-icons_ffffff_256x240.png'),(776,'wp-content/plugins/updraftplus/includes/jquery-ui.custom.css'),(777,'wp-content/plugins/updraftplus/includes/jquery.blockUI.js'),(778,'wp-content/plugins/updraftplus/includes/labelauty/images/input-checked.png'),(779,'wp-content/plugins/updraftplus/includes/labelauty/images/input-unchecked.png'),(780,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.css'),(781,'wp-content/plugins/updraftplus/includes/labelauty/jquery-labelauty.js'),(782,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/AES.php'),(783,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Base.php'),(784,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Blowfish.php'),(785,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/DES.php'),(786,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Hash.php'),(787,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC2.php'),(788,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RC4.php'),(789,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/RSA.php'),(790,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Random.php'),(791,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Rijndael.php'),(792,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/TripleDES.php'),(793,'wp-content/plugins/updraftplus/includes/phpseclib/Crypt/Twofish.php'),(794,'wp-content/plugins/updraftplus/includes/phpseclib/File/ANSI.php'),(795,'wp-content/plugins/updraftplus/includes/phpseclib/File/ASN1.php'),(796,'wp-content/plugins/updraftplus/includes/phpseclib/File/X509.php'),(797,'wp-content/plugins/updraftplus/includes/phpseclib/Math/BigInteger.php'),(798,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SCP.php'),(799,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP/Stream.php'),(800,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SFTP.php'),(801,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH1.php'),(802,'wp-content/plugins/updraftplus/includes/phpseclib/Net/SSH2.php'),(803,'wp-content/plugins/updraftplus/includes/phpseclib/System/SSH/Agent.php'),(804,'wp-content/plugins/updraftplus/includes/phpseclib/System/SSH_Agent.php'),(805,'wp-content/plugins/updraftplus/includes/phpseclib/bootstrap.php'),(806,'wp-content/plugins/updraftplus/includes/phpseclib/openssl.cnf'),(807,'wp-content/plugins/updraftplus/includes/updraft-admin-ui.js'),(808,'wp-content/plugins/updraftplus/index.html'),(809,'wp-content/plugins/updraftplus/languages/updraftplus-ar.mo'),(810,'wp-content/plugins/updraftplus/languages/updraftplus-ar.po'),(811,'wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.mo'),(812,'wp-content/plugins/updraftplus/languages/updraftplus-bn_BD.po'),(813,'wp-content/plugins/updraftplus/languages/updraftplus-ca.mo'),(814,'wp-content/plugins/updraftplus/languages/updraftplus-ca.po'),(815,'wp-content/plugins/updraftplus/languages/updraftplus-ca_ES.mo'),(816,'wp-content/plugins/updraftplus/languages/updraftplus-ca_ES.po'),(817,'wp-content/plugins/updraftplus/languages/updraftplus-cs_CZ.mo'),(818,'wp-content/plugins/updraftplus/languages/updraftplus-cs_CZ.po'),(819,'wp-content/plugins/updraftplus/languages/updraftplus-da_DK.mo'),(820,'wp-content/plugins/updraftplus/languages/updraftplus-da_DK.po'),(821,'wp-content/plugins/updraftplus/languages/updraftplus-el.mo'),(822,'wp-content/plugins/updraftplus/languages/updraftplus-el.po'),(823,'wp-content/plugins/updraftplus/languages/updraftplus-es_CO.mo'),(824,'wp-content/plugins/updraftplus/languages/updraftplus-es_CO.po'),(825,'wp-content/plugins/updraftplus/languages/updraftplus-es_ES.mo'),(826,'wp-content/plugins/updraftplus/languages/updraftplus-es_ES.po'),(827,'wp-content/plugins/updraftplus/languages/updraftplus-es_MX.mo'),(828,'wp-content/plugins/updraftplus/languages/updraftplus-es_MX.po'),(829,'wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.mo'),(830,'wp-content/plugins/updraftplus/languages/updraftplus-fa_IR.po'),(831,'wp-content/plugins/updraftplus/languages/updraftplus-fi.mo'),(832,'wp-content/plugins/updraftplus/languages/updraftplus-fi.po'),(833,'wp-content/plugins/updraftplus/languages/updraftplus-he_IL.mo'),(834,'wp-content/plugins/updraftplus/languages/updraftplus-he_IL.po'),(835,'wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.mo'),(836,'wp-content/plugins/updraftplus/languages/updraftplus-hu_HU.po'),(837,'wp-content/plugins/updraftplus/languages/updraftplus-id_ID.mo'),(838,'wp-content/plugins/updraftplus/languages/updraftplus-id_ID.po'),(839,'wp-content/plugins/updraftplus/languages/updraftplus-it_IT.mo'),(840,'wp-content/plugins/updraftplus/languages/updraftplus-it_IT.po'),(841,'wp-content/plugins/updraftplus/languages/updraftplus-ja.mo'),(842,'wp-content/plugins/updraftplus/languages/updraftplus-ja.po'),(843,'wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.mo'),(844,'wp-content/plugins/updraftplus/languages/updraftplus-lt_LT.po'),(845,'wp-content/plugins/updraftplus/languages/updraftplus-nb_NO.mo'),(846,'wp-content/plugins/updraftplus/languages/updraftplus-nb_NO.po'),(847,'wp-content/plugins/updraftplus/languages/updraftplus-nl_NL.mo'),(848,'wp-content/plugins/updraftplus/languages/updraftplus-nl_NL.po'),(849,'wp-content/plugins/updraftplus/languages/updraftplus-nn_NO.mo'),(850,'wp-content/plugins/updraftplus/languages/updraftplus-nn_NO.po'),(851,'wp-content/plugins/updraftplus/languages/updraftplus-no.mo'),(852,'wp-content/plugins/updraftplus/languages/updraftplus-no.po'),(853,'wp-content/plugins/updraftplus/languages/updraftplus-pl_PL.mo'),(854,'wp-content/plugins/updraftplus/languages/updraftplus-pl_PL.po'),(855,'wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.mo'),(856,'wp-content/plugins/updraftplus/languages/updraftplus-pt_BR.po'),(857,'wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.mo'),(858,'wp-content/plugins/updraftplus/languages/updraftplus-ru_RU.po'),(859,'wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.mo'),(860,'wp-content/plugins/updraftplus/languages/updraftplus-sl_SI.po'),(861,'wp-content/plugins/updraftplus/languages/updraftplus-sv_SE.mo'),(862,'wp-content/plugins/updraftplus/languages/updraftplus-sv_SE.po'),(863,'wp-content/plugins/updraftplus/languages/updraftplus-tl.mo'),(864,'wp-content/plugins/updraftplus/languages/updraftplus-tl.po'),(865,'wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.mo'),(866,'wp-content/plugins/updraftplus/languages/updraftplus-tr_TR.po'),(867,'wp-content/plugins/updraftplus/languages/updraftplus-uk.mo'),(868,'wp-content/plugins/updraftplus/languages/updraftplus-uk.po'),(869,'wp-content/plugins/updraftplus/languages/updraftplus-vi.mo'),(870,'wp-content/plugins/updraftplus/languages/updraftplus-vi.po'),(871,'wp-content/plugins/updraftplus/languages/updraftplus-zh_CN.mo'),(872,'wp-content/plugins/updraftplus/languages/updraftplus-zh_CN.po'),(873,'wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.mo'),(874,'wp-content/plugins/updraftplus/languages/updraftplus-zh_TW.po'),(875,'wp-content/plugins/updraftplus/languages/updraftplus.pot'),(876,'wp-content/plugins/updraftplus/methods/azure.php'),(877,'wp-content/plugins/updraftplus/methods/cloudfiles-new.php'),(878,'wp-content/plugins/updraftplus/methods/cloudfiles.php'),(879,'wp-content/plugins/updraftplus/methods/dreamobjects.php'),(880,'wp-content/plugins/updraftplus/methods/dropbox.php'),(881,'wp-content/plugins/updraftplus/methods/email.php'),(882,'wp-content/plugins/updraftplus/methods/ftp.php'),(883,'wp-content/plugins/updraftplus/methods/googlecloud.php'),(884,'wp-content/plugins/updraftplus/methods/googledrive.php'),(885,'wp-content/plugins/updraftplus/methods/insufficient.php'),(886,'wp-content/plugins/updraftplus/methods/onedrive.php'),(887,'wp-content/plugins/updraftplus/methods/openstack-base.php'),(888,'wp-content/plugins/updraftplus/methods/openstack.php'),(889,'wp-content/plugins/updraftplus/methods/openstack2.php'),(890,'wp-content/plugins/updraftplus/methods/s3.php'),(891,'wp-content/plugins/updraftplus/methods/s3generic.php'),(892,'wp-content/plugins/updraftplus/methods/sftp.php'),(893,'wp-content/plugins/updraftplus/methods/template.php'),(894,'wp-content/plugins/updraftplus/methods/updraftvault.php'),(895,'wp-content/plugins/updraftplus/methods/viaaddon-base.php'),(896,'wp-content/plugins/updraftplus/methods/webdav.php'),(897,'wp-content/plugins/updraftplus/options.php'),(898,'wp-content/plugins/updraftplus/readme.txt'),(899,'wp-content/plugins/updraftplus/restorer.php'),(900,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/advanced-tools.php'),(901,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/export-settings.php'),(902,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/lock-admin.php'),(903,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/search-replace.php'),(904,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/site-info.php'),(905,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/tools-menu.php'),(906,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/total-size.php'),(907,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/updraftcentral.php'),(908,'wp-content/plugins/updraftplus/templates/wp-admin/advanced/wipe-settings.php'),(909,'wp-content/plugins/updraftplus/updraftplus.php'),(910,'wp-content/plugins/updraftplus/vendor/autoload.php'),(911,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/LICENSE.md'),(912,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/NOTICE.md'),(913,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/composer.json'),(914,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Aws.php'),(915,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AbstractClient.php'),(916,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/AwsClientInterface.php'),(917,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ClientBuilder.php'),(918,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/DefaultClient.php'),(919,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ExpiredCredentialsChecker.php'),(920,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/ThrottlingErrorChecker.php'),(921,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UploadBodyListener.php'),(922,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Client/UserAgentListener.php'),(923,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/AwsQueryVisitor.php'),(924,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/JsonCommand.php'),(925,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/QueryCommand.php'),(926,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Command/XmlResponseLocationVisitor.php'),(927,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractCredentialsDecorator.php'),(928,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/AbstractRefreshableCredentials.php'),(929,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CacheableCredentials.php'),(930,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/Credentials.php'),(931,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/CredentialsInterface.php'),(932,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/NullCredentials.php'),(933,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Credentials/RefreshableInstanceProfileCredentials.php'),(934,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/ClientOptions.php'),(935,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/DateFormat.php'),(936,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Region.php'),(937,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Size.php'),(938,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/Time.php'),(939,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum/UaString.php'),(940,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Enum.php'),(941,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/AwsExceptionInterface.php'),(942,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/BadMethodCallException.php'),(943,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/DomainException.php'),(944,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionFactoryInterface.php'),(945,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ExceptionListener.php'),(946,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InstanceProfileCredentialsException.php'),(947,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/InvalidArgumentException.php'),(948,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/LogicException.php'),(949,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/MultipartUploadException.php'),(950,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/NamespaceExceptionFactory.php'),(951,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OutOfBoundsException.php'),(952,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/OverflowException.php'),(953,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/AbstractJsonExceptionParser.php'),(954,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/DefaultXmlExceptionParser.php'),(955,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/ExceptionParserInterface.php'),(956,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonQueryExceptionParser.php'),(957,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/Parser/JsonRestExceptionParser.php'),(958,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RequiredExtensionNotLoadedException.php'),(959,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/RuntimeException.php'),(960,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/ServiceResponseException.php'),(961,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/TransferException.php'),(962,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Exception/UnexpectedValueException.php'),(963,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/Facade.php'),(964,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/FacadeInterface.php'),(965,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Facade/facade-classes.php'),(966,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHash.php'),(967,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/ChunkHashInterface.php'),(968,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/HashUtils.php'),(969,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Hash/TreeHash.php'),(970,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/HostNameUtils.php'),(971,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/InstanceMetadataClient.php'),(972,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/InstanceMetadata/Waiter/ServiceAvailable.php'),(973,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIterator.php'),(974,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Iterator/AwsResourceIteratorFactory.php'),(975,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransfer.php'),(976,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractTransferState.php'),(977,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadBuilder.php'),(978,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadId.php'),(979,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/AbstractUploadPart.php'),(980,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferInterface.php'),(981,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/TransferStateInterface.php'),(982,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadIdInterface.php'),(983,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Model/MultipartUpload/UploadPartInterface.php'),(984,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/aws-config.php'),(985,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/public-endpoints.php'),(986,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Resources/sdk1-config.php'),(987,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/RulesEndpointProvider.php'),(988,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/AbstractSignature.php'),(989,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/EndpointSignatureInterface.php'),(990,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureInterface.php'),(991,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureListener.php'),(992,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV2.php'),(993,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV3Https.php'),(994,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Signature/SignatureV4.php'),(995,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractResourceWaiter.php'),(996,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/AbstractWaiter.php'),(997,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CallableWaiter.php'),(998,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/CompositeWaiterFactory.php'),(999,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ConfigResourceWaiter.php'),(1000,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/ResourceWaiterInterface.php'),(1001,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterClassFactory.php'),(1002,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfig.php'),(1003,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterConfigFactory.php'),(1004,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterFactoryInterface.php'),(1005,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Common/Waiter/WaiterInterface.php'),(1006,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/AssignmentStatusType.php'),(1007,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Enum/StatusType.php'),(1008,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DeleteConflictException.php'),(1009,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/DuplicateCertificateException.php'),(1010,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityAlreadyExistsException.php'),(1011,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/EntityTemporarilyUnmodifiableException.php'),(1012,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/IamException.php'),(1013,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidAuthenticationCodeException.php'),(1014,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidCertificateException.php'),(1015,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidInputException.php'),(1016,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/InvalidUserTypeException.php'),(1017,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/KeyPairMismatchException.php'),(1018,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/LimitExceededException.php'),(1019,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedCertificateException.php'),(1020,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/MalformedPolicyDocumentException.php'),(1021,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/NoSuchEntityException.php'),(1022,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Exception/PasswordPolicyViolationException.php'),(1023,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/IamClient.php'),(1024,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/Iam/Resources/iam-2010-05-08.php'),(1025,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/AcpListener.php'),(1026,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/BucketStyleListener.php'),(1027,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Command/S3Command.php'),(1028,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/CannedAcl.php'),(1029,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/EncodingType.php'),(1030,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Event.php'),(1031,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/GranteeType.php'),(1032,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Group.php'),(1033,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MFADelete.php'),(1034,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/MetadataDirective.php'),(1035,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Payer.php'),(1036,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Permission.php'),(1037,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Protocol.php'),(1038,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/ServerSideEncryption.php'),(1039,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Status.php'),(1040,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/Storage.php'),(1041,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Enum/StorageClass.php'),(1042,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccessDeniedException.php'),(1043,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AccountProblemException.php'),(1044,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/AmbiguousGrantByEmailAddressException.php'),(1045,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BadDigestException.php'),(1046,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyExistsException.php'),(1047,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketAlreadyOwnedByYouException.php'),(1048,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/BucketNotEmptyException.php'),(1049,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CredentialsNotSupportedException.php'),(1050,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/CrossLocationLoggingProhibitedException.php'),(1051,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/DeleteMultipleObjectsException.php'),(1052,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooLargeException.php'),(1053,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/EntityTooSmallException.php'),(1054,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ExpiredTokenException.php'),(1055,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IllegalVersioningConfigurationException.php'),(1056,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncompleteBodyException.php'),(1057,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/IncorrectNumberOfFilesInPostRequestException.php'),(1058,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InlineDataTooLargeException.php'),(1059,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InternalErrorException.php'),(1060,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAccessKeyIdException.php'),(1061,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidAddressingHeaderException.php'),(1062,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidArgumentException.php'),(1063,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketNameException.php'),(1064,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidBucketStateException.php'),(1065,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidDigestException.php'),(1066,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidLocationConstraintException.php'),(1067,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartException.php'),(1068,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPartOrderException.php'),(1069,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPayerException.php'),(1070,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidPolicyDocumentException.php'),(1071,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRangeException.php'),(1072,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidRequestException.php'),(1073,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSOAPRequestException.php'),(1074,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidSecurityException.php'),(1075,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidStorageClassException.php'),(1076,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTagErrorException.php'),(1077,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTargetBucketForLoggingException.php'),(1078,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidTokenException.php'),(1079,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/InvalidURIException.php'),(1080,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/KeyTooLongException.php'),(1081,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedACLErrorException.php'),(1082,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedPOSTRequestException.php'),(1083,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MalformedXMLException.php'),(1084,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxMessageLengthExceededException.php'),(1085,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MaxPostPreDataLengthExceededErrorException.php'),(1086,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MetadataTooLargeException.php'),(1087,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MethodNotAllowedException.php'),(1088,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingAttachmentException.php'),(1089,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingContentLengthException.php'),(1090,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingRequestBodyErrorException.php'),(1091,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityElementException.php'),(1092,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/MissingSecurityHeaderException.php'),(1093,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoLoggingStatusForKeyException.php'),(1094,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketException.php'),(1095,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchBucketPolicyException.php'),(1096,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchCORSConfigurationException.php'),(1097,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchKeyException.php'),(1098,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchLifecycleConfigurationException.php'),(1099,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetErrorException.php'),(1100,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchTagSetException.php'),(1101,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchUploadException.php'),(1102,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchVersionException.php'),(1103,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NoSuchWebsiteConfigurationException.php'),(1104,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotImplementedException.php'),(1105,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSignedUpException.php'),(1106,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/NotSuchBucketPolicyException.php'),(1107,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectAlreadyInActiveTierErrorException.php'),(1108,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ObjectNotInActiveTierErrorException.php'),(1109,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/OperationAbortedException.php'),(1110,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/Parser/S3ExceptionParser.php'),(1111,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PermanentRedirectException.php'),(1112,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/PreconditionFailedException.php'),(1113,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RedirectException.php'),(1114,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestIsNotMultiPartContentException.php'),(1115,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeTooSkewedException.php'),(1116,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTimeoutException.php'),(1117,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/RequestTorrentOfBucketErrorException.php'),(1118,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/S3Exception.php'),(1119,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/ServiceUnavailableException.php'),(1120,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SignatureDoesNotMatchException.php'),(1121,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/SlowDownException.php'),(1122,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TemporaryRedirectException.php'),(1123,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TokenRefreshRequiredException.php'),(1124,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/TooManyBucketsException.php'),(1125,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnexpectedContentException.php'),(1126,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UnresolvableGrantByEmailAddressException.php'),(1127,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Exception/UserKeyMustBeSpecifiedException.php'),(1128,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/IncompleteMultipartUploadChecker.php'),(1129,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListBucketsIterator.php'),(1130,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListMultipartUploadsIterator.php'),(1131,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectVersionsIterator.php'),(1132,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/ListObjectsIterator.php'),(1133,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Iterator/OpendirIterator.php'),(1134,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Acp.php'),(1135,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/AcpBuilder.php'),(1136,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/ClearBucket.php'),(1137,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsBatch.php'),(1138,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/DeleteObjectsTransfer.php'),(1139,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grant.php'),(1140,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/Grantee.php'),(1141,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/AbstractTransfer.php'),(1142,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/ParallelTransfer.php'),(1143,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/SerialTransfer.php'),(1144,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/TransferState.php'),(1145,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadBuilder.php'),(1146,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadId.php'),(1147,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/MultipartUpload/UploadPart.php'),(1148,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Model/PostObject.php'),(1149,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Resources/s3-2006-03-01.php'),(1150,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/ResumableDownload.php'),(1151,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Client.php'),(1152,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Md5Listener.php'),(1153,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3Signature.php'),(1154,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureInterface.php'),(1155,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/S3SignatureV4.php'),(1156,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SocketTimeoutChecker.php'),(1157,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/SseCpkListener.php'),(1158,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/StreamWrapper.php'),(1159,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSync.php'),(1160,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/AbstractSyncBuilder.php'),(1161,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/ChangedFilesIterator.php'),(1162,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSync.php'),(1163,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/DownloadSyncBuilder.php'),(1164,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/FilenameConverterInterface.php'),(1165,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/KeyConverter.php'),(1166,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSync.php'),(1167,'wp-content/plugins/updraftplus/vendor/aws/aws-sdk-php/src/Aws/S3/Sync/UploadSyncBuilder.php'),(1168,'wp-content/plugins/updraftplus/vendor/composer/ClassLoader.php'),(1169,'wp-content/plugins/updraftplus/vendor/composer/LICENSE'),(1170,'wp-content/plugins/updraftplus/vendor/composer/autoload_classmap.php'),(1171,'wp-content/plugins/updraftplus/vendor/composer/autoload_namespaces.php'),(1172,'wp-content/plugins/updraftplus/vendor/composer/autoload_psr4.php'),(1173,'wp-content/plugins/updraftplus/vendor/composer/autoload_real.php'),(1174,'wp-content/plugins/updraftplus/vendor/composer/installed.json'),(1175,'wp-content/plugins/updraftplus/vendor/eher/oauth/.gitignore'),(1176,'wp-content/plugins/updraftplus/vendor/eher/oauth/.travis.yml'),(1177,'wp-content/plugins/updraftplus/vendor/eher/oauth/README.md'),(1178,'wp-content/plugins/updraftplus/vendor/eher/oauth/composer.json'),(1179,'wp-content/plugins/updraftplus/vendor/eher/oauth/phpunit.xml.dist'),(1180,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Consumer.php'),(1181,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/HmacSha1.php'),(1182,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthDataStore.php'),(1183,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthException.php'),(1184,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/OAuthServer.php'),(1185,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/PlainText.php'),(1186,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Request.php'),(1187,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/RsaSha1.php'),(1188,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/SignatureMethod.php'),(1189,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Token.php'),(1190,'wp-content/plugins/updraftplus/vendor/eher/oauth/src/Eher/OAuth/Util.php'),(1191,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/.gitignore'),(1192,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/.travis.yml'),(1193,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/CHANGELOG.md'),(1194,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/LICENSE'),(1195,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/README.md'),(1196,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/UPGRADING.md'),(1197,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/build.xml'),(1198,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/composer.json'),(1199,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phar-stub.php'),(1200,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/phpunit.xml.dist'),(1201,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/AbstractBatchDecorator.php'),(1202,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Batch.php'),(1203,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchBuilder.php'),(1204,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureDivisor.php'),(1205,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchClosureTransfer.php'),(1206,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchCommandTransfer.php'),(1207,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchDivisorInterface.php'),(1208,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchInterface.php'),(1209,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchRequestTransfer.php'),(1210,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchSizeDivisor.php'),(1211,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/BatchTransferInterface.php'),(1212,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/Exception/BatchTransferException.php'),(1213,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/ExceptionBufferingBatch.php'),(1214,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/FlushingBatch.php'),(1215,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/HistoryBatch.php'),(1216,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/NotifyingBatch.php'),(1217,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Batch/composer.json'),(1218,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/AbstractCacheAdapter.php'),(1219,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterFactory.php'),(1220,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/CacheAdapterInterface.php'),(1221,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/ClosureCacheAdapter.php'),(1222,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/DoctrineCacheAdapter.php'),(1223,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/NullCacheAdapter.php'),(1224,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf1CacheAdapter.php'),(1225,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/Zf2CacheAdapter.php'),(1226,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Cache/composer.json'),(1227,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/AbstractHasDispatcher.php'),(1228,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Collection.php'),(1229,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Event.php'),(1230,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/BadMethodCallException.php'),(1231,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/ExceptionCollection.php'),(1232,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/GuzzleException.php'),(1233,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/InvalidArgumentException.php'),(1234,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/RuntimeException.php'),(1235,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Exception/UnexpectedValueException.php'),(1236,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/FromConfigInterface.php'),(1237,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/HasDispatcherInterface.php'),(1238,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/ToArrayInterface.php'),(1239,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/Version.php'),(1240,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Common/composer.json'),(1241,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/AbstractEntityBodyDecorator.php'),(1242,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/CachingEntityBody.php'),(1243,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Client.php'),(1244,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ClientInterface.php'),(1245,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlHandle.php'),(1246,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMulti.php'),(1247,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiInterface.php'),(1248,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlMultiProxy.php'),(1249,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/CurlVersion.php'),(1250,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Curl/RequestMediator.php'),(1251,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBody.php'),(1252,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/EntityBodyInterface.php'),(1253,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/BadResponseException.php'),(1254,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ClientErrorResponseException.php'),(1255,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CouldNotRewindStreamException.php'),(1256,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/CurlException.php'),(1257,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/HttpException.php'),(1258,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/MultiTransferException.php'),(1259,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/RequestException.php'),(1260,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/ServerErrorResponseException.php'),(1261,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Exception/TooManyRedirectsException.php'),(1262,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/IoEmittingEntityBody.php'),(1263,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/AbstractMessage.php'),(1264,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequest.php'),(1265,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/EntityEnclosingRequestInterface.php'),(1266,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/CacheControl.php'),(1267,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderCollection.php'),(1268,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactory.php'),(1269,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderFactoryInterface.php'),(1270,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/HeaderInterface.php'),(1271,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header/Link.php'),(1272,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Header.php'),(1273,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/MessageInterface.php'),(1274,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFile.php'),(1275,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/PostFileInterface.php'),(1276,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Request.php'),(1277,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactory.php'),(1278,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestFactoryInterface.php'),(1279,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/RequestInterface.php'),(1280,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Message/Response.php'),(1281,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Mimetypes.php'),(1282,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/CommaAggregator.php'),(1283,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/DuplicateAggregator.php'),(1284,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/PhpAggregator.php'),(1285,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryAggregator/QueryAggregatorInterface.php'),(1286,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/QueryString.php'),(1287,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/ReadLimitEntityBody.php'),(1288,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/RedirectPlugin.php'),(1289,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Resources/cacert.pem'),(1290,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/StaticClient.php'),(1291,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/Url.php'),(1292,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Http/composer.json'),(1293,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/Inflector.php'),(1294,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/InflectorInterface.php'),(1295,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/MemoizingInflector.php'),(1296,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/PreComputedInflector.php'),(1297,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Inflection/composer.json'),(1298,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/AppendIterator.php'),(1299,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/ChunkedIterator.php'),(1300,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/FilterIterator.php'),(1301,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MapIterator.php'),(1302,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/MethodProxyIterator.php'),(1303,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/README.md'),(1304,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Iterator/composer.json'),(1305,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/AbstractLogAdapter.php'),(1306,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ArrayLogAdapter.php'),(1307,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/ClosureLogAdapter.php'),(1308,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/LogAdapterInterface.php'),(1309,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MessageFormatter.php'),(1310,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/MonologLogAdapter.php'),(1311,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/PsrLogAdapter.php'),(1312,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf1LogAdapter.php'),(1313,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/Zf2LogAdapter.php'),(1314,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Log/composer.json'),(1315,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParser.php'),(1316,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Cookie/CookieParserInterface.php'),(1317,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/AbstractMessageParser.php'),(1318,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParser.php'),(1319,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/MessageParserInterface.php'),(1320,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Message/PeclHttpMessageParser.php'),(1321,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/ParserRegistry.php'),(1322,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/PeclUriTemplate.php'),(1323,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplate.php'),(1324,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/UriTemplate/UriTemplateInterface.php'),(1325,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParser.php'),(1326,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/Url/UrlParserInterface.php'),(1327,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Parser/composer.json'),(1328,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/AsyncPlugin.php'),(1329,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Async/composer.json'),(1330,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractBackoffStrategy.php'),(1331,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/AbstractErrorCodeBackoffStrategy.php'),(1332,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffLogger.php'),(1333,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffPlugin.php'),(1334,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/BackoffStrategyInterface.php'),(1335,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CallbackBackoffStrategy.php'),(1336,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ConstantBackoffStrategy.php'),(1337,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/CurlBackoffStrategy.php'),(1338,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ExponentialBackoffStrategy.php'),(1339,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/HttpBackoffStrategy.php'),(1340,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/LinearBackoffStrategy.php'),(1341,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/ReasonPhraseBackoffStrategy.php'),(1342,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/TruncatedBackoffStrategy.php'),(1343,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Backoff/composer.json'),(1344,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheKeyProviderInterface.php'),(1345,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CachePlugin.php'),(1346,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CacheStorageInterface.php'),(1347,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CallbackCanCacheStrategy.php'),(1348,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/CanCacheStrategyInterface.php'),(1349,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheKeyProvider.php'),(1350,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCacheStorage.php'),(1351,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultCanCacheStrategy.php'),(1352,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DefaultRevalidation.php'),(1353,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/DenyRevalidation.php'),(1354,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/RevalidationInterface.php'),(1355,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/SkipRevalidation.php'),(1356,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cache/composer.json'),(1357,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Cookie.php'),(1358,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/ArrayCookieJar.php'),(1359,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/CookieJarInterface.php'),(1360,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookieJar/FileCookieJar.php'),(1361,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/CookiePlugin.php'),(1362,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/Exception/InvalidCookieException.php'),(1363,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Cookie/composer.json'),(1364,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/CurlAuthPlugin.php'),(1365,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/CurlAuth/composer.json'),(1366,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponseExceptionInterface.php'),(1367,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/ErrorResponsePlugin.php'),(1368,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/Exception/ErrorResponseException.php'),(1369,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/ErrorResponse/composer.json'),(1370,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/HistoryPlugin.php'),(1371,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/History/composer.json'),(1372,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/LogPlugin.php'),(1373,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Log/composer.json'),(1374,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/CommandContentMd5Plugin.php'),(1375,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/Md5ValidatorPlugin.php'),(1376,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Md5/composer.json'),(1377,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/MockPlugin.php'),(1378,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Mock/composer.json'),(1379,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/OauthPlugin.php'),(1380,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/Oauth/composer.json'),(1381,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Plugin/composer.json'),(1382,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/AbstractConfigLoader.php'),(1383,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilder.php'),(1384,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderInterface.php'),(1385,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Builder/ServiceBuilderLoader.php'),(1386,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/CachingConfigLoader.php'),(1387,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Client.php'),(1388,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ClientInterface.php'),(1389,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/AbstractCommand.php'),(1390,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ClosureCommand.php'),(1391,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CommandInterface.php'),(1392,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/CreateResponseClassEvent.php'),(1393,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultRequestSerializer.php'),(1394,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/DefaultResponseParser.php'),(1395,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/AliasFactory.php'),(1396,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/CompositeFactory.php'),(1397,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ConcreteClassFactory.php'),(1398,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/FactoryInterface.php'),(1399,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/MapFactory.php'),(1400,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/Factory/ServiceDescriptionFactory.php'),(1401,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/AbstractRequestVisitor.php'),(1402,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/BodyVisitor.php'),(1403,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/HeaderVisitor.php'),(1404,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/JsonVisitor.php'),(1405,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFieldVisitor.php'),(1406,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/PostFileVisitor.php'),(1407,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/QueryVisitor.php'),(1408,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/RequestVisitorInterface.php'),(1409,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/ResponseBodyVisitor.php'),(1410,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Request/XmlVisitor.php'),(1411,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/AbstractResponseVisitor.php'),(1412,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/BodyVisitor.php'),(1413,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/HeaderVisitor.php'),(1414,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/JsonVisitor.php'),(1415,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ReasonPhraseVisitor.php'),(1416,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/ResponseVisitorInterface.php'),(1417,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/StatusCodeVisitor.php'),(1418,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/Response/XmlVisitor.php'),(1419,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/LocationVisitor/VisitorFlyweight.php'),(1420,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationCommand.php'),(1421,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/OperationResponseParser.php'),(1422,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/RequestSerializerInterface.php'),(1423,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseClassInterface.php'),(1424,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Command/ResponseParserInterface.php'),(1425,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/ConfigLoaderInterface.php'),(1426,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Operation.php'),(1427,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/OperationInterface.php'),(1428,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/Parameter.php'),(1429,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaFormatter.php'),(1430,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/SchemaValidator.php'),(1431,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescription.php'),(1432,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionInterface.php'),(1433,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ServiceDescriptionLoader.php'),(1434,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Description/ValidatorInterface.php'),(1435,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandException.php'),(1436,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/CommandTransferException.php'),(1437,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/DescriptionBuilderException.php'),(1438,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/InconsistentClientTransferException.php'),(1439,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ResponseClassException.php'),(1440,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceBuilderException.php'),(1441,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ServiceNotFoundException.php'),(1442,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Exception/ValidationException.php'),(1443,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/AbstractResourceIteratorFactory.php'),(1444,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/CompositeResourceIteratorFactory.php'),(1445,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/MapResourceIteratorFactory.php'),(1446,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/Model.php'),(1447,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIterator.php'),(1448,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorApplyBatched.php'),(1449,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorClassFactory.php'),(1450,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorFactoryInterface.php'),(1451,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/Resource/ResourceIteratorInterface.php'),(1452,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Service/composer.json'),(1453,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/PhpStreamRequestFactory.php'),(1454,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/Stream.php'),(1455,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamInterface.php'),(1456,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/StreamRequestFactoryInterface.php'),(1457,'wp-content/plugins/updraftplus/vendor/guzzle/guzzle/src/Guzzle/Stream/composer.json'),(1458,'wp-content/plugins/updraftplus/vendor/psr/log/.gitignore'),(1459,'wp-content/plugins/updraftplus/vendor/psr/log/LICENSE'),(1460,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/AbstractLogger.php'),(1461,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/InvalidArgumentException.php'),(1462,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LogLevel.php'),(1463,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareInterface.php'),(1464,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerAwareTrait.php'),(1465,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerInterface.php'),(1466,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/LoggerTrait.php'),(1467,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/NullLogger.php'),(1468,'wp-content/plugins/updraftplus/vendor/psr/log/Psr/Log/Test/LoggerInterfaceTest.php'),(1469,'wp-content/plugins/updraftplus/vendor/psr/log/README.md'),(1470,'wp-content/plugins/updraftplus/vendor/psr/log/composer.json'),(1471,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.coveralls.yml'),(1472,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.gitignore'),(1473,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/.travis.yml'),(1474,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/CONTRIBUTING.md'),(1475,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/LICENSE'),(1476,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/README.md'),(1477,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/apigen.neon'),(1478,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/composer.json'),(1479,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/ArrayAccess.php'),(1480,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Base.php'),(1481,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ArrayCollection.php'),(1482,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/PaginatedIterator.php'),(1483,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection/ResourceIterator.php'),(1484,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Collection.php'),(1485,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Datetime.php'),(1486,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Header.php'),(1487,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Mime.php'),(1488,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Service.php'),(1489,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/Size.php'),(1490,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Constants/State.php'),(1491,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncError.php'),(1492,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncHttpError.php'),(1493,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AsyncTimeoutError.php'),(1494,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AttributeError.php'),(1495,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/AuthenticationError.php'),(1496,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/BaseException.php'),(1497,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnError.php'),(1498,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnHttpError.php'),(1499,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnNotAvailableError.php'),(1500,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CdnTtlError.php'),(1501,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CollectionException.php'),(1502,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerCreateError.php'),(1503,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerDeleteError.php'),(1504,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerError.php'),(1505,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNameError.php'),(1506,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotEmptyError.php'),(1507,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ContainerNotFoundError.php'),(1508,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateError.php'),(1509,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CreateUpdateError.php'),(1510,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/CredentialError.php'),(1511,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseCreateError.php'),(1512,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseDeleteError.php'),(1513,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseListError.php'),(1514,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseNameError.php'),(1515,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DatabaseUpdateError.php'),(1516,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DeleteError.php'),(1517,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DocumentError.php'),(1518,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/DomainError.php'),(1519,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EmptyResponseError.php'),(1520,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/EndpointError.php'),(1521,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/FlavorError.php'),(1522,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ForbiddenOperationException.php'),(1523,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpError.php'),(1524,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpForbiddenError.php'),(1525,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpOverLimitError.php'),(1526,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpResponseException.php'),(1527,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpRetryError.php'),(1528,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpTimeoutError.php'),(1529,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUnauthorizedError.php'),(1530,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/HttpUrlError.php'),(1531,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IOError.php'),(1532,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/IdRequiredError.php'),(1533,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ImageError.php'),(1534,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceCreateError.php'),(1535,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceDeleteError.php'),(1536,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceError.php'),(1537,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceFlavorError.php'),(1538,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceNotFound.php'),(1539,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InstanceUpdateError.php'),(1540,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidArgumentError.php'),(1541,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIdTypeError.php'),(1542,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidIpTypeError.php'),(1543,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidParameterError.php'),(1544,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidRequestError.php'),(1545,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/InvalidTemplateError.php'),(1546,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/JsonError.php'),(1547,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/LoggingException.php'),(1548,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataCreateError.php'),(1549,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataDeleteError.php'),(1550,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataError.php'),(1551,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataJsonError.php'),(1552,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataKeyError.php'),(1553,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataPrefixError.php'),(1554,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MetadataUpdateError.php'),(1555,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MisMatchedChecksumError.php'),(1556,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/MissingValueError.php'),(1557,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NameError.php'),(1558,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkCreateError.php'),(1559,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkDeleteError.php'),(1560,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkError.php'),(1561,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUpdateError.php'),(1562,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NetworkUrlError.php'),(1563,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoContentTypeError.php'),(1564,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/NoNameError.php'),(1565,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjFetchError.php'),(1566,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectCopyError.php'),(1567,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ObjectError.php'),(1568,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RebuildError.php'),(1569,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RecordTypeError.php'),(1570,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceBucketException.php'),(1571,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ResourceNotFoundException.php'),(1572,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/RuntimeException.php'),(1573,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerActionError.php'),(1574,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerCreateError.php'),(1575,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerDeleteError.php'),(1576,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerImageScheduleError.php'),(1577,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerIpsError.php'),(1578,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerJsonError.php'),(1579,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUpdateError.php'),(1580,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServerUrlError.php'),(1581,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/ServiceException.php'),(1582,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/SnapshotError.php'),(1583,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/TempUrlMethodError.php'),(1584,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownError.php'),(1585,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnknownParameterError.php'),(1586,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnrecognizedServiceError.php'),(1587,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedExtensionError.php'),(1588,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedFeatureExtension.php'),(1589,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UnsupportedVersionError.php'),(1590,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UpdateError.php'),(1591,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UrlError.php'),(1592,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserCreateError.php'),(1593,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserDeleteError.php'),(1594,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserListError.php'),(1595,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserNameError.php'),(1596,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/UserUpdateError.php'),(1597,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeError.php'),(1598,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Exceptions/VolumeTypeError.php'),(1599,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Client.php'),(1600,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/Formatter.php'),(1601,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Http/Message/RequestSubscriber.php'),(1602,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Lang.php'),(1603,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Log/Logger.php'),(1604,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Metadata.php'),(1605,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/PersistentObject.php'),(1606,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/BaseResource.php'),(1607,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/NovaResource.php'),(1608,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/PersistentResource.php'),(1609,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Resource/ReadOnlyResource.php'),(1610,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/AbstractService.php'),(1611,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Catalog.php'),(1612,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogItem.php'),(1613,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/CatalogService.php'),(1614,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/Endpoint.php'),(1615,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/NovaService.php'),(1616,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceBuilder.php'),(1617,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Common/Service/ServiceInterface.php'),(1618,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Constants/User.php'),(1619,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Role.php'),(1620,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Tenant.php'),(1621,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/Token.php'),(1622,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Resource/User.php'),(1623,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Identity/Service.php'),(1624,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/AbstractService.php'),(1625,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/CDNService.php'),(1626,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/Header.php'),(1627,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Constants/UrlType.php'),(1628,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Enum/ReturnType.php'),(1629,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/BulkOperationException.php'),(1630,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ContainerException.php'),(1631,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/ObjectNotFoundException.php'),(1632,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/StreamException.php'),(1633,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Exception/UploadException.php'),(1634,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractContainer.php'),(1635,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/AbstractResource.php'),(1636,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Account.php'),(1637,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/CDNContainer.php'),(1638,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/Container.php'),(1639,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/ContainerMetadata.php'),(1640,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Resource/DataObject.php'),(1641,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Service.php'),(1642,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/AbstractTransfer.php'),(1643,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConcurrentTransfer.php'),(1644,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ConsecutiveTransfer.php'),(1645,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/ContainerMigration.php'),(1646,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/DirectorySync.php'),(1647,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferBuilder.php'),(1648,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferPart.php'),(1649,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/ObjectStore/Upload/TransferState.php'),(1650,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/OpenStack.php'),(1651,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Rackspace.php'),(1652,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/OpenCloud/Version.php'),(1653,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/lib/php-opencloud.php'),(1654,'wp-content/plugins/updraftplus/vendor/rackspace/php-opencloud/phpunit.xml.dist'),(1655,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/.gitignore'),(1656,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/CHANGELOG.md'),(1657,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ContainerAwareEventDispatcher.php'),(1658,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php'),(1659,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcherInterface.php'),(1660,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Debug/WrappedListener.php'),(1661,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/DependencyInjection/RegisterListenersPass.php'),(1662,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Event.php'),(1663,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcher.php'),(1664,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventDispatcherInterface.php'),(1665,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/EventSubscriberInterface.php'),(1666,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/GenericEvent.php'),(1667,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/ImmutableEventDispatcher.php'),(1668,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/LICENSE'),(1669,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/README.md'),(1670,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/AbstractEventDispatcherTest.php'),(1671,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ContainerAwareEventDispatcherTest.php'),(1672,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php'),(1673,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/DependencyInjection/RegisterListenersPassTest.php'),(1674,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventDispatcherTest.php'),(1675,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/EventTest.php'),(1676,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/GenericEventTest.php'),(1677,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/Tests/ImmutableEventDispatcherTest.php'),(1678,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/composer.json'),(1679,'wp-content/plugins/updraftplus/vendor/symfony/event-dispatcher/phpunit.xml.dist'),(1680,'wp-content/plugins/wordfence/css/activity-report-widget.css'),(1681,'wp-content/plugins/wordfence/css/colorbox.css'),(1682,'wp-content/plugins/wordfence/css/diff.css'),(1683,'wp-content/plugins/wordfence/css/dt_table.css'),(1684,'wp-content/plugins/wordfence/css/fullLog.css'),(1685,'wp-content/plugins/wordfence/css/images/ui-bg_flat_0_aaaaaa_40x100.png'),(1686,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_1997c7_40x100.png'),(1687,'wp-content/plugins/wordfence/css/images/ui-bg_flat_100_222_40x100.png'),(1688,'wp-content/plugins/wordfence/css/images/ui-bg_flat_75_ffffff_40x100.png'),(1689,'wp-content/plugins/wordfence/css/images/ui-bg_glass_95_fef1ec_1x400.png'),(1690,'wp-content/plugins/wordfence/css/images/ui-bg_highlight-soft_75_a5a5a5_1x100.png'),(1691,'wp-content/plugins/wordfence/css/images/ui-icons_222222_256x240.png'),(1692,'wp-content/plugins/wordfence/css/images/ui-icons_cd0a0a_256x240.png'),(1693,'wp-content/plugins/wordfence/css/images/ui-icons_fbe569_256x240.png'),(1694,'wp-content/plugins/wordfence/css/images/ui-icons_fff_256x240.png'),(1695,'wp-content/plugins/wordfence/css/iptraf.css'),(1696,'wp-content/plugins/wordfence/css/jquery-ui-timepicker-addon.css'),(1697,'wp-content/plugins/wordfence/css/jquery-ui.min.css'),(1698,'wp-content/plugins/wordfence/css/jquery-ui.structure.min.css'),(1699,'wp-content/plugins/wordfence/css/jquery-ui.theme.min.css'),(1700,'wp-content/plugins/wordfence/css/main.css'),(1701,'wp-content/plugins/wordfence/css/phpinfo.css'),(1702,'wp-content/plugins/wordfence/css/select2.min.css'),(1703,'wp-content/plugins/wordfence/css/wordfenceBox.css'),(1704,'wp-content/plugins/wordfence/images/back_disabled.jpg'),(1705,'wp-content/plugins/wordfence/images/back_enabled.jpg'),(1706,'wp-content/plugins/wordfence/images/button-grad-grey.png'),(1707,'wp-content/plugins/wordfence/images/flags/.png'),(1708,'wp-content/plugins/wordfence/images/flags/a1.png'),(1709,'wp-content/plugins/wordfence/images/flags/a2.png'),(1710,'wp-content/plugins/wordfence/images/flags/ad.png'),(1711,'wp-content/plugins/wordfence/images/flags/ae.png'),(1712,'wp-content/plugins/wordfence/images/flags/af.png'),(1713,'wp-content/plugins/wordfence/images/flags/ag.png'),(1714,'wp-content/plugins/wordfence/images/flags/ai.png'),(1715,'wp-content/plugins/wordfence/images/flags/al.png'),(1716,'wp-content/plugins/wordfence/images/flags/am.png'),(1717,'wp-content/plugins/wordfence/images/flags/an.png'),(1718,'wp-content/plugins/wordfence/images/flags/ao.png'),(1719,'wp-content/plugins/wordfence/images/flags/ap.png'),(1720,'wp-content/plugins/wordfence/images/flags/aq.png'),(1721,'wp-content/plugins/wordfence/images/flags/ar.png'),(1722,'wp-content/plugins/wordfence/images/flags/as.png'),(1723,'wp-content/plugins/wordfence/images/flags/at.png'),(1724,'wp-content/plugins/wordfence/images/flags/au.png'),(1725,'wp-content/plugins/wordfence/images/flags/aw.png'),(1726,'wp-content/plugins/wordfence/images/flags/ax.png'),(1727,'wp-content/plugins/wordfence/images/flags/az.png'),(1728,'wp-content/plugins/wordfence/images/flags/ba.png'),(1729,'wp-content/plugins/wordfence/images/flags/bb.png'),(1730,'wp-content/plugins/wordfence/images/flags/bd.png'),(1731,'wp-content/plugins/wordfence/images/flags/be.png'),(1732,'wp-content/plugins/wordfence/images/flags/bf.png'),(1733,'wp-content/plugins/wordfence/images/flags/bg.png'),(1734,'wp-content/plugins/wordfence/images/flags/bh.png'),(1735,'wp-content/plugins/wordfence/images/flags/bi.png'),(1736,'wp-content/plugins/wordfence/images/flags/bj.png'),(1737,'wp-content/plugins/wordfence/images/flags/bm.png'),(1738,'wp-content/plugins/wordfence/images/flags/bn.png'),(1739,'wp-content/plugins/wordfence/images/flags/bo.png'),(1740,'wp-content/plugins/wordfence/images/flags/br.png'),(1741,'wp-content/plugins/wordfence/images/flags/bs.png'),(1742,'wp-content/plugins/wordfence/images/flags/bt.png'),(1743,'wp-content/plugins/wordfence/images/flags/bv.png'),(1744,'wp-content/plugins/wordfence/images/flags/bw.png'),(1745,'wp-content/plugins/wordfence/images/flags/by.png'),(1746,'wp-content/plugins/wordfence/images/flags/bz.png'),(1747,'wp-content/plugins/wordfence/images/flags/ca.png'),(1748,'wp-content/plugins/wordfence/images/flags/cc.png'),(1749,'wp-content/plugins/wordfence/images/flags/cd.png'),(1750,'wp-content/plugins/wordfence/images/flags/cf.png'),(1751,'wp-content/plugins/wordfence/images/flags/cg.png'),(1752,'wp-content/plugins/wordfence/images/flags/ch.png'),(1753,'wp-content/plugins/wordfence/images/flags/ci.png'),(1754,'wp-content/plugins/wordfence/images/flags/ck.png'),(1755,'wp-content/plugins/wordfence/images/flags/cl.png'),(1756,'wp-content/plugins/wordfence/images/flags/cm.png'),(1757,'wp-content/plugins/wordfence/images/flags/cn.png'),(1758,'wp-content/plugins/wordfence/images/flags/co.png'),(1759,'wp-content/plugins/wordfence/images/flags/cr.png'),(1760,'wp-content/plugins/wordfence/images/flags/cs.png'),(1761,'wp-content/plugins/wordfence/images/flags/cu.png'),(1762,'wp-content/plugins/wordfence/images/flags/cv.png'),(1763,'wp-content/plugins/wordfence/images/flags/cw.png'),(1764,'wp-content/plugins/wordfence/images/flags/cx.png'),(1765,'wp-content/plugins/wordfence/images/flags/cy.png'),(1766,'wp-content/plugins/wordfence/images/flags/cz.png'),(1767,'wp-content/plugins/wordfence/images/flags/de.png'),(1768,'wp-content/plugins/wordfence/images/flags/dj.png'),(1769,'wp-content/plugins/wordfence/images/flags/dk.png'),(1770,'wp-content/plugins/wordfence/images/flags/dm.png'),(1771,'wp-content/plugins/wordfence/images/flags/do.png'),(1772,'wp-content/plugins/wordfence/images/flags/dz.png'),(1773,'wp-content/plugins/wordfence/images/flags/ec.png'),(1774,'wp-content/plugins/wordfence/images/flags/ee.png'),(1775,'wp-content/plugins/wordfence/images/flags/eg.png'),(1776,'wp-content/plugins/wordfence/images/flags/eh.png'),(1777,'wp-content/plugins/wordfence/images/flags/england.png'),(1778,'wp-content/plugins/wordfence/images/flags/er.png'),(1779,'wp-content/plugins/wordfence/images/flags/es.png'),(1780,'wp-content/plugins/wordfence/images/flags/et.png'),(1781,'wp-content/plugins/wordfence/images/flags/eu.png'),(1782,'wp-content/plugins/wordfence/images/flags/fam.png'),(1783,'wp-content/plugins/wordfence/images/flags/fi.png'),(1784,'wp-content/plugins/wordfence/images/flags/fj.png'),(1785,'wp-content/plugins/wordfence/images/flags/fk.png'),(1786,'wp-content/plugins/wordfence/images/flags/fm.png'),(1787,'wp-content/plugins/wordfence/images/flags/fo.png'),(1788,'wp-content/plugins/wordfence/images/flags/fr.png'),(1789,'wp-content/plugins/wordfence/images/flags/ga.png'),(1790,'wp-content/plugins/wordfence/images/flags/gb.png'),(1791,'wp-content/plugins/wordfence/images/flags/gd.png'),(1792,'wp-content/plugins/wordfence/images/flags/ge.png'),(1793,'wp-content/plugins/wordfence/images/flags/gf.png'),(1794,'wp-content/plugins/wordfence/images/flags/gg.png'),(1795,'wp-content/plugins/wordfence/images/flags/gh.png'),(1796,'wp-content/plugins/wordfence/images/flags/gi.png'),(1797,'wp-content/plugins/wordfence/images/flags/gl.png'),(1798,'wp-content/plugins/wordfence/images/flags/gm.png'),(1799,'wp-content/plugins/wordfence/images/flags/gn.png'),(1800,'wp-content/plugins/wordfence/images/flags/gp.png'),(1801,'wp-content/plugins/wordfence/images/flags/gq.png'),(1802,'wp-content/plugins/wordfence/images/flags/gr.png'),(1803,'wp-content/plugins/wordfence/images/flags/gs.png'),(1804,'wp-content/plugins/wordfence/images/flags/gt.png'),(1805,'wp-content/plugins/wordfence/images/flags/gu.png'),(1806,'wp-content/plugins/wordfence/images/flags/gw.png'),(1807,'wp-content/plugins/wordfence/images/flags/gy.png'),(1808,'wp-content/plugins/wordfence/images/flags/hk.png'),(1809,'wp-content/plugins/wordfence/images/flags/hn.png'),(1810,'wp-content/plugins/wordfence/images/flags/hr.png'),(1811,'wp-content/plugins/wordfence/images/flags/ht.png'),(1812,'wp-content/plugins/wordfence/images/flags/hu.png'),(1813,'wp-content/plugins/wordfence/images/flags/id.png'),(1814,'wp-content/plugins/wordfence/images/flags/ie.png'),(1815,'wp-content/plugins/wordfence/images/flags/il.png'),(1816,'wp-content/plugins/wordfence/images/flags/im.png'),(1817,'wp-content/plugins/wordfence/images/flags/in.png'),(1818,'wp-content/plugins/wordfence/images/flags/io.png'),(1819,'wp-content/plugins/wordfence/images/flags/iq.png'),(1820,'wp-content/plugins/wordfence/images/flags/ir.png'),(1821,'wp-content/plugins/wordfence/images/flags/is.png'),(1822,'wp-content/plugins/wordfence/images/flags/it.png'),(1823,'wp-content/plugins/wordfence/images/flags/je.png'),(1824,'wp-content/plugins/wordfence/images/flags/jm.png'),(1825,'wp-content/plugins/wordfence/images/flags/jo.png'),(1826,'wp-content/plugins/wordfence/images/flags/jp.png'),(1827,'wp-content/plugins/wordfence/images/flags/ke.png'),(1828,'wp-content/plugins/wordfence/images/flags/kg.png'),(1829,'wp-content/plugins/wordfence/images/flags/kh.png'),(1830,'wp-content/plugins/wordfence/images/flags/ki.png'),(1831,'wp-content/plugins/wordfence/images/flags/km.png'),(1832,'wp-content/plugins/wordfence/images/flags/kn.png'),(1833,'wp-content/plugins/wordfence/images/flags/kp.png'),(1834,'wp-content/plugins/wordfence/images/flags/kr.png'),(1835,'wp-content/plugins/wordfence/images/flags/kw.png'),(1836,'wp-content/plugins/wordfence/images/flags/ky.png'),(1837,'wp-content/plugins/wordfence/images/flags/kz.png'),(1838,'wp-content/plugins/wordfence/images/flags/la.png'),(1839,'wp-content/plugins/wordfence/images/flags/lb.png'),(1840,'wp-content/plugins/wordfence/images/flags/lc.png'),(1841,'wp-content/plugins/wordfence/images/flags/li.png'),(1842,'wp-content/plugins/wordfence/images/flags/lk.png'),(1843,'wp-content/plugins/wordfence/images/flags/lr.png'),(1844,'wp-content/plugins/wordfence/images/flags/ls.png'),(1845,'wp-content/plugins/wordfence/images/flags/lt.png'),(1846,'wp-content/plugins/wordfence/images/flags/lu.png'),(1847,'wp-content/plugins/wordfence/images/flags/lv.png'),(1848,'wp-content/plugins/wordfence/images/flags/ly.png'),(1849,'wp-content/plugins/wordfence/images/flags/ma.png'),(1850,'wp-content/plugins/wordfence/images/flags/mc.png'),(1851,'wp-content/plugins/wordfence/images/flags/md.png'),(1852,'wp-content/plugins/wordfence/images/flags/me.png'),(1853,'wp-content/plugins/wordfence/images/flags/mg.png'),(1854,'wp-content/plugins/wordfence/images/flags/mh.png'),(1855,'wp-content/plugins/wordfence/images/flags/mk.png'),(1856,'wp-content/plugins/wordfence/images/flags/ml.png'),(1857,'wp-content/plugins/wordfence/images/flags/mm.png'),(1858,'wp-content/plugins/wordfence/images/flags/mn.png'),(1859,'wp-content/plugins/wordfence/images/flags/mo.png'),(1860,'wp-content/plugins/wordfence/images/flags/mp.png'),(1861,'wp-content/plugins/wordfence/images/flags/mq.png'),(1862,'wp-content/plugins/wordfence/images/flags/mr.png'),(1863,'wp-content/plugins/wordfence/images/flags/ms.png'),(1864,'wp-content/plugins/wordfence/images/flags/mt.png'),(1865,'wp-content/plugins/wordfence/images/flags/mu.png'),(1866,'wp-content/plugins/wordfence/images/flags/mv.png'),(1867,'wp-content/plugins/wordfence/images/flags/mw.png'),(1868,'wp-content/plugins/wordfence/images/flags/mx.png'),(1869,'wp-content/plugins/wordfence/images/flags/my.png'),(1870,'wp-content/plugins/wordfence/images/flags/mz.png'),(1871,'wp-content/plugins/wordfence/images/flags/na.png'),(1872,'wp-content/plugins/wordfence/images/flags/nc.png'),(1873,'wp-content/plugins/wordfence/images/flags/ne.png'),(1874,'wp-content/plugins/wordfence/images/flags/nf.png'),(1875,'wp-content/plugins/wordfence/images/flags/ng.png'),(1876,'wp-content/plugins/wordfence/images/flags/ni.png'),(1877,'wp-content/plugins/wordfence/images/flags/nl.png'),(1878,'wp-content/plugins/wordfence/images/flags/no.png'),(1879,'wp-content/plugins/wordfence/images/flags/np.png'),(1880,'wp-content/plugins/wordfence/images/flags/nr.png'),(1881,'wp-content/plugins/wordfence/images/flags/nu.png'),(1882,'wp-content/plugins/wordfence/images/flags/nz.png'),(1883,'wp-content/plugins/wordfence/images/flags/om.png'),(1884,'wp-content/plugins/wordfence/images/flags/pa.png'),(1885,'wp-content/plugins/wordfence/images/flags/pe.png'),(1886,'wp-content/plugins/wordfence/images/flags/pf.png'),(1887,'wp-content/plugins/wordfence/images/flags/pg.png'),(1888,'wp-content/plugins/wordfence/images/flags/ph.png'),(1889,'wp-content/plugins/wordfence/images/flags/pk.png'),(1890,'wp-content/plugins/wordfence/images/flags/pl.png'),(1891,'wp-content/plugins/wordfence/images/flags/pm.png'),(1892,'wp-content/plugins/wordfence/images/flags/pn.png'),(1893,'wp-content/plugins/wordfence/images/flags/pr.png'),(1894,'wp-content/plugins/wordfence/images/flags/ps.png'),(1895,'wp-content/plugins/wordfence/images/flags/pt.png'),(1896,'wp-content/plugins/wordfence/images/flags/pw.png'),(1897,'wp-content/plugins/wordfence/images/flags/py.png'),(1898,'wp-content/plugins/wordfence/images/flags/qa.png'),(1899,'wp-content/plugins/wordfence/images/flags/re.png'),(1900,'wp-content/plugins/wordfence/images/flags/ro.png'),(1901,'wp-content/plugins/wordfence/images/flags/rs.png'),(1902,'wp-content/plugins/wordfence/images/flags/ru.png'),(1903,'wp-content/plugins/wordfence/images/flags/rw.png'),(1904,'wp-content/plugins/wordfence/images/flags/sa.png'),(1905,'wp-content/plugins/wordfence/images/flags/sb.png'),(1906,'wp-content/plugins/wordfence/images/flags/sc.png'),(1907,'wp-content/plugins/wordfence/images/flags/scotland.png'),(1908,'wp-content/plugins/wordfence/images/flags/sd.png'),(1909,'wp-content/plugins/wordfence/images/flags/se.png'),(1910,'wp-content/plugins/wordfence/images/flags/sg.png'),(1911,'wp-content/plugins/wordfence/images/flags/sh.png'),(1912,'wp-content/plugins/wordfence/images/flags/si.png'),(1913,'wp-content/plugins/wordfence/images/flags/sk.png'),(1914,'wp-content/plugins/wordfence/images/flags/sl.png'),(1915,'wp-content/plugins/wordfence/images/flags/sm.png'),(1916,'wp-content/plugins/wordfence/images/flags/sn.png'),(1917,'wp-content/plugins/wordfence/images/flags/so.png'),(1918,'wp-content/plugins/wordfence/images/flags/sprite-des-128.png'),(1919,'wp-content/plugins/wordfence/images/flags/sprite-des-16.png'),(1920,'wp-content/plugins/wordfence/images/flags/sprite-des-256.png'),(1921,'wp-content/plugins/wordfence/images/flags/sprite-des-32.png'),(1922,'wp-content/plugins/wordfence/images/flags/sprite-des-64.png'),(1923,'wp-content/plugins/wordfence/images/flags/sprite-des.png'),(1924,'wp-content/plugins/wordfence/images/flags/sprite-des2.png'),(1925,'wp-content/plugins/wordfence/images/flags/sprite2.css'),(1926,'wp-content/plugins/wordfence/images/flags/sprite2.png'),(1927,'wp-content/plugins/wordfence/images/flags/sr.png'),(1928,'wp-content/plugins/wordfence/images/flags/st.png'),(1929,'wp-content/plugins/wordfence/images/flags/sv.png'),(1930,'wp-content/plugins/wordfence/images/flags/sy.png'),(1931,'wp-content/plugins/wordfence/images/flags/sz.png'),(1932,'wp-content/plugins/wordfence/images/flags/tc.png'),(1933,'wp-content/plugins/wordfence/images/flags/td.png'),(1934,'wp-content/plugins/wordfence/images/flags/tf.png'),(1935,'wp-content/plugins/wordfence/images/flags/tg.png'),(1936,'wp-content/plugins/wordfence/images/flags/th.png'),(1937,'wp-content/plugins/wordfence/images/flags/tj.png'),(1938,'wp-content/plugins/wordfence/images/flags/tk.png'),(1939,'wp-content/plugins/wordfence/images/flags/tl.png'),(1940,'wp-content/plugins/wordfence/images/flags/tm.png'),(1941,'wp-content/plugins/wordfence/images/flags/tn.png'),(1942,'wp-content/plugins/wordfence/images/flags/to.png'),(1943,'wp-content/plugins/wordfence/images/flags/tr.png'),(1944,'wp-content/plugins/wordfence/images/flags/tt.png'),(1945,'wp-content/plugins/wordfence/images/flags/tv.png'),(1946,'wp-content/plugins/wordfence/images/flags/tw.png'),(1947,'wp-content/plugins/wordfence/images/flags/tz.png'),(1948,'wp-content/plugins/wordfence/images/flags/ua.png'),(1949,'wp-content/plugins/wordfence/images/flags/ug.png'),(1950,'wp-content/plugins/wordfence/images/flags/uk.png'),(1951,'wp-content/plugins/wordfence/images/flags/um.png'),(1952,'wp-content/plugins/wordfence/images/flags/us.png'),(1953,'wp-content/plugins/wordfence/images/flags/uy.png'),(1954,'wp-content/plugins/wordfence/images/flags/uz.png'),(1955,'wp-content/plugins/wordfence/images/flags/va.png'),(1956,'wp-content/plugins/wordfence/images/flags/vc.png'),(1957,'wp-content/plugins/wordfence/images/flags/ve.png'),(1958,'wp-content/plugins/wordfence/images/flags/vg.png'),(1959,'wp-content/plugins/wordfence/images/flags/vi.png'),(1960,'wp-content/plugins/wordfence/images/flags/vn.png'),(1961,'wp-content/plugins/wordfence/images/flags/vu.png'),(1962,'wp-content/plugins/wordfence/images/flags/wales.png'),(1963,'wp-content/plugins/wordfence/images/flags/wf.png'),(1964,'wp-content/plugins/wordfence/images/flags/ws.png'),(1965,'wp-content/plugins/wordfence/images/flags/xk.png'),(1966,'wp-content/plugins/wordfence/images/flags/ye.png'),(1967,'wp-content/plugins/wordfence/images/flags/yt.png'),(1968,'wp-content/plugins/wordfence/images/flags/za.png'),(1969,'wp-content/plugins/wordfence/images/flags/zm.png'),(1970,'wp-content/plugins/wordfence/images/flags/zw.png'),(1971,'wp-content/plugins/wordfence/images/forward_disabled.jpg'),(1972,'wp-content/plugins/wordfence/images/forward_enabled.jpg'),(1973,'wp-content/plugins/wordfence/images/help.png'),(1974,'wp-content/plugins/wordfence/images/icons/ajax24.gif'),(1975,'wp-content/plugins/wordfence/images/icons/ajax3.gif'),(1976,'wp-content/plugins/wordfence/images/icons/ajaxRed16.gif'),(1977,'wp-content/plugins/wordfence/images/icons/ajaxScan.gif'),(1978,'wp-content/plugins/wordfence/images/icons/ajaxWhite32x32.gif'),(1979,'wp-content/plugins/wordfence/images/icons/arrow_refresh.png'),(1980,'wp-content/plugins/wordfence/images/icons/bullet_yellow.png'),(1981,'wp-content/plugins/wordfence/images/icons/email_go.png'),(1982,'wp-content/plugins/wordfence/images/icons/error128.png'),(1983,'wp-content/plugins/wordfence/images/icons/magnifier.png'),(1984,'wp-content/plugins/wordfence/images/icons/tick128.png'),(1985,'wp-content/plugins/wordfence/images/icons/warning128.png'),(1986,'wp-content/plugins/wordfence/images/lightbox-controls.png'),(1987,'wp-content/plugins/wordfence/images/loading.gif'),(1988,'wp-content/plugins/wordfence/images/loading_background.png'),(1989,'wp-content/plugins/wordfence/images/loading_large.gif'),(1990,'wp-content/plugins/wordfence/images/logo.png'),(1991,'wp-content/plugins/wordfence/images/rr_premium.png'),(1992,'wp-content/plugins/wordfence/images/rr_sitecleaning.jpg'),(1993,'wp-content/plugins/wordfence/images/sort_asc.gif'),(1994,'wp-content/plugins/wordfence/images/sort_asc_disabled.gif'),(1995,'wp-content/plugins/wordfence/images/sort_both.gif'),(1996,'wp-content/plugins/wordfence/images/sort_desc.gif'),(1997,'wp-content/plugins/wordfence/images/sort_desc_disabled.gif'),(1998,'wp-content/plugins/wordfence/images/wordfence-logo-16x16.png'),(1999,'wp-content/plugins/wordfence/images/wordfence-logo-32x32.png'),(2000,'wp-content/plugins/wordfence/images/wordfence-logo-64x64.png'),(2001,'wp-content/plugins/wordfence/images/wordfenceFalcon.png'),(2002,'wp-content/plugins/wordfence/images/wordfenceFalconEngineSmall.png'),(2003,'wp-content/plugins/wordfence/images/wordfenceFalconSmall.png'),(2004,'wp-content/plugins/wordfence/index.php'),(2005,'wp-content/plugins/wordfence/js/admin.ajaxWatcher.js'),(2006,'wp-content/plugins/wordfence/js/admin.js'),(2007,'wp-content/plugins/wordfence/js/admin.liveTraffic.js'),(2008,'wp-content/plugins/wordfence/js/jquery-ui-timepicker-addon.js'),(2009,'wp-content/plugins/wordfence/js/jquery.colorbox-min.js'),(2010,'wp-content/plugins/wordfence/js/jquery.dataTables.min.js'),(2011,'wp-content/plugins/wordfence/js/jquery.qrcode.min.js'),(2012,'wp-content/plugins/wordfence/js/jquery.tmpl.min.js'),(2013,'wp-content/plugins/wordfence/js/jquery.tools.min.js'),(2014,'wp-content/plugins/wordfence/js/knockout-3.3.0.js'),(2015,'wp-content/plugins/wordfence/js/perf.js'),(2016,'wp-content/plugins/wordfence/js/select2.min.js'),(2017,'wp-content/plugins/wordfence/js/tourTip.js'),(2018,'wp-content/plugins/wordfence/lib/.htaccess'),(2019,'wp-content/plugins/wordfence/lib/Diff/Renderer/Abstract.php'),(2020,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/Array.php'),(2021,'wp-content/plugins/wordfence/lib/Diff/Renderer/Html/SideBySide.php'),(2022,'wp-content/plugins/wordfence/lib/Diff/SequenceMatcher.php'),(2023,'wp-content/plugins/wordfence/lib/Diff.php'),(2024,'wp-content/plugins/wordfence/lib/GeoIP.dat'),(2025,'wp-content/plugins/wordfence/lib/GeoIPv6.dat'),(2026,'wp-content/plugins/wordfence/lib/IPTraf.php'),(2027,'wp-content/plugins/wordfence/lib/compat.php'),(2028,'wp-content/plugins/wordfence/lib/conntest.php'),(2029,'wp-content/plugins/wordfence/lib/cronview.php'),(2030,'wp-content/plugins/wordfence/lib/dashboard.php'),(2031,'wp-content/plugins/wordfence/lib/dbview.php'),(2032,'wp-content/plugins/wordfence/lib/diffResult.php'),(2033,'wp-content/plugins/wordfence/lib/email_genericAlert.php'),(2034,'wp-content/plugins/wordfence/lib/email_newIssues.php'),(2035,'wp-content/plugins/wordfence/lib/email_passwdChanged.php'),(2036,'wp-content/plugins/wordfence/lib/email_pleaseChangePasswd.php'),(2037,'wp-content/plugins/wordfence/lib/email_unlockRequest.php'),(2038,'wp-content/plugins/wordfence/lib/menuHeader.php'),(2039,'wp-content/plugins/wordfence/lib/menu_activity.php'),(2040,'wp-content/plugins/wordfence/lib/menu_blockedIPs.php'),(2041,'wp-content/plugins/wordfence/lib/menu_countryBlocking.php'),(2042,'wp-content/plugins/wordfence/lib/menu_diagnostic.php'),(2043,'wp-content/plugins/wordfence/lib/menu_options.php'),(2044,'wp-content/plugins/wordfence/lib/menu_passwd.php'),(2045,'wp-content/plugins/wordfence/lib/menu_rangeBlocking.php'),(2046,'wp-content/plugins/wordfence/lib/menu_scan.php'),(2047,'wp-content/plugins/wordfence/lib/menu_scanSchedule.php'),(2048,'wp-content/plugins/wordfence/lib/menu_sitePerf.php'),(2049,'wp-content/plugins/wordfence/lib/menu_sitePerfStats.php'),(2050,'wp-content/plugins/wordfence/lib/menu_twoFactor.php'),(2051,'wp-content/plugins/wordfence/lib/menu_waf.php'),(2052,'wp-content/plugins/wordfence/lib/menu_whois.php'),(2053,'wp-content/plugins/wordfence/lib/pageTitle.php'),(2054,'wp-content/plugins/wordfence/lib/schedWeekEntry.php'),(2055,'wp-content/plugins/wordfence/lib/sysinfo.php'),(2056,'wp-content/plugins/wordfence/lib/unknownFiles.php'),(2057,'wp-content/plugins/wordfence/lib/viewFullActivityLog.php'),(2058,'wp-content/plugins/wordfence/lib/wf503.php'),(2059,'wp-content/plugins/wordfence/lib/wfAPI.php'),(2060,'wp-content/plugins/wordfence/lib/wfAction.php'),(2061,'wp-content/plugins/wordfence/lib/wfActivityReport.php'),(2062,'wp-content/plugins/wordfence/lib/wfArray.php'),(2063,'wp-content/plugins/wordfence/lib/wfBrowscap.php'),(2064,'wp-content/plugins/wordfence/lib/wfBrowscapCache.php'),(2065,'wp-content/plugins/wordfence/lib/wfBulkCountries.php'),(2066,'wp-content/plugins/wordfence/lib/wfCache.php'),(2067,'wp-content/plugins/wordfence/lib/wfConfig.php'),(2068,'wp-content/plugins/wordfence/lib/wfCountryMap.php'),(2069,'wp-content/plugins/wordfence/lib/wfCrawl.php'),(2070,'wp-content/plugins/wordfence/lib/wfCrypt.php'),(2071,'wp-content/plugins/wordfence/lib/wfDB.php'),(2072,'wp-content/plugins/wordfence/lib/wfDiagnostic.php'),(2073,'wp-content/plugins/wordfence/lib/wfDict.php'),(2074,'wp-content/plugins/wordfence/lib/wfDirectoryIterator.php'),(2075,'wp-content/plugins/wordfence/lib/wfGeoIP.php'),(2076,'wp-content/plugins/wordfence/lib/wfHelperBin.php'),(2077,'wp-content/plugins/wordfence/lib/wfHelperString.php'),(2078,'wp-content/plugins/wordfence/lib/wfIPWhitelist.php'),(2079,'wp-content/plugins/wordfence/lib/wfIssues.php'),(2080,'wp-content/plugins/wordfence/lib/wfLockedOut.php'),(2081,'wp-content/plugins/wordfence/lib/wfLog.php'),(2082,'wp-content/plugins/wordfence/lib/wfMD5BloomFilter.php'),(2083,'wp-content/plugins/wordfence/lib/wfRate.php'),(2084,'wp-content/plugins/wordfence/lib/wfScan.php'),(2085,'wp-content/plugins/wordfence/lib/wfScanEngine.php'),(2086,'wp-content/plugins/wordfence/lib/wfSchema.php'),(2087,'wp-content/plugins/wordfence/lib/wfUnlockMsg.php'),(2088,'wp-content/plugins/wordfence/lib/wfUpdateCheck.php'),(2089,'wp-content/plugins/wordfence/lib/wfUtils.php'),(2090,'wp-content/plugins/wordfence/lib/wfView.php'),(2091,'wp-content/plugins/wordfence/lib/wfViewResult.php'),(2092,'wp-content/plugins/wordfence/lib/wordfenceClass.php'),(2093,'wp-content/plugins/wordfence/lib/wordfenceConstants.php'),(2094,'wp-content/plugins/wordfence/lib/wordfenceHash.php'),(2095,'wp-content/plugins/wordfence/lib/wordfenceScanner.php'),(2096,'wp-content/plugins/wordfence/lib/wordfenceURLHoover.php'),(2097,'wp-content/plugins/wordfence/readme.txt'),(2098,'wp-content/plugins/wordfence/tmp/.htaccess'),(2099,'wp-content/plugins/wordfence/vendor/autoload.php'),(2100,'wp-content/plugins/wordfence/vendor/composer/ClassLoader.php'),(2101,'wp-content/plugins/wordfence/vendor/composer/LICENSE'),(2102,'wp-content/plugins/wordfence/vendor/composer/autoload_classmap.php'),(2103,'wp-content/plugins/wordfence/vendor/composer/autoload_namespaces.php'),(2104,'wp-content/plugins/wordfence/vendor/composer/autoload_psr4.php'),(2105,'wp-content/plugins/wordfence/vendor/composer/autoload_real.php'),(2106,'wp-content/plugins/wordfence/vendor/composer/installed.json'),(2107,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/bootstrap-sample.php'),(2108,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/cacert.pem'),(2109,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/init.php'),(2110,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/config.php'),(2111,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/http.php'),(2112,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/json.php'),(2113,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/lexer.php'),(2114,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/parser.php'),(2115,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/parser/sqli.php'),(2116,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/request.php'),(2117,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/rules.php'),(2118,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage/file.php'),(2119,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/storage.php'),(2120,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/utils.php'),(2121,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/view.php'),(2122,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/lib/waf.php'),(2123,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/rules.key'),(2124,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403-roadblock.php'),(2125,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/403.php'),(2126,'wp-content/plugins/wordfence/vendor/wordfence/wf-waf/src/views/503.php'),(2127,'wp-content/plugins/wordfence/views/marketing/rightrail.php'),(2128,'wp-content/plugins/wordfence/views/reports/activity-report-email-inline.php'),(2129,'wp-content/plugins/wordfence/views/reports/activity-report-email.php'),(2130,'wp-content/plugins/wordfence/views/reports/activity-report.php'),(2131,'wp-content/plugins/wordfence/views/waf/debug.php'),(2132,'wp-content/plugins/wordfence/waf/bootstrap.php'),(2133,'wp-content/plugins/wordfence/waf/wfWAFGeoIP.php'),(2134,'wp-content/plugins/wordfence/waf/wfWAFIPBlocksController.php'),(2135,'wp-content/plugins/wordfence/waf/wfWAFUserIPRange.php'),(2136,'wp-content/plugins/wordfence/wordfence.php'),(2137,'wp-content/themes/Divi/404.php'),(2138,'wp-content/themes/Divi/comments.php'),(2139,'wp-content/themes/Divi/core/admin/includes/assets.php'),(2140,'wp-content/themes/Divi/core/admin/includes/cache.php'),(2141,'wp-content/themes/Divi/core/admin/includes/class-cache.php'),(2142,'wp-content/themes/Divi/core/admin/includes/class-portability.php'),(2143,'wp-content/themes/Divi/core/admin/includes/class-updates.php'),(2144,'wp-content/themes/Divi/core/admin/includes/portability.php'),(2145,'wp-content/themes/Divi/core/admin/js/core.js'),(2146,'wp-content/themes/Divi/core/admin/js/portability.js'),(2147,'wp-content/themes/Divi/core/components.php'),(2148,'wp-content/themes/Divi/core/functions.php'),(2149,'wp-content/themes/Divi/core/init.php'),(2150,'wp-content/themes/Divi/core/updates_init.php'),(2151,'wp-content/themes/Divi/epanel/core_functions.php'),(2152,'wp-content/themes/Divi/epanel/custom_functions.php'),(2153,'wp-content/themes/Divi/epanel/google-fonts/et_google_fonts.js'),(2154,'wp-content/themes/Divi/epanel/js/checkbox.js'),(2155,'wp-content/themes/Divi/epanel/js/colorpicker.js'),(2156,'wp-content/themes/Divi/epanel/js/custom_uploader.js'),(2157,'wp-content/themes/Divi/epanel/js/eye.js'),(2158,'wp-content/themes/Divi/epanel/js/functions-init.js'),(2159,'wp-content/themes/Divi/epanel/js/layout.js'),(2160,'wp-content/themes/Divi/epanel/js/wp-color-picker-alpha.min.js'),(2161,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.dev.js'),(2162,'wp-content/themes/Divi/epanel/shortcodes/js/editor_plugin.js'),(2163,'wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.dev.js'),(2164,'wp-content/themes/Divi/epanel/shortcodes/js/et_shortcodes_frontend.js'),(2165,'wp-content/themes/Divi/epanel/shortcodes/shortcodes.php'),(2166,'wp-content/themes/Divi/et-pagebuilder/et-pagebuilder.php'),(2167,'wp-content/themes/Divi/footer.php'),(2168,'wp-content/themes/Divi/functions.php'),(2169,'wp-content/themes/Divi/header.php'),(2170,'wp-content/themes/Divi/includes/builder/ab-testing.php'),(2171,'wp-content/themes/Divi/includes/builder/class-et-builder-element.php'),(2172,'wp-content/themes/Divi/includes/builder/class-et-global-settings.php'),(2173,'wp-content/themes/Divi/includes/builder/comments_template.php'),(2174,'wp-content/themes/Divi/includes/builder/core.php'),(2175,'wp-content/themes/Divi/includes/builder/framework.php'),(2176,'wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/scripts/failure_notice.js'),(2177,'wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/vendors/plugins/emoticons/plugin.min.js'),(2178,'wp-content/themes/Divi/includes/builder/frontend-builder/app/assets/vendors/tinymce.min.js'),(2179,'wp-content/themes/Divi/includes/builder/frontend-builder/app/bundle.js'),(2180,'wp-content/themes/Divi/includes/builder/frontend-builder/assets.php'),(2181,'wp-content/themes/Divi/includes/builder/frontend-builder/helpers.php'),(2182,'wp-content/themes/Divi/includes/builder/frontend-builder/init.php'),(2183,'wp-content/themes/Divi/includes/builder/frontend-builder/view.php'),(2184,'wp-content/themes/Divi/includes/builder/functions.php'),(2185,'wp-content/themes/Divi/includes/builder/layouts.php'),(2186,'wp-content/themes/Divi/includes/builder/main-modules.php'),(2187,'wp-content/themes/Divi/includes/builder/main-structure-elements.php'),(2188,'wp-content/themes/Divi/includes/builder/scripts/admin_global_functions.js'),(2189,'wp-content/themes/Divi/includes/builder/scripts/advanced_options.js'),(2190,'wp-content/themes/Divi/includes/builder/scripts/builder.js'),(2191,'wp-content/themes/Divi/includes/builder/scripts/cache_notice.js'),(2192,'wp-content/themes/Divi/includes/builder/scripts/ext/chart.min.js'),(2193,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.10.4.custom.min.js'),(2194,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-1.11.4.custom.min.js'),(2195,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery-ui-timepicker-addon.js'),(2196,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.minicolors.js'),(2197,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.tablesorter.min.js'),(2198,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.validate.js'),(2199,'wp-content/themes/Divi/includes/builder/scripts/ext/jquery.visible.min.js'),(2200,'wp-content/themes/Divi/includes/builder/scripts/ext/widgets.js'),(2201,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.js'),(2202,'wp-content/themes/Divi/includes/builder/scripts/ext/wp-color-picker-alpha.min.js'),(2203,'wp-content/themes/Divi/includes/builder/scripts/failure_notice.js'),(2204,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-global-functions.js'),(2205,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-preview.js'),(2206,'wp-content/themes/Divi/includes/builder/scripts/frontend-builder-scripts.js'),(2207,'wp-content/themes/Divi/includes/builder/scripts/jquery.easypiechart.js'),(2208,'wp-content/themes/Divi/includes/builder/scripts/jquery.fitvids.js'),(2209,'wp-content/themes/Divi/includes/builder/scripts/jquery.hashchange.js'),(2210,'wp-content/themes/Divi/includes/builder/scripts/jquery.magnific-popup.js'),(2211,'wp-content/themes/Divi/includes/builder/scripts/jquery.mobile.custom.min.js'),(2212,'wp-content/themes/Divi/includes/builder/scripts/library_scripts.js'),(2213,'wp-content/themes/Divi/includes/builder/scripts/reset_memory_limit_increase_setting.js'),(2214,'wp-content/themes/Divi/includes/builder/scripts/roles_admin.js'),(2215,'wp-content/themes/Divi/includes/builder/scripts/salvattore.min.js'),(2216,'wp-content/themes/Divi/includes/builder/scripts/waypoints.min.js'),(2217,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber.php'),(2218,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_api.php'),(2219,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_collection.php'),(2220,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_entry.php'),(2221,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_entry_data_array.php'),(2222,'wp-content/themes/Divi/includes/builder/subscription/aweber/aweber_response.php'),(2223,'wp-content/themes/Divi/includes/builder/subscription/aweber/curl_object.php'),(2224,'wp-content/themes/Divi/includes/builder/subscription/aweber/curl_response.php'),(2225,'wp-content/themes/Divi/includes/builder/subscription/aweber/exceptions.php'),(2226,'wp-content/themes/Divi/includes/builder/subscription/aweber/oauth_adapter.php'),(2227,'wp-content/themes/Divi/includes/builder/subscription/aweber/oauth_application.php'),(2228,'wp-content/themes/Divi/includes/builder/subscription/mailchimp/mailchimp.php'),(2229,'wp-content/themes/Divi/includes/builder/template-preview.php'),(2230,'wp-content/themes/Divi/includes/functions/choices.php'),(2231,'wp-content/themes/Divi/includes/functions/installation.php'),(2232,'wp-content/themes/Divi/includes/functions/sanitization.php'),(2233,'wp-content/themes/Divi/includes/functions/sidebars.php'),(2234,'wp-content/themes/Divi/includes/functions/tutorials.php'),(2235,'wp-content/themes/Divi/includes/navigation.php'),(2236,'wp-content/themes/Divi/includes/no-results.php'),(2237,'wp-content/themes/Divi/includes/social_icons.php'),(2238,'wp-content/themes/Divi/includes/widgets/widget-about.php'),(2239,'wp-content/themes/Divi/includes/widgets/widget-ads.php'),(2240,'wp-content/themes/Divi/includes/widgets/widget-adsense.php'),(2241,'wp-content/themes/Divi/includes/widgets.php'),(2242,'wp-content/themes/Divi/index.php'),(2243,'wp-content/themes/Divi/js/admin_post_settings.js'),(2244,'wp-content/themes/Divi/js/custom.js'),(2245,'wp-content/themes/Divi/js/html5.js'),(2246,'wp-content/themes/Divi/js/menu_fix.js'),(2247,'wp-content/themes/Divi/js/smoothscroll.js'),(2248,'wp-content/themes/Divi/js/theme-customizer-controls.js'),(2249,'wp-content/themes/Divi/js/theme-customizer.js'),(2250,'wp-content/themes/Divi/options_divi.php'),(2251,'wp-content/themes/Divi/page-template-blank.php'),(2252,'wp-content/themes/Divi/page.php'),(2253,'wp-content/themes/Divi/post_thumbnails_divi.php'),(2254,'wp-content/themes/Divi/sidebar-footer.php'),(2255,'wp-content/themes/Divi/sidebar.php'),(2256,'wp-content/themes/Divi/single-et_pb_layout.php'),(2257,'wp-content/themes/Divi/single-project.php'),(2258,'wp-content/themes/Divi/single.php'),(2259,'wp-content/themes/index.php'),(2260,'wp-content/updraft/index.html'),(2261,'wp-content/wflogs/attack-data.php'),(2262,'wp-content/wflogs/config.php'),(2263,'wp-content/wflogs/ips.php'),(2264,'wp-content/wflogs/rules.php'),(2265,'wp-cron.php'),(2266,'wp-includes/ID3/getid3.lib.php'),(2267,'wp-includes/ID3/getid3.php'),(2268,'wp-includes/ID3/license.commercial.txt'),(2269,'wp-includes/ID3/license.txt'),(2270,'wp-includes/ID3/module.audio-video.asf.php'),(2271,'wp-includes/ID3/module.audio-video.flv.php'),(2272,'wp-includes/ID3/module.audio-video.matroska.php'),(2273,'wp-includes/ID3/module.audio-video.quicktime.php'),(2274,'wp-includes/ID3/module.audio-video.riff.php'),(2275,'wp-includes/ID3/module.audio.ac3.php'),(2276,'wp-includes/ID3/module.audio.dts.php'),(2277,'wp-includes/ID3/module.audio.flac.php'),(2278,'wp-includes/ID3/module.audio.mp3.php'),(2279,'wp-includes/ID3/module.audio.ogg.php'),(2280,'wp-includes/ID3/module.tag.apetag.php'),(2281,'wp-includes/ID3/module.tag.id3v1.php'),(2282,'wp-includes/ID3/module.tag.id3v2.php'),(2283,'wp-includes/ID3/module.tag.lyrics3.php'),(2284,'wp-includes/ID3/readme.txt'),(2285,'wp-includes/Requests/Auth/Basic.php'),(2286,'wp-includes/Requests/Auth.php'),(2287,'wp-includes/Requests/Cookie/Jar.php'),(2288,'wp-includes/Requests/Cookie.php'),(2289,'wp-includes/Requests/Exception/HTTP/304.php'),(2290,'wp-includes/Requests/Exception/HTTP/305.php'),(2291,'wp-includes/Requests/Exception/HTTP/306.php'),(2292,'wp-includes/Requests/Exception/HTTP/400.php'),(2293,'wp-includes/Requests/Exception/HTTP/401.php'),(2294,'wp-includes/Requests/Exception/HTTP/402.php'),(2295,'wp-includes/Requests/Exception/HTTP/403.php'),(2296,'wp-includes/Requests/Exception/HTTP/404.php'),(2297,'wp-includes/Requests/Exception/HTTP/405.php'),(2298,'wp-includes/Requests/Exception/HTTP/406.php'),(2299,'wp-includes/Requests/Exception/HTTP/407.php'),(2300,'wp-includes/Requests/Exception/HTTP/408.php'),(2301,'wp-includes/Requests/Exception/HTTP/409.php'),(2302,'wp-includes/Requests/Exception/HTTP/410.php'),(2303,'wp-includes/Requests/Exception/HTTP/411.php'),(2304,'wp-includes/Requests/Exception/HTTP/412.php'),(2305,'wp-includes/Requests/Exception/HTTP/413.php'),(2306,'wp-includes/Requests/Exception/HTTP/414.php'),(2307,'wp-includes/Requests/Exception/HTTP/415.php'),(2308,'wp-includes/Requests/Exception/HTTP/416.php'),(2309,'wp-includes/Requests/Exception/HTTP/417.php'),(2310,'wp-includes/Requests/Exception/HTTP/418.php'),(2311,'wp-includes/Requests/Exception/HTTP/428.php'),(2312,'wp-includes/Requests/Exception/HTTP/429.php'),(2313,'wp-includes/Requests/Exception/HTTP/431.php'),(2314,'wp-includes/Requests/Exception/HTTP/500.php'),(2315,'wp-includes/Requests/Exception/HTTP/501.php'),(2316,'wp-includes/Requests/Exception/HTTP/502.php'),(2317,'wp-includes/Requests/Exception/HTTP/503.php'),(2318,'wp-includes/Requests/Exception/HTTP/504.php'),(2319,'wp-includes/Requests/Exception/HTTP/505.php'),(2320,'wp-includes/Requests/Exception/HTTP/511.php'),(2321,'wp-includes/Requests/Exception/HTTP/Unknown.php'),(2322,'wp-includes/Requests/Exception/HTTP.php'),(2323,'wp-includes/Requests/Exception/Transport/cURL.php'),(2324,'wp-includes/Requests/Exception/Transport.php'),(2325,'wp-includes/Requests/Exception.php'),(2326,'wp-includes/Requests/Hooker.php'),(2327,'wp-includes/Requests/Hooks.php'),(2328,'wp-includes/Requests/IDNAEncoder.php'),(2329,'wp-includes/Requests/IPv6.php'),(2330,'wp-includes/Requests/IRI.php'),(2331,'wp-includes/Requests/Proxy/HTTP.php'),(2332,'wp-includes/Requests/Proxy.php'),(2333,'wp-includes/Requests/Response/Headers.php'),(2334,'wp-includes/Requests/Response.php'),(2335,'wp-includes/Requests/SSL.php'),(2336,'wp-includes/Requests/Session.php'),(2337,'wp-includes/Requests/Transport/cURL.php'),(2338,'wp-includes/Requests/Transport/fsockopen.php'),(2339,'wp-includes/Requests/Transport.php'),(2340,'wp-includes/Requests/Utility/CaseInsensitiveDictionary.php'),(2341,'wp-includes/Requests/Utility/FilteredIterator.php'),(2342,'wp-includes/SimplePie/Author.php'),(2343,'wp-includes/SimplePie/Cache/Base.php'),(2344,'wp-includes/SimplePie/Cache/DB.php'),(2345,'wp-includes/SimplePie/Cache/File.php'),(2346,'wp-includes/SimplePie/Cache/Memcache.php'),(2347,'wp-includes/SimplePie/Cache/MySQL.php'),(2348,'wp-includes/SimplePie/Cache.php'),(2349,'wp-includes/SimplePie/Caption.php'),(2350,'wp-includes/SimplePie/Category.php'),(2351,'wp-includes/SimplePie/Content/Type/Sniffer.php'),(2352,'wp-includes/SimplePie/Copyright.php'),(2353,'wp-includes/SimplePie/Core.php'),(2354,'wp-includes/SimplePie/Credit.php'),(2355,'wp-includes/SimplePie/Decode/HTML/Entities.php'),(2356,'wp-includes/SimplePie/Enclosure.php'),(2357,'wp-includes/SimplePie/Exception.php'),(2358,'wp-includes/SimplePie/File.php'),(2359,'wp-includes/SimplePie/HTTP/Parser.php'),(2360,'wp-includes/SimplePie/IRI.php'),(2361,'wp-includes/SimplePie/Item.php'),(2362,'wp-includes/SimplePie/Locator.php'),(2363,'wp-includes/SimplePie/Misc.php'),(2364,'wp-includes/SimplePie/Net/IPv6.php'),(2365,'wp-includes/SimplePie/Parse/Date.php'),(2366,'wp-includes/SimplePie/Parser.php'),(2367,'wp-includes/SimplePie/Rating.php'),(2368,'wp-includes/SimplePie/Registry.php'),(2369,'wp-includes/SimplePie/Restriction.php'),(2370,'wp-includes/SimplePie/Sanitize.php'),(2371,'wp-includes/SimplePie/Source.php'),(2372,'wp-includes/SimplePie/XML/Declaration/Parser.php'),(2373,'wp-includes/SimplePie/gzdecode.php'),(2374,'wp-includes/Text/Diff/Engine/native.php'),(2375,'wp-includes/Text/Diff/Engine/shell.php'),(2376,'wp-includes/Text/Diff/Engine/string.php'),(2377,'wp-includes/Text/Diff/Engine/xdiff.php'),(2378,'wp-includes/Text/Diff/Renderer/inline.php'),(2379,'wp-includes/Text/Diff/Renderer.php'),(2380,'wp-includes/Text/Diff.php'),(2381,'wp-includes/admin-bar.php'),(2382,'wp-includes/atomlib.php'),(2383,'wp-includes/author-template.php'),(2384,'wp-includes/bookmark-template.php'),(2385,'wp-includes/bookmark.php'),(2386,'wp-includes/cache.php'),(2387,'wp-includes/canonical.php'),(2388,'wp-includes/capabilities.php'),(2389,'wp-includes/category-template.php'),(2390,'wp-includes/category.php'),(2391,'wp-includes/certificates/ca-bundle.crt'),(2392,'wp-includes/class-IXR.php'),(2393,'wp-includes/class-feed.php'),(2394,'wp-includes/class-http.php'),(2395,'wp-includes/class-json.php'),(2396,'wp-includes/class-oembed.php'),(2397,'wp-includes/class-phpass.php'),(2398,'wp-includes/class-phpmailer.php'),(2399,'wp-includes/class-pop3.php'),(2400,'wp-includes/class-requests.php'),(2401,'wp-includes/class-simplepie.php'),(2402,'wp-includes/class-smtp.php'),(2403,'wp-includes/class-snoopy.php'),(2404,'wp-includes/class-walker-category-dropdown.php'),(2405,'wp-includes/class-walker-category.php'),(2406,'wp-includes/class-walker-comment.php'),(2407,'wp-includes/class-walker-nav-menu.php'),(2408,'wp-includes/class-walker-page-dropdown.php'),(2409,'wp-includes/class-walker-page.php'),(2410,'wp-includes/class-wp-admin-bar.php'),(2411,'wp-includes/class-wp-ajax-response.php'),(2412,'wp-includes/class-wp-comment-query.php'),(2413,'wp-includes/class-wp-comment.php'),(2414,'wp-includes/class-wp-customize-control.php'),(2415,'wp-includes/class-wp-customize-manager.php'),(2416,'wp-includes/class-wp-customize-nav-menus.php'),(2417,'wp-includes/class-wp-customize-panel.php'),(2418,'wp-includes/class-wp-customize-section.php'),(2419,'wp-includes/class-wp-customize-setting.php'),(2420,'wp-includes/class-wp-customize-widgets.php'),(2421,'wp-includes/class-wp-editor.php'),(2422,'wp-includes/class-wp-embed.php'),(2423,'wp-includes/class-wp-error.php'),(2424,'wp-includes/class-wp-http-cookie.php'),(2425,'wp-includes/class-wp-http-curl.php'),(2426,'wp-includes/class-wp-http-encoding.php'),(2427,'wp-includes/class-wp-http-ixr-client.php'),(2428,'wp-includes/class-wp-http-proxy.php'),(2429,'wp-includes/class-wp-http-requests-response.php'),(2430,'wp-includes/class-wp-http-response.php'),(2431,'wp-includes/class-wp-http-streams.php'),(2432,'wp-includes/class-wp-image-editor-gd.php'),(2433,'wp-includes/class-wp-image-editor-imagick.php'),(2434,'wp-includes/class-wp-image-editor.php'),(2435,'wp-includes/class-wp-locale.php'),(2436,'wp-includes/class-wp-meta-query.php'),(2437,'wp-includes/class-wp-metadata-lazyloader.php'),(2438,'wp-includes/class-wp-network-query.php'),(2439,'wp-includes/class-wp-network.php'),(2440,'wp-includes/class-wp-oembed-controller.php'),(2441,'wp-includes/class-wp-post-type.php'),(2442,'wp-includes/class-wp-post.php'),(2443,'wp-includes/class-wp-rewrite.php'),(2444,'wp-includes/class-wp-role.php'),(2445,'wp-includes/class-wp-roles.php'),(2446,'wp-includes/class-wp-site-query.php'),(2447,'wp-includes/class-wp-site.php'),(2448,'wp-includes/class-wp-tax-query.php'),(2449,'wp-includes/class-wp-term-query.php'),(2450,'wp-includes/class-wp-term.php'),(2451,'wp-includes/class-wp-theme.php'),(2452,'wp-includes/class-wp-user-query.php'),(2453,'wp-includes/class-wp-user.php'),(2454,'wp-includes/class-wp-walker.php'),(2455,'wp-includes/class-wp-widget-factory.php'),(2456,'wp-includes/class-wp-widget.php'),(2457,'wp-includes/class-wp-xmlrpc-server.php'),(2458,'wp-includes/class-wp.php'),(2459,'wp-includes/class.wp-dependencies.php'),(2460,'wp-includes/class.wp-scripts.php'),(2461,'wp-includes/class.wp-styles.php'),(2462,'wp-includes/comment-template.php'),(2463,'wp-includes/comment.php'),(2464,'wp-includes/compat.php'),(2465,'wp-includes/cron.php'),(2466,'wp-includes/css/admin-bar-rtl.css'),(2467,'wp-includes/css/admin-bar-rtl.min.css'),(2468,'wp-includes/css/admin-bar.css'),(2469,'wp-includes/css/admin-bar.min.css'),(2470,'wp-includes/css/buttons-rtl.css'),(2471,'wp-includes/css/buttons-rtl.min.css'),(2472,'wp-includes/css/buttons.css'),(2473,'wp-includes/css/buttons.min.css'),(2474,'wp-includes/css/customize-preview.css'),(2475,'wp-includes/css/customize-preview.min.css'),(2476,'wp-includes/css/dashicons.css'),(2477,'wp-includes/css/dashicons.min.css'),(2478,'wp-includes/css/editor-rtl.css'),(2479,'wp-includes/css/editor-rtl.min.css'),(2480,'wp-includes/css/editor.css'),(2481,'wp-includes/css/editor.min.css'),(2482,'wp-includes/css/jquery-ui-dialog-rtl.css'),(2483,'wp-includes/css/jquery-ui-dialog-rtl.min.css'),(2484,'wp-includes/css/jquery-ui-dialog.css'),(2485,'wp-includes/css/jquery-ui-dialog.min.css'),(2486,'wp-includes/css/media-views-rtl.css'),(2487,'wp-includes/css/media-views-rtl.min.css'),(2488,'wp-includes/css/media-views.css'),(2489,'wp-includes/css/media-views.min.css'),(2490,'wp-includes/css/wp-auth-check-rtl.css'),(2491,'wp-includes/css/wp-auth-check-rtl.min.css'),(2492,'wp-includes/css/wp-auth-check.css'),(2493,'wp-includes/css/wp-auth-check.min.css'),(2494,'wp-includes/css/wp-embed-template-ie.css'),(2495,'wp-includes/css/wp-embed-template-ie.min.css'),(2496,'wp-includes/css/wp-embed-template.css'),(2497,'wp-includes/css/wp-embed-template.min.css'),(2498,'wp-includes/css/wp-pointer-rtl.css'),(2499,'wp-includes/css/wp-pointer-rtl.min.css'),(2500,'wp-includes/css/wp-pointer.css'),(2501,'wp-includes/css/wp-pointer.min.css'),(2502,'wp-includes/customize/class-wp-customize-background-image-control.php'),(2503,'wp-includes/customize/class-wp-customize-background-image-setting.php'),(2504,'wp-includes/customize/class-wp-customize-color-control.php'),(2505,'wp-includes/customize/class-wp-customize-cropped-image-control.php'),(2506,'wp-includes/customize/class-wp-customize-filter-setting.php'),(2507,'wp-includes/customize/class-wp-customize-header-image-control.php'),(2508,'wp-includes/customize/class-wp-customize-header-image-setting.php'),(2509,'wp-includes/customize/class-wp-customize-image-control.php'),(2510,'wp-includes/customize/class-wp-customize-media-control.php'),(2511,'wp-includes/customize/class-wp-customize-nav-menu-auto-add-control.php'),(2512,'wp-includes/customize/class-wp-customize-nav-menu-control.php'),(2513,'wp-includes/customize/class-wp-customize-nav-menu-item-control.php'),(2514,'wp-includes/customize/class-wp-customize-nav-menu-item-setting.php'),(2515,'wp-includes/customize/class-wp-customize-nav-menu-location-control.php'),(2516,'wp-includes/customize/class-wp-customize-nav-menu-name-control.php'),(2517,'wp-includes/customize/class-wp-customize-nav-menu-section.php'),(2518,'wp-includes/customize/class-wp-customize-nav-menu-setting.php'),(2519,'wp-includes/customize/class-wp-customize-nav-menus-panel.php'),(2520,'wp-includes/customize/class-wp-customize-new-menu-control.php'),(2521,'wp-includes/customize/class-wp-customize-new-menu-section.php'),(2522,'wp-includes/customize/class-wp-customize-partial.php'),(2523,'wp-includes/customize/class-wp-customize-selective-refresh.php'),(2524,'wp-includes/customize/class-wp-customize-sidebar-section.php'),(2525,'wp-includes/customize/class-wp-customize-site-icon-control.php'),(2526,'wp-includes/customize/class-wp-customize-theme-control.php'),(2527,'wp-includes/customize/class-wp-customize-themes-section.php'),(2528,'wp-includes/customize/class-wp-customize-upload-control.php'),(2529,'wp-includes/customize/class-wp-widget-area-customize-control.php'),(2530,'wp-includes/customize/class-wp-widget-form-customize-control.php'),(2531,'wp-includes/date.php'),(2532,'wp-includes/default-constants.php'),(2533,'wp-includes/default-filters.php'),(2534,'wp-includes/default-widgets.php'),(2535,'wp-includes/deprecated.php'),(2536,'wp-includes/embed-template.php'),(2537,'wp-includes/embed.php'),(2538,'wp-includes/feed-atom-comments.php'),(2539,'wp-includes/feed-atom.php'),(2540,'wp-includes/feed-rdf.php'),(2541,'wp-includes/feed-rss.php'),(2542,'wp-includes/feed-rss2-comments.php'),(2543,'wp-includes/feed-rss2.php'),(2544,'wp-includes/feed.php'),(2545,'wp-includes/fonts/dashicons.eot'),(2546,'wp-includes/fonts/dashicons.svg'),(2547,'wp-includes/fonts/dashicons.ttf'),(2548,'wp-includes/fonts/dashicons.woff'),(2549,'wp-includes/formatting.php'),(2550,'wp-includes/functions.php'),(2551,'wp-includes/functions.wp-scripts.php'),(2552,'wp-includes/functions.wp-styles.php'),(2553,'wp-includes/general-template.php'),(2554,'wp-includes/http.php'),(2555,'wp-includes/images/admin-bar-sprite-2x.png'),(2556,'wp-includes/images/admin-bar-sprite.png'),(2557,'wp-includes/images/arrow-pointer-blue-2x.png'),(2558,'wp-includes/images/arrow-pointer-blue.png'),(2559,'wp-includes/images/blank.gif'),(2560,'wp-includes/images/crystal/archive.png'),(2561,'wp-includes/images/crystal/audio.png'),(2562,'wp-includes/images/crystal/code.png'),(2563,'wp-includes/images/crystal/default.png'),(2564,'wp-includes/images/crystal/document.png'),(2565,'wp-includes/images/crystal/interactive.png'),(2566,'wp-includes/images/crystal/license.txt'),(2567,'wp-includes/images/crystal/spreadsheet.png'),(2568,'wp-includes/images/crystal/text.png'),(2569,'wp-includes/images/crystal/video.png'),(2570,'wp-includes/images/down_arrow-2x.gif'),(2571,'wp-includes/images/down_arrow.gif'),(2572,'wp-includes/images/icon-pointer-flag-2x.png'),(2573,'wp-includes/images/icon-pointer-flag.png'),(2574,'wp-includes/images/media/archive.png'),(2575,'wp-includes/images/media/audio.png'),(2576,'wp-includes/images/media/code.png'),(2577,'wp-includes/images/media/default.png'),(2578,'wp-includes/images/media/document.png'),(2579,'wp-includes/images/media/interactive.png'),(2580,'wp-includes/images/media/spreadsheet.png'),(2581,'wp-includes/images/media/text.png'),(2582,'wp-includes/images/media/video.png'),(2583,'wp-includes/images/rss-2x.png'),(2584,'wp-includes/images/rss.png'),(2585,'wp-includes/images/smilies/frownie.png'),(2586,'wp-includes/images/smilies/icon_arrow.gif'),(2587,'wp-includes/images/smilies/icon_biggrin.gif'),(2588,'wp-includes/images/smilies/icon_confused.gif'),(2589,'wp-includes/images/smilies/icon_cool.gif'),(2590,'wp-includes/images/smilies/icon_cry.gif'),(2591,'wp-includes/images/smilies/icon_eek.gif'),(2592,'wp-includes/images/smilies/icon_evil.gif'),(2593,'wp-includes/images/smilies/icon_exclaim.gif'),(2594,'wp-includes/images/smilies/icon_idea.gif'),(2595,'wp-includes/images/smilies/icon_lol.gif'),(2596,'wp-includes/images/smilies/icon_mad.gif'),(2597,'wp-includes/images/smilies/icon_mrgreen.gif'),(2598,'wp-includes/images/smilies/icon_neutral.gif'),(2599,'wp-includes/images/smilies/icon_question.gif'),(2600,'wp-includes/images/smilies/icon_razz.gif'),(2601,'wp-includes/images/smilies/icon_redface.gif'),(2602,'wp-includes/images/smilies/icon_rolleyes.gif'),(2603,'wp-includes/images/smilies/icon_sad.gif'),(2604,'wp-includes/images/smilies/icon_smile.gif'),(2605,'wp-includes/images/smilies/icon_surprised.gif'),(2606,'wp-includes/images/smilies/icon_twisted.gif'),(2607,'wp-includes/images/smilies/icon_wink.gif'),(2608,'wp-includes/images/smilies/mrgreen.png'),(2609,'wp-includes/images/smilies/rolleyes.png'),(2610,'wp-includes/images/smilies/simple-smile.png'),(2611,'wp-includes/images/spinner-2x.gif'),(2612,'wp-includes/images/spinner.gif'),(2613,'wp-includes/images/toggle-arrow-2x.png'),(2614,'wp-includes/images/toggle-arrow.png'),(2615,'wp-includes/images/uploader-icons-2x.png'),(2616,'wp-includes/images/uploader-icons.png'),(2617,'wp-includes/images/w-logo-blue.png'),(2618,'wp-includes/images/wlw/wp-comments.png'),(2619,'wp-includes/images/wlw/wp-icon.png'),(2620,'wp-includes/images/wlw/wp-watermark.png'),(2621,'wp-includes/images/wpicons-2x.png'),(2622,'wp-includes/images/wpicons.png'),(2623,'wp-includes/images/wpspin-2x.gif'),(2624,'wp-includes/images/wpspin.gif'),(2625,'wp-includes/images/xit-2x.gif'),(2626,'wp-includes/images/xit.gif'),(2627,'wp-includes/js/admin-bar.js'),(2628,'wp-includes/js/admin-bar.min.js'),(2629,'wp-includes/js/autosave.js'),(2630,'wp-includes/js/autosave.min.js'),(2631,'wp-includes/js/backbone.min.js'),(2632,'wp-includes/js/colorpicker.js'),(2633,'wp-includes/js/colorpicker.min.js'),(2634,'wp-includes/js/comment-reply.js'),(2635,'wp-includes/js/comment-reply.min.js'),(2636,'wp-includes/js/crop/cropper.css'),(2637,'wp-includes/js/crop/cropper.js'),(2638,'wp-includes/js/crop/marqueeHoriz.gif'),(2639,'wp-includes/js/crop/marqueeVert.gif'),(2640,'wp-includes/js/customize-base.js'),(2641,'wp-includes/js/customize-base.min.js'),(2642,'wp-includes/js/customize-loader.js'),(2643,'wp-includes/js/customize-loader.min.js'),(2644,'wp-includes/js/customize-models.js'),(2645,'wp-includes/js/customize-models.min.js'),(2646,'wp-includes/js/customize-preview-nav-menus.js'),(2647,'wp-includes/js/customize-preview-nav-menus.min.js'),(2648,'wp-includes/js/customize-preview-widgets.js'),(2649,'wp-includes/js/customize-preview-widgets.min.js'),(2650,'wp-includes/js/customize-preview.js'),(2651,'wp-includes/js/customize-preview.min.js'),(2652,'wp-includes/js/customize-selective-refresh.js'),(2653,'wp-includes/js/customize-selective-refresh.min.js'),(2654,'wp-includes/js/customize-views.js'),(2655,'wp-includes/js/customize-views.min.js'),(2656,'wp-includes/js/heartbeat.js'),(2657,'wp-includes/js/heartbeat.min.js'),(2658,'wp-includes/js/hoverIntent.js'),(2659,'wp-includes/js/hoverIntent.min.js'),(2660,'wp-includes/js/imagesloaded.min.js'),(2661,'wp-includes/js/imgareaselect/border-anim-h.gif'),(2662,'wp-includes/js/imgareaselect/border-anim-v.gif'),(2663,'wp-includes/js/imgareaselect/imgareaselect.css'),(2664,'wp-includes/js/imgareaselect/jquery.imgareaselect.js'),(2665,'wp-includes/js/imgareaselect/jquery.imgareaselect.min.js'),(2666,'wp-includes/js/jcrop/Jcrop.gif'),(2667,'wp-includes/js/jcrop/jquery.Jcrop.min.css'),(2668,'wp-includes/js/jcrop/jquery.Jcrop.min.js'),(2669,'wp-includes/js/jquery/jquery-migrate.js'),(2670,'wp-includes/js/jquery/jquery-migrate.min.js'),(2671,'wp-includes/js/jquery/jquery.color.min.js'),(2672,'wp-includes/js/jquery/jquery.form.js'),(2673,'wp-includes/js/jquery/jquery.form.min.js'),(2674,'wp-includes/js/jquery/jquery.hotkeys.js'),(2675,'wp-includes/js/jquery/jquery.hotkeys.min.js'),(2676,'wp-includes/js/jquery/jquery.js'),(2677,'wp-includes/js/jquery/jquery.masonry.min.js'),(2678,'wp-includes/js/jquery/jquery.query.js'),(2679,'wp-includes/js/jquery/jquery.schedule.js'),(2680,'wp-includes/js/jquery/jquery.serialize-object.js'),(2681,'wp-includes/js/jquery/jquery.table-hotkeys.js'),(2682,'wp-includes/js/jquery/jquery.table-hotkeys.min.js'),(2683,'wp-includes/js/jquery/jquery.ui.touch-punch.js'),(2684,'wp-includes/js/jquery/suggest.js'),(2685,'wp-includes/js/jquery/suggest.min.js'),(2686,'wp-includes/js/jquery/ui/accordion.min.js'),(2687,'wp-includes/js/jquery/ui/autocomplete.min.js'),(2688,'wp-includes/js/jquery/ui/button.min.js'),(2689,'wp-includes/js/jquery/ui/core.min.js'),(2690,'wp-includes/js/jquery/ui/datepicker.min.js'),(2691,'wp-includes/js/jquery/ui/dialog.min.js'),(2692,'wp-includes/js/jquery/ui/draggable.min.js'),(2693,'wp-includes/js/jquery/ui/droppable.min.js'),(2694,'wp-includes/js/jquery/ui/effect-blind.min.js'),(2695,'wp-includes/js/jquery/ui/effect-bounce.min.js'),(2696,'wp-includes/js/jquery/ui/effect-clip.min.js'),(2697,'wp-includes/js/jquery/ui/effect-drop.min.js'),(2698,'wp-includes/js/jquery/ui/effect-explode.min.js'),(2699,'wp-includes/js/jquery/ui/effect-fade.min.js'),(2700,'wp-includes/js/jquery/ui/effect-fold.min.js'),(2701,'wp-includes/js/jquery/ui/effect-highlight.min.js'),(2702,'wp-includes/js/jquery/ui/effect-puff.min.js'),(2703,'wp-includes/js/jquery/ui/effect-pulsate.min.js'),(2704,'wp-includes/js/jquery/ui/effect-scale.min.js'),(2705,'wp-includes/js/jquery/ui/effect-shake.min.js'),(2706,'wp-includes/js/jquery/ui/effect-size.min.js'),(2707,'wp-includes/js/jquery/ui/effect-slide.min.js'),(2708,'wp-includes/js/jquery/ui/effect-transfer.min.js'),(2709,'wp-includes/js/jquery/ui/effect.min.js'),(2710,'wp-includes/js/jquery/ui/menu.min.js'),(2711,'wp-includes/js/jquery/ui/mouse.min.js'),(2712,'wp-includes/js/jquery/ui/position.min.js'),(2713,'wp-includes/js/jquery/ui/progressbar.min.js'),(2714,'wp-includes/js/jquery/ui/resizable.min.js'),(2715,'wp-includes/js/jquery/ui/selectable.min.js'),(2716,'wp-includes/js/jquery/ui/selectmenu.min.js'),(2717,'wp-includes/js/jquery/ui/slider.min.js'),(2718,'wp-includes/js/jquery/ui/sortable.min.js'),(2719,'wp-includes/js/jquery/ui/spinner.min.js'),(2720,'wp-includes/js/jquery/ui/tabs.min.js'),(2721,'wp-includes/js/jquery/ui/tooltip.min.js'),(2722,'wp-includes/js/jquery/ui/widget.min.js'),(2723,'wp-includes/js/json2.js'),(2724,'wp-includes/js/json2.min.js'),(2725,'wp-includes/js/masonry.min.js'),(2726,'wp-includes/js/mce-view.js'),(2727,'wp-includes/js/mce-view.min.js'),(2728,'wp-includes/js/media-audiovideo.js'),(2729,'wp-includes/js/media-audiovideo.min.js'),(2730,'wp-includes/js/media-editor.js'),(2731,'wp-includes/js/media-editor.min.js'),(2732,'wp-includes/js/media-grid.js'),(2733,'wp-includes/js/media-grid.min.js'),(2734,'wp-includes/js/media-models.js'),(2735,'wp-includes/js/media-models.min.js'),(2736,'wp-includes/js/media-views.js'),(2737,'wp-includes/js/media-views.min.js'),(2738,'wp-includes/js/mediaelement/background.png'),(2739,'wp-includes/js/mediaelement/bigplay.png'),(2740,'wp-includes/js/mediaelement/bigplay.svg'),(2741,'wp-includes/js/mediaelement/controls.png'),(2742,'wp-includes/js/mediaelement/controls.svg'),(2743,'wp-includes/js/mediaelement/flashmediaelement.swf'),(2744,'wp-includes/js/mediaelement/froogaloop.min.js'),(2745,'wp-includes/js/mediaelement/jumpforward.png'),(2746,'wp-includes/js/mediaelement/loading.gif'),(2747,'wp-includes/js/mediaelement/mediaelement-and-player.min.js'),(2748,'wp-includes/js/mediaelement/mediaelementplayer.min.css'),(2749,'wp-includes/js/mediaelement/silverlightmediaelement.xap'),(2750,'wp-includes/js/mediaelement/skipback.png'),(2751,'wp-includes/js/mediaelement/wp-mediaelement.css'),(2752,'wp-includes/js/mediaelement/wp-mediaelement.js'),(2753,'wp-includes/js/mediaelement/wp-mediaelement.min.css'),(2754,'wp-includes/js/mediaelement/wp-mediaelement.min.js'),(2755,'wp-includes/js/mediaelement/wp-playlist.js'),(2756,'wp-includes/js/mediaelement/wp-playlist.min.js'),(2757,'wp-includes/js/plupload/handlers.js'),(2758,'wp-includes/js/plupload/handlers.min.js'),(2759,'wp-includes/js/plupload/license.txt'),(2760,'wp-includes/js/plupload/plupload.flash.swf'),(2761,'wp-includes/js/plupload/plupload.full.min.js'),(2762,'wp-includes/js/plupload/plupload.silverlight.xap'),(2763,'wp-includes/js/plupload/wp-plupload.js'),(2764,'wp-includes/js/plupload/wp-plupload.min.js'),(2765,'wp-includes/js/quicktags.js'),(2766,'wp-includes/js/quicktags.min.js'),(2767,'wp-includes/js/shortcode.js'),(2768,'wp-includes/js/shortcode.min.js'),(2769,'wp-includes/js/swfobject.js'),(2770,'wp-includes/js/swfupload/handlers.js'),(2771,'wp-includes/js/swfupload/handlers.min.js'),(2772,'wp-includes/js/swfupload/license.txt'),(2773,'wp-includes/js/swfupload/plugins/swfupload.cookies.js'),(2774,'wp-includes/js/swfupload/plugins/swfupload.queue.js'),(2775,'wp-includes/js/swfupload/plugins/swfupload.speed.js'),(2776,'wp-includes/js/swfupload/plugins/swfupload.swfobject.js'),(2777,'wp-includes/js/swfupload/swfupload.js'),(2778,'wp-includes/js/swfupload/swfupload.swf'),(2779,'wp-includes/js/thickbox/loadingAnimation.gif'),(2780,'wp-includes/js/thickbox/macFFBgHack.png'),(2781,'wp-includes/js/thickbox/thickbox.css'),(2782,'wp-includes/js/thickbox/thickbox.js'),(2783,'wp-includes/js/tinymce/langs/wp-langs-en.js'),(2784,'wp-includes/js/tinymce/license.txt'),(2785,'wp-includes/js/tinymce/plugins/charmap/plugin.js'),(2786,'wp-includes/js/tinymce/plugins/charmap/plugin.min.js'),(2787,'wp-includes/js/tinymce/plugins/colorpicker/plugin.js'),(2788,'wp-includes/js/tinymce/plugins/colorpicker/plugin.min.js'),(2789,'wp-includes/js/tinymce/plugins/compat3x/css/dialog.css'),(2790,'wp-includes/js/tinymce/plugins/compat3x/plugin.js'),(2791,'wp-includes/js/tinymce/plugins/compat3x/plugin.min.js'),(2792,'wp-includes/js/tinymce/plugins/directionality/plugin.js'),(2793,'wp-includes/js/tinymce/plugins/directionality/plugin.min.js'),(2794,'wp-includes/js/tinymce/plugins/fullscreen/plugin.js'),(2795,'wp-includes/js/tinymce/plugins/fullscreen/plugin.min.js'),(2796,'wp-includes/js/tinymce/plugins/hr/plugin.js'),(2797,'wp-includes/js/tinymce/plugins/hr/plugin.min.js'),(2798,'wp-includes/js/tinymce/plugins/image/plugin.js'),(2799,'wp-includes/js/tinymce/plugins/image/plugin.min.js'),(2800,'wp-includes/js/tinymce/plugins/lists/plugin.js'),(2801,'wp-includes/js/tinymce/plugins/lists/plugin.min.js'),(2802,'wp-includes/js/tinymce/plugins/media/moxieplayer.swf'),(2803,'wp-includes/js/tinymce/plugins/media/plugin.js'),(2804,'wp-includes/js/tinymce/plugins/media/plugin.min.js'),(2805,'wp-includes/js/tinymce/plugins/paste/plugin.js'),(2806,'wp-includes/js/tinymce/plugins/paste/plugin.min.js'),(2807,'wp-includes/js/tinymce/plugins/tabfocus/plugin.js'),(2808,'wp-includes/js/tinymce/plugins/tabfocus/plugin.min.js'),(2809,'wp-includes/js/tinymce/plugins/textcolor/plugin.js'),(2810,'wp-includes/js/tinymce/plugins/textcolor/plugin.min.js'),(2811,'wp-includes/js/tinymce/plugins/wordpress/plugin.js'),(2812,'wp-includes/js/tinymce/plugins/wordpress/plugin.min.js'),(2813,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.js'),(2814,'wp-includes/js/tinymce/plugins/wpautoresize/plugin.min.js'),(2815,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.js'),(2816,'wp-includes/js/tinymce/plugins/wpdialogs/plugin.min.js'),(2817,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.js'),(2818,'wp-includes/js/tinymce/plugins/wpeditimage/plugin.min.js'),(2819,'wp-includes/js/tinymce/plugins/wpembed/plugin.js'),(2820,'wp-includes/js/tinymce/plugins/wpembed/plugin.min.js'),(2821,'wp-includes/js/tinymce/plugins/wpemoji/plugin.js'),(2822,'wp-includes/js/tinymce/plugins/wpemoji/plugin.min.js'),(2823,'wp-includes/js/tinymce/plugins/wpgallery/plugin.js'),(2824,'wp-includes/js/tinymce/plugins/wpgallery/plugin.min.js'),(2825,'wp-includes/js/tinymce/plugins/wplink/plugin.js'),(2826,'wp-includes/js/tinymce/plugins/wplink/plugin.min.js'),(2827,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.js'),(2828,'wp-includes/js/tinymce/plugins/wptextpattern/plugin.min.js'),(2829,'wp-includes/js/tinymce/plugins/wpview/plugin.js'),(2830,'wp-includes/js/tinymce/plugins/wpview/plugin.min.js'),(2831,'wp-includes/js/tinymce/skins/lightgray/content.inline.min.css'),(2832,'wp-includes/js/tinymce/skins/lightgray/content.min.css'),(2833,'wp-includes/js/tinymce/skins/lightgray/fonts/readme.md'),(2834,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.eot'),(2835,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.json'),(2836,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.svg'),(2837,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.ttf'),(2838,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce-small.woff'),(2839,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.eot'),(2840,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.json'),(2841,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.svg'),(2842,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.ttf'),(2843,'wp-includes/js/tinymce/skins/lightgray/fonts/tinymce.woff'),(2844,'wp-includes/js/tinymce/skins/lightgray/img/anchor.gif'),(2845,'wp-includes/js/tinymce/skins/lightgray/img/loader.gif'),(2846,'wp-includes/js/tinymce/skins/lightgray/img/object.gif'),(2847,'wp-includes/js/tinymce/skins/lightgray/img/trans.gif'),(2848,'wp-includes/js/tinymce/skins/lightgray/skin.ie7.min.css'),(2849,'wp-includes/js/tinymce/skins/lightgray/skin.min.css'),(2850,'wp-includes/js/tinymce/skins/wordpress/images/audio.png'),(2851,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-edit.png'),(2852,'wp-includes/js/tinymce/skins/wordpress/images/dashicon-no.png'),(2853,'wp-includes/js/tinymce/skins/wordpress/images/embedded.png'),(2854,'wp-includes/js/tinymce/skins/wordpress/images/gallery-2x.png'),(2855,'wp-includes/js/tinymce/skins/wordpress/images/gallery.png'),(2856,'wp-includes/js/tinymce/skins/wordpress/images/more-2x.png'),(2857,'wp-includes/js/tinymce/skins/wordpress/images/more.png'),(2858,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak-2x.png'),(2859,'wp-includes/js/tinymce/skins/wordpress/images/pagebreak.png'),(2860,'wp-includes/js/tinymce/skins/wordpress/images/playlist-audio.png'),(2861,'wp-includes/js/tinymce/skins/wordpress/images/playlist-video.png'),(2862,'wp-includes/js/tinymce/skins/wordpress/images/video.png'),(2863,'wp-includes/js/tinymce/skins/wordpress/wp-content.css'),(2864,'wp-includes/js/tinymce/themes/inlite/theme.js'),(2865,'wp-includes/js/tinymce/themes/inlite/theme.min.js'),(2866,'wp-includes/js/tinymce/themes/modern/theme.js'),(2867,'wp-includes/js/tinymce/themes/modern/theme.min.js'),(2868,'wp-includes/js/tinymce/tiny_mce_popup.js'),(2869,'wp-includes/js/tinymce/tinymce.min.js'),(2870,'wp-includes/js/tinymce/utils/editable_selects.js'),(2871,'wp-includes/js/tinymce/utils/form_utils.js'),(2872,'wp-includes/js/tinymce/utils/mctabs.js'),(2873,'wp-includes/js/tinymce/utils/validate.js'),(2874,'wp-includes/js/tinymce/wp-tinymce.js.gz'),(2875,'wp-includes/js/tinymce/wp-tinymce.php'),(2876,'wp-includes/js/tw-sack.js'),(2877,'wp-includes/js/tw-sack.min.js'),(2878,'wp-includes/js/twemoji.js'),(2879,'wp-includes/js/twemoji.min.js'),(2880,'wp-includes/js/underscore.min.js'),(2881,'wp-includes/js/utils.js'),(2882,'wp-includes/js/utils.min.js'),(2883,'wp-includes/js/wp-a11y.js'),(2884,'wp-includes/js/wp-a11y.min.js'),(2885,'wp-includes/js/wp-ajax-response.js'),(2886,'wp-includes/js/wp-ajax-response.min.js'),(2887,'wp-includes/js/wp-auth-check.js'),(2888,'wp-includes/js/wp-auth-check.min.js'),(2889,'wp-includes/js/wp-backbone.js'),(2890,'wp-includes/js/wp-backbone.min.js'),(2891,'wp-includes/js/wp-embed-template.js'),(2892,'wp-includes/js/wp-embed-template.min.js'),(2893,'wp-includes/js/wp-embed.js'),(2894,'wp-includes/js/wp-embed.min.js'),(2895,'wp-includes/js/wp-emoji-loader.js'),(2896,'wp-includes/js/wp-emoji-loader.min.js'),(2897,'wp-includes/js/wp-emoji-release.min.js'),(2898,'wp-includes/js/wp-emoji.js'),(2899,'wp-includes/js/wp-emoji.min.js'),(2900,'wp-includes/js/wp-list-revisions.js'),(2901,'wp-includes/js/wp-list-revisions.min.js'),(2902,'wp-includes/js/wp-lists.js'),(2903,'wp-includes/js/wp-lists.min.js'),(2904,'wp-includes/js/wp-pointer.js'),(2905,'wp-includes/js/wp-pointer.min.js'),(2906,'wp-includes/js/wp-util.js'),(2907,'wp-includes/js/wp-util.min.js'),(2908,'wp-includes/js/wpdialog.js'),(2909,'wp-includes/js/wpdialog.min.js'),(2910,'wp-includes/js/wplink.js'),(2911,'wp-includes/js/wplink.min.js'),(2912,'wp-includes/js/zxcvbn-async.js'),(2913,'wp-includes/js/zxcvbn-async.min.js'),(2914,'wp-includes/js/zxcvbn.min.js'),(2915,'wp-includes/kses.php'),(2916,'wp-includes/l10n.php'),(2917,'wp-includes/link-template.php'),(2918,'wp-includes/load.php'),(2919,'wp-includes/locale.php'),(2920,'wp-includes/media-template.php'),(2921,'wp-includes/media.php'),(2922,'wp-includes/meta.php'),(2923,'wp-includes/ms-blogs.php'),(2924,'wp-includes/ms-default-constants.php'),(2925,'wp-includes/ms-default-filters.php'),(2926,'wp-includes/ms-deprecated.php'),(2927,'wp-includes/ms-files.php'),(2928,'wp-includes/ms-functions.php'),(2929,'wp-includes/ms-load.php'),(2930,'wp-includes/ms-settings.php'),(2931,'wp-includes/nav-menu-template.php'),(2932,'wp-includes/nav-menu.php'),(2933,'wp-includes/option.php'),(2934,'wp-includes/pluggable-deprecated.php'),(2935,'wp-includes/pluggable.php'),(2936,'wp-includes/plugin.php'),(2937,'wp-includes/pomo/entry.php'),(2938,'wp-includes/pomo/mo.php'),(2939,'wp-includes/pomo/po.php'),(2940,'wp-includes/pomo/streams.php'),(2941,'wp-includes/pomo/translations.php'),(2942,'wp-includes/post-formats.php'),(2943,'wp-includes/post-template.php'),(2944,'wp-includes/post-thumbnail-template.php'),(2945,'wp-includes/post.php'),(2946,'wp-includes/query.php'),(2947,'wp-includes/random_compat/byte_safe_strings.php'),(2948,'wp-includes/random_compat/cast_to_int.php'),(2949,'wp-includes/random_compat/error_polyfill.php'),(2950,'wp-includes/random_compat/random.php'),(2951,'wp-includes/random_compat/random_bytes_com_dotnet.php'),(2952,'wp-includes/random_compat/random_bytes_dev_urandom.php'),(2953,'wp-includes/random_compat/random_bytes_libsodium.php'),(2954,'wp-includes/random_compat/random_bytes_libsodium_legacy.php'),(2955,'wp-includes/random_compat/random_bytes_mcrypt.php'),(2956,'wp-includes/random_compat/random_bytes_openssl.php'),(2957,'wp-includes/random_compat/random_int.php'),(2958,'wp-includes/registration-functions.php'),(2959,'wp-includes/registration.php'),(2960,'wp-includes/rest-api/class-wp-rest-request.php'),(2961,'wp-includes/rest-api/class-wp-rest-response.php'),(2962,'wp-includes/rest-api/class-wp-rest-server.php'),(2963,'wp-includes/rest-api.php'),(2964,'wp-includes/revision.php'),(2965,'wp-includes/rewrite.php'),(2966,'wp-includes/rss-functions.php'),(2967,'wp-includes/rss.php'),(2968,'wp-includes/script-loader.php'),(2969,'wp-includes/session.php'),(2970,'wp-includes/shortcodes.php'),(2971,'wp-includes/taxonomy.php'),(2972,'wp-includes/template-loader.php'),(2973,'wp-includes/template.php'),(2974,'wp-includes/theme-compat/comments.php'),(2975,'wp-includes/theme-compat/embed-404.php'),(2976,'wp-includes/theme-compat/embed-content.php'),(2977,'wp-includes/theme-compat/embed.php'),(2978,'wp-includes/theme-compat/footer-embed.php'),(2979,'wp-includes/theme-compat/footer.php'),(2980,'wp-includes/theme-compat/header-embed.php'),(2981,'wp-includes/theme-compat/header.php'),(2982,'wp-includes/theme-compat/sidebar.php'),(2983,'wp-includes/theme.php'),(2984,'wp-includes/update.php'),(2985,'wp-includes/user.php'),(2986,'wp-includes/vars.php'),(2987,'wp-includes/version.php'),(2988,'wp-includes/widgets/class-wp-nav-menu-widget.php'),(2989,'wp-includes/widgets/class-wp-widget-archives.php'),(2990,'wp-includes/widgets/class-wp-widget-calendar.php'),(2991,'wp-includes/widgets/class-wp-widget-categories.php'),(2992,'wp-includes/widgets/class-wp-widget-links.php'),(2993,'wp-includes/widgets/class-wp-widget-meta.php'),(2994,'wp-includes/widgets/class-wp-widget-pages.php'),(2995,'wp-includes/widgets/class-wp-widget-recent-comments.php'),(2996,'wp-includes/widgets/class-wp-widget-recent-posts.php'),(2997,'wp-includes/widgets/class-wp-widget-rss.php'),(2998,'wp-includes/widgets/class-wp-widget-search.php'),(2999,'wp-includes/widgets/class-wp-widget-tag-cloud.php'),(3000,'wp-includes/widgets/class-wp-widget-text.php'),(3001,'wp-includes/widgets.php'),(3002,'wp-includes/wlwmanifest.xml'),(3003,'wp-includes/wp-db.php'),(3004,'wp-includes/wp-diff.php'),(3005,'wp-links-opml.php'),(3006,'wp-load.php'),(3007,'wp-login.php'),(3008,'wp-mail.php'),(3009,'wp-settings.php'),(3010,'wp-signup.php'),(3011,'wp-trackback.php'),(3012,'xmlrpc.php');
/*!40000 ALTER TABLE `wp_wfKnownFileList` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLeechers`
--

DROP TABLE IF EXISTS `wp_wfLeechers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLeechers` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLeechers`
--

LOCK TABLES `wp_wfLeechers` WRITE;
/*!40000 ALTER TABLE `wp_wfLeechers` DISABLE KEYS */;
INSERT INTO `wp_wfLeechers` VALUES (24672300,'\0\0\0\0\0\0\0\0\0\0D',2),(24672264,'\0\0\0\0\0\0\0\0\0\0Bb',1),(24672214,'\0\0\0\0\0\0\0\0\0\0L',1),(24670891,'\0\0\0\0\0\0\0\0\0\0L',1),(24670857,'\0\0\0\0\0\0\0\0\0\01<;',2),(24670799,'\0\0\0\0\0\0\0\0\0\07\'',1),(24670793,'\0\0\0\0\0\0\0\0\0\0O`',2),(24672213,'\0\0\0\0\0\0\0\0\0\0L',1),(24672168,'\0\0\0\0\0\0\0\0\0\07\'H',1),(24672093,'\0\0\0\0\0\0\0\0\0\0L\"',1),(24672092,'\0\0\0\0\0\0\0\0\0\0L',1),(24672055,'\0\0\0\0\0\0\0\0\0\0Bg',1),(24672035,'\0\0\0\0\0\0\0\0\0\0Bl',1),(24672030,'\0\0\0\0\0\0\0\0\0\0L',1),(24671972,'\0\0\0\0\0\0\0\0\0\0L ',1),(24671972,'\0\0\0\0\0\0\0\0\0\0L',1),(24670773,'\0\0\0\0\0\0\0\0\0\0L\r',1),(24670773,'\0\0\0\0\0\0\0\0\0\0L	',1),(24670674,'\0\0\0\0\0\0\0\0\0\0',1),(24670653,'\0\0\0\0\0\0\0\0\0\0L ',1),(24670652,'\0\0\0\0\0\0\0\0\0\0L',1),(24670533,'\0\0\0\0\0\0\0\0\0\0L',1),(24670532,'\0\0\0\0\0\0\0\0\0\0L',1),(24670474,'\0\0\0\0\0\0\0\0\0\0L',1),(24670473,'\0\0\0\0\0\0\0\0\0\0L',1),(24671913,'\0\0\0\0\0\0\0\0\0\0L',1),(24671913,'\0\0\0\0\0\0\0\0\0\0L',1),(24670458,'\0\0\0\0\0\0\0\0\0\0F\'j',1),(24670410,'\0\0\0\0\0\0\0\0\0\0L',1),(24670409,'\0\0\0\0\0\0\0\0\0\0L\"',1),(24670387,'\0\0\0\0\0\0\0\0\0\0L',1),(24671850,'\0\0\0\0\0\0\0\0\0\0L',1),(24671849,'\0\0\0\0\0\0\0\0\0\0L',1),(24672694,'\0\0\0\0\0\0\0\0\0\0L',1),(24671801,'\0\0\0\0\0\0\0\0\0\0՟&Z',1),(24671735,'\0\0\0\0\0\0\0\0\0\0L',1),(24670387,'\0\0\0\0\0\0\0\0\0\0L',1),(24670386,'\0\0\0\0\0\0\0\0\0\0\n	',1),(24670296,'\0\0\0\0\0\0\0\0\0\0L\r',1),(24670295,'\0\0\0\0\0\0\0\0\0\0L',1),(24670160,'\0\0\0\0\0\0\0\0\0\0\\9	',2),(24670129,'\0\0\0\0\0\0\0\0\0\0(M>',1),(24670117,'\0\0\0\0\0\0\0\0\0\07\'',1),(24670082,'\0\0\0\0\0\0\0\0\0\0pΈ`',1),(24670081,'\0\0\0\0\0\0\0\0\0\0pΈ`',1),(24670051,'\0\0\0\0\0\0\0\0\0\0L\Z',1),(24670050,'\0\0\0\0\0\0\0\0\0\0L',1),(24671734,'\0\0\0\0\0\0\0\0\0\0L',1),(24669976,'\0\0\0\0\0\0\0\0\0\05,',1),(24669934,'\0\0\0\0\0\0\0\0\0\0L',1),(24671712,'\0\0\0\0\0\0\0\0\0\0BU',1),(24669933,'\0\0\0\0\0\0\0\0\0\0L\r',1),(24669814,'\0\0\0\0\0\0\0\0\0\0L',1),(24669814,'\0\0\0\0\0\0\0\0\0\0L',1),(24669802,'\0\0\0\0\0\0\0\0\0\07\'',1),(24669780,'\0\0\0\0\0\0\0\0\0\0(ME',1),(24669729,'\0\0\0\0\0\0\0\0\0\0L',1),(24669692,'\0\0\0\0\0\0\0\0\0\07\'B',5),(24671669,'\0\0\0\0\0\0\0\0\0\0.\rg',1),(24671620,'\0\0\0\0\0\0\0\0\0\0A9',1),(24671620,'\0\0\0\0\0\0\0\0\0\0P',1),(24669692,'\0\0\0\0\0\0\0\0\0\07\'',8),(24669692,'\0\0\0\0\0\0\0\0\0\07\'',8),(24671610,'\0\0\0\0\0\0\0\0\0\0L',1),(24669691,'\0\0\0\0\0\0\0\0\0\07\'',4),(24671610,'\0\0\0\0\0\0\0\0\0\0L',1),(24671485,'\0\0\0\0\0\0\0\0\0\07\'H',1),(24671374,'\0\0\0\0\0\0\0\0\0\0L',1),(24671373,'\0\0\0\0\0\0\0\0\0\0L ',1),(24671254,'\0\0\0\0\0\0\0\0\0\0L',1),(24671253,'\0\0\0\0\0\0\0\0\0\0L',1),(24671212,'\0\0\0\0\0\0\0\0\0\0Ú',3),(24671211,'\0\0\0\0\0\0\0\0\0\0Ú',1),(24671155,'\0\0\0\0\0\0\0\0\0\0»e',1),(24671131,'\0\0\0\0\0\0\0\0\0\0L',1),(24671130,'\0\0\0\0\0\0\0\0\0\0L\n',1),(24671089,'\0\0\0\0\0\0\0\0\0\0»e',1),(24671085,'\0\0\0\0\0\0\0\0\0\0»e',1),(24671078,'\0\0\0\0\0\0\0\0\0\0L',1),(24671070,'\0\0\0\0\0\0\0\0\0\0L',1),(24671070,'\0\0\0\0\0\0\0\0\0\0L',1),(24671051,'\0\0\0\0\0\0\0\0\0\0»e',2),(24671039,'\0\0\0\0\0\0\0\0\0\0g8q',1),(24671015,'\0\0\0\0\0\0\0\0\0\0L',1),(24671014,'\0\0\0\0\0\0\0\0\0\0L',1),(24670961,'\0\0\0\0\0\0\0\0\0\0L',1),(24670934,'\0\0\0\0\0\0\0\0\0\0',1),(24670908,'\0\0\0\0\0\0\0\0\0\07\'',1),(24672693,'\0\0\0\0\0\0\0\0\0\0L',1),(24669691,'\0\0\0\0\0\0\0\0\0\0(M>',4),(24669691,'\0\0\0\0\0\0\0\0\0\0L\n',1),(24669690,'\0\0\0\0\0\0\0\0\0\0L',1),(24672626,'\0\0\0\0\0\0\0\0\0\0I#-',1),(24672611,'\0\0\0\0\0\0\0\0\0\0I#-',1),(24672610,'\0\0\0\0\0\0\0\0\0\0I#-',1),(24672571,'\0\0\0\0\0\0\0\0\0\0L\r',1),(24670891,'\0\0\0\0\0\0\0\0\0\0L',1),(24669574,'\0\0\0\0\0\0\0\0\0\0L',1),(24672571,'\0\0\0\0\0\0\0\0\0\0L',1),(24672501,'\0\0\0\0\0\0\0\0\0\0L',1),(24672496,'\0\0\0\0\0\0\0\0\0\0ܵl',1),(24669573,'\0\0\0\0\0\0\0\0\0\0L',1),(24669563,'\0\0\0\0\0\0\0\0\0\0L',1),(24669535,'\0\0\0\0\0\0\0\0\0\0',2),(24669535,'\0\0\0\0\0\0\0\0\0\0 E',2),(24672453,'\0\0\0\0\0\0\0\0\0\0L',1),(24672453,'\0\0\0\0\0\0\0\0\0\0L',1),(24672420,'\0\0\0\0\0\0\0\0\0\0z',1),(24672419,'\0\0\0\0\0\0\0\0\0\0z',1);
/*!40000 ALTER TABLE `wp_wfLeechers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfLockedOut`
--

DROP TABLE IF EXISTS `wp_wfLockedOut`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLockedOut` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `blockedTime` bigint(20) NOT NULL,
  `reason` varchar(255) NOT NULL,
  `lastAttempt` int(10) unsigned DEFAULT '0',
  `blockedHits` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLockedOut`
--

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

--
-- Table structure for table `wp_wfLocs`
--

DROP TABLE IF EXISTS `wp_wfLocs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLocs` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `failed` tinyint(3) unsigned NOT NULL,
  `city` varchar(255) DEFAULT '',
  `region` varchar(255) DEFAULT '',
  `countryName` varchar(255) DEFAULT '',
  `countryCode` char(2) DEFAULT '',
  `lat` float(10,7) DEFAULT '0.0000000',
  `lon` float(10,7) DEFAULT '0.0000000',
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLocs`
--

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

--
-- Table structure for table `wp_wfLogins`
--

DROP TABLE IF EXISTS `wp_wfLogins`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfLogins` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `hitID` int(11) DEFAULT NULL,
  `ctime` double(17,6) unsigned NOT NULL,
  `fail` tinyint(3) unsigned NOT NULL,
  `action` varchar(40) NOT NULL,
  `username` varchar(255) NOT NULL,
  `userID` int(10) unsigned NOT NULL,
  `IP` binary(16) DEFAULT NULL,
  `UA` text,
  PRIMARY KEY (`id`),
  KEY `k1` (`IP`,`fail`),
  KEY `hitID` (`hitID`)
) ENGINE=MyISAM AUTO_INCREMENT=3685 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfLogins`
--

LOCK TABLES `wp_wfLogins` WRITE;
/*!40000 ALTER TABLE `wp_wfLogins` DISABLE KEYS */;
INSERT INTO `wp_wfLogins` VALUES (3684,12888,1480357571.128481,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0I#-','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(3683,12887,1480356664.165241,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0I#-','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36'),(3682,12851,1480313561.410743,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3681,12750,1480251438.115082,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\01<;','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3680,12741,1480247591.783875,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0O`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3679,12709,1480209620.782526,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\\9	','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3678,12704,1480204914.596976,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0pΈ`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3677,12628,1480172136.535956,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3676,12625,1480172124.030147,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0 E','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3675,12622,1480168554.191575,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3674,12572,1480160283.765537,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0a:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3673,12561,1480153934.021378,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0g%\r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3672,12547,1480143102.498621,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Nj','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3671,12544,1480143017.101032,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0oD,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3670,12450,1480079287.978564,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3669,12395,1480025472.027890,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0S\Zn','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3668,11564,1479305511.162676,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[ғ','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36'),(3667,11562,1479305508.120374,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0[ғ','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36'),(3666,11335,1479126828.025898,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0I#-','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36'),(3665,11334,1479125960.370967,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0I#-','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36'),(3664,11333,1479125952.200537,1,'loginFailValidUsername','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0I#-','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.71 Safari/537.36'),(3663,11329,1479048699.460470,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3662,11328,1479048698.018559,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3661,11327,1479048696.609752,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3660,11326,1479048695.196651,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3659,11325,1479048694.123536,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3658,11324,1479048693.110748,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3657,11323,1479048692.125816,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3656,11322,1479048691.063165,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3655,11321,1479048689.486994,1,'loginFailInvalidUsername','www.fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3654,11320,1479048688.462921,1,'loginFailInvalidUsername','wwwfiepfaorg',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3653,11319,1479048687.000493,1,'loginFailInvalidUsername','webmaster@fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3652,11318,1479048685.612496,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3651,11317,1479048684.421081,1,'loginFailInvalidUsername','fiepfa@fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3650,11316,1479048683.045999,1,'loginFailInvalidUsername','admin@fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3649,11315,1479048681.727141,1,'loginFailInvalidUsername','fiepfaorg',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3648,11314,1479048680.442119,1,'loginFailInvalidUsername','www',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3647,11313,1479048679.063106,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3646,11312,1479048677.895760,1,'loginFailValidUsername','Dan Webb',3,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3645,11311,1479048676.504631,1,'loginFailInvalidUsername','Admin',0,'\0\0\0\0\0\0\0\0\0\0Úi','Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)'),(3644,10885,1475207322.659303,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3643,10878,1475056293.686162,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3642,10877,1475046702.147887,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3641,10876,1475041116.760602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3640,10838,1474471559.086694,0,'logout','Ivan Cobreiro',4,'\0\0\0\0\0\0\0\0\0\0kb','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(3639,10837,1474471459.724350,0,'loginOK','Ivan Cobreiro',4,'\0\0\0\0\0\0\0\0\0\0kb','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko'),(3638,10793,1474337037.710769,0,'logout','Ivan Cobreiro',4,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'),(3637,10792,1474336994.538274,0,'loginOK','Ivan Cobreiro',4,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'),(3636,10791,1474336980.765385,1,'loginFailValidUsername','Ivan Cobreiro',4,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'),(3635,10790,1474336949.243658,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'),(3634,10789,1474335282.514173,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.116 Safari/537.36'),(3633,10786,1474285026.849280,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3632,10766,1473947434.722197,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3631,10765,1473932690.986339,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3630,10764,1473930684.015591,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3629,10763,1473917640.045796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3628,10762,1473905772.073241,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]Lv','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32'),(3627,10761,1473905767.728345,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]Lv','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.75 Safari/537.36 OPR/36.0.2130.32'),(3626,10756,1473861500.525048,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3625,10743,1473664186.665649,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2823,9186,1466644353.755755,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$P','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2822,9185,1466644031.548968,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$Gͫ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2821,9183,1466639476.352579,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2820,9182,1466638233.771625,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0>3}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2819,9179,1466637624.341995,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0bm','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2818,9178,1466637384.599777,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0DGr','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2817,9177,1466636897.422996,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Vzb','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2816,9176,1466636752.071140,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2815,9175,1466636471.451206,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$Uj','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2814,9174,1466635999.466418,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2813,9173,1466635682.063471,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Oe','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2812,9170,1466634096.763292,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2811,9169,1466632860.837265,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0.k','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2810,9168,1466632291.839988,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pV','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2809,9167,1466629852.536216,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2808,9166,1466627562.960107,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2807,9165,1466627412.532920,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0N<4','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2806,9164,1466627242.341363,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\'*x[','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2805,9163,1466627214.788602,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0	Ir','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2804,9162,1466626950.875581,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0P1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2803,9161,1466626325.383187,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2802,9160,1466625922.877948,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\00Ѫ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2801,9159,1466625659.166036,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z$f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2800,9157,1466624082.566122,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2799,9156,1466623878.648909,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0I','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2798,9155,1466623460.418023,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)MJ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2797,9151,1466621723.572883,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Õb\r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2796,9150,1466621698.860507,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%A','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2795,9148,1466621275.919313,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2794,9147,1466620593.562827,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m\"','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2793,9146,1466620338.080692,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0 K','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2792,9145,1466619688.154580,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0i(','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2791,9143,1466617952.627348,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2790,9142,1466617323.590658,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2789,9141,1466616360.643255,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2788,9140,1466616113.788529,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p!H','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2787,9137,1466613673.636022,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Oe','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2786,9136,1466612657.250272,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2785,9135,1466612653.766262,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2784,9134,1466612362.971192,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0\\Sr','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2783,9133,1466611943.240382,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0s7','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2782,9132,1466611827.480545,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0_V','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2781,9131,1466610755.968257,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0C-.','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2780,9130,1466610448.617230,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0V','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2779,9129,1466610230.169510,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0n]^','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2778,9128,1466610076.216264,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0vz','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2777,9126,1466607836.859638,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0)S','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2776,9125,1466607492.861116,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0]#ѕ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2775,9123,1466606098.862374,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ryC','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2774,9122,1466606086.021051,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0 ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2773,9121,1466605878.577555,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2772,9120,1466605641.972108,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0kҥ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2771,9118,1466605186.883602,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\00','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2770,9117,1466604893.365728,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Cc','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2769,9116,1466604751.163016,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0}3','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2768,9115,1466604427.877845,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\02`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2767,9114,1466603577.015552,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0wLg,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2766,9113,1466603074.546418,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2765,9112,1466602747.519842,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Wyc','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2764,9111,1466602591.417553,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2763,9110,1466602564.820505,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0\\Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2762,9109,1466602369.032390,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0pV','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2761,9107,1466600947.846439,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2760,9105,1466599951.923380,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0my0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2759,9104,1466599886.757014,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0%','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2758,9103,1466599577.556692,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0rک','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2757,9102,1466599043.274942,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ZS','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2756,9101,1466598388.985061,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0¦','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2755,9100,1466597073.577508,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2754,9098,1466595887.366041,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0x\0{','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2753,9097,1466595402.016328,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0PNDk','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2752,9096,1466595167.513100,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2751,9095,1466594753.981644,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2750,9094,1466593289.326802,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\04#','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2749,9093,1466592287.047551,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0tņ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2748,9092,1466591939.124602,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0p)(','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2747,9090,1466589697.461677,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Mi+f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2746,9089,1466589033.730009,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0!|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2745,9088,1466588508.263131,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Q\"','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2744,9087,1466588222.934788,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Mp`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2743,9085,1466586440.763714,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2742,9084,1466585691.214421,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0#','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2741,9083,1466584693.951416,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0S)&','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2740,9082,1466584261.554458,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0|}x','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2739,9081,1466584254.481444,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0uͲ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2738,9079,1466582750.984255,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2737,9078,1466582240.721394,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0|h','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2736,9077,1466582111.460258,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Բs','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2735,9076,1466581066.754613,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2734,9075,1466579550.881937,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0u1','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2733,9074,1466578402.976793,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0P-','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2732,9073,1466577673.663298,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0U1G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2731,9072,1466576830.215774,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0X','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2730,9071,1466576779.115900,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0\'*}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2729,9070,1466575639.419764,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0ˣ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2728,9068,1466574827.845591,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2727,9067,1466574770.320853,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0m,+','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2726,9066,1466574742.555606,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\016','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2725,9065,1466574735.351105,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0w_J','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2824,9187,1466645039.045567,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Ć/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2724,9064,1466573932.670171,1,'loginFailInvalidUsername','test',0,'\0\0\0\0\0\0\0\0\0\0pK ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2825,9188,1466645206.547022,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0w^u','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2826,9189,1466645637.856676,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0lҮ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2827,9190,1466649462.428170,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01U','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2828,9191,1466649668.489657,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0y6:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2829,9192,1466650292.549868,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\' ?','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2830,9193,1466650921.950008,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0wLy<','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2831,9195,1466652031.575279,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0q','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2832,9198,1466654090.220258,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\03','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2833,9203,1466657246.968600,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2834,9204,1466658085.691353,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$I','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2835,9205,1466658449.840550,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2836,9206,1466659751.877421,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2837,9207,1466660584.086036,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Yfi','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2838,9208,1466661000.258032,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}X','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2839,9209,1466661425.016490,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2840,9211,1466662588.983605,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2841,9212,1466662798.261614,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0_','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2842,9213,1466663758.657051,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)k','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2843,9215,1466665914.120248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2844,9216,1466666110.414223,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Y$I','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2845,9217,1466667376.442439,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2846,9218,1466668048.526952,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2847,9219,1466668329.158286,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2848,9220,1466668347.025053,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ߑT','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2849,9221,1466669925.773253,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pK','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2850,9222,1466670367.010375,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0-s\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2851,9223,1466670804.530599,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\09','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2852,9224,1466670996.163823,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%xp','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2853,9226,1466671767.185836,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0,X','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2854,9227,1466673171.523326,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p`r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2855,9228,1466673968.648817,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01ϒ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2856,9229,1466674405.845392,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Y=','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2857,9230,1466674451.027027,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2858,9231,1466674759.221064,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0v','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2859,9232,1466674893.526805,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p\n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2860,9234,1466675113.113916,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\00','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2861,9235,1466675330.250145,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0b]b','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2862,9236,1466675607.454831,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0[g2','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2863,9237,1466676908.343371,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\Z*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2864,9238,1466677319.312568,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0gĉ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2865,9240,1466678527.079621,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0M1)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2866,9241,1466679196.853894,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0S','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2867,9242,1466679548.768507,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0RK,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2868,9243,1466679934.273350,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0>','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2869,9247,1466684142.975459,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0{{|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2870,9248,1466684186.309197,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0y','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2871,9249,1466684454.160861,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pv|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2872,9250,1466684679.877086,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0]','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2873,9251,1466685060.642628,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2874,9252,1466686111.914284,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0.y','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2875,9253,1466686145.533854,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0_olK','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2876,9255,1466687246.431949,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2877,9256,1466687473.781187,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2878,9257,1466687830.529957,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0mb','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2879,9258,1466687925.615025,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0NM','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2880,9260,1466689130.827054,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2881,9265,1466691792.083251,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2882,9266,1466692213.534804,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2883,9267,1466692369.367934,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0oXpw','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2884,9268,1466692629.312901,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2885,9269,1466692756.677352,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2886,9271,1466693338.068190,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2887,9272,1466694245.148741,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$I@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2888,9273,1466694500.374180,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Xd','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2889,9274,1466694549.445005,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0T(','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2890,9277,1466696986.000534,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ʀ58','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2891,9278,1466698035.522022,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%p','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2892,9282,1466698837.979404,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Vm','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2893,9284,1466700798.054162,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m]','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2894,9285,1466700959.121827,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ݓ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2895,9286,1466701021.215419,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2896,9289,1466702927.373461,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0RNU','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2897,9291,1466703784.615313,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01	G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2898,9292,1466704649.756713,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Һr','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2899,9294,1466705776.804548,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2900,9296,1466706746.603105,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2901,9297,1466706893.020361,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0u','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2902,9298,1466707631.417133,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0g\'','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2903,9299,1466708775.444286,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Tu','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2904,9300,1466709086.920244,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$I9!','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2905,9301,1466709179.173154,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2906,9302,1466709527.249391,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0_\\','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2907,9304,1466709963.119617,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0_Lb','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2908,9306,1466711071.425776,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2909,9307,1466711281.647795,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0gɕ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2910,9308,1466711378.050531,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Ow','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2911,9309,1466711494.755179,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2912,9311,1466711899.915288,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2913,9312,1466713478.625152,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0M66','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2914,9313,1466714546.950885,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)a&f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2915,9315,1466716386.650360,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2916,9316,1466719918.474792,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\'*b','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2917,9317,1466720872.035117,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0׹','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2918,9318,1466721691.273874,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\03g','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2919,9319,1466721692.466992,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0_0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2920,9321,1466722985.146211,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0=G`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2921,9322,1466724265.225490,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0-w','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2922,9324,1466726506.615372,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}N','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2923,9325,1466727746.414452,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ik','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2924,9326,1466727785.764305,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]Z','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(2925,9327,1466727787.193539,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0]Z','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(2926,9328,1466729654.809825,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0I1=','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2927,9330,1466730820.812098,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p.','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2928,9331,1466731711.166015,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0s','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2929,9332,1466731948.418261,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2930,9333,1466732132.567727,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0y','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2931,9334,1466732956.187743,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z6]','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2932,9338,1466740725.788184,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0uà\\','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2933,9339,1466740977.018779,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0=J9','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2934,9340,1466741104.263326,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0d~','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2935,9341,1466741476.676799,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0{}','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2936,9342,1466742885.117213,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0|i','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2937,9344,1466743120.712062,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2938,9345,1466744044.963467,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\'6','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2939,9347,1466746642.147519,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0SD','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2940,9348,1466747142.985019,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0N','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2941,9349,1466747384.683725,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\086','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2942,9350,1466748070.854331,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0zk','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2943,9351,1466748164.948469,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0OJ	','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2944,9352,1466748682.120708,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z6','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2945,9353,1466748796.945070,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0D|2','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2946,9354,1466748912.928919,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2947,9355,1466749496.565459,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2948,9356,1466750297.628992,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2949,9357,1466750387.171632,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0^@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2950,9358,1466750676.743306,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0VH','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2951,9359,1466750766.858476,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0zk','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2952,9360,1466750790.971571,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2953,9361,1466751927.531192,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0wZV','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2954,9362,1466752128.163511,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2955,9363,1466752490.748495,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0j','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2956,9365,1466752996.463151,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0eUp','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2957,9366,1466754043.750020,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2958,9367,1466754830.273525,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0F','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2959,9368,1466754916.965120,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$H','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2960,9369,1466755161.972198,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Ur','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2961,9370,1466755587.573938,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0{5r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2962,9371,1466758105.051529,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0-x\Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2963,9372,1466758131.465714,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\\S@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2964,9374,1466759189.671288,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z0@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2965,9375,1466759344.732331,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(2966,9379,1466760598.027924,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%2','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2967,9380,1466760645.062594,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0]AM`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2968,9381,1466762204.344619,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0{|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2969,9383,1466762789.051613,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0x;=P','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2970,9384,1466763333.454083,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\' ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2971,9385,1466763954.911770,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01/','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2972,9386,1466764490.215909,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0c','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2973,9389,1466767643.471547,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2974,9390,1466767963.310873,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Qo','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2975,9391,1466768609.470693,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0]#ќ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2976,9392,1466769573.023822,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0^-','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2977,9393,1466769663.812553,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0r\'','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2978,9395,1466770194.609021,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$O','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2979,9397,1466770614.476576,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0<41p','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2980,9399,1466772877.510835,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0cgl','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2981,9400,1466772924.949988,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2982,9401,1466773699.369287,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z5W','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2983,9403,1466774533.478459,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2984,9404,1466774825.555086,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0^&','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2985,9405,1466775441.635862,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0YE','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2986,9406,1466776311.877538,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2987,9407,1466777052.348764,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m`','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2988,9408,1466777313.274401,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Y','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2989,9409,1466777874.062005,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2990,9411,1466778753.991753,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2991,9412,1466779073.051256,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0x','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2992,9413,1466779469.667885,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01<','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2993,9414,1466780357.257493,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0:\Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2994,9415,1466781266.479780,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2995,9416,1466781611.873392,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)u!','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2996,9417,1466782018.880665,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0W','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2997,9418,1466782204.518249,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0o','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2998,9420,1466783162.407076,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(2999,9421,1466784417.371352,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0X|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3000,9422,1466784837.267904,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z^c','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3001,9423,1466784972.577698,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$K ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3002,9424,1466785084.252804,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0n7','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3003,9426,1466786278.419628,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\'5','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3004,9428,1466787455.571846,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0>|g','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3005,9429,1466787503.477158,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0f','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3006,9430,1466788276.868908,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\\P\r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3007,9431,1466788967.332284,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$HZd','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3008,9432,1466790407.840893,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3009,9434,1466792043.927404,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$T{','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3010,9437,1466793949.850508,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0u','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3011,9438,1466794428.162038,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0[X','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3012,9439,1466794769.337959,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0]w]','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3013,9440,1466795253.464344,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3014,9441,1466795962.811475,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0sT\n','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3015,9442,1466796047.022468,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0-G','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3016,9443,1466796271.873622,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0O','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3017,9444,1466796994.372081,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3018,9445,1466800465.612985,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0..','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3019,9447,1466801062.923711,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0O!j','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3020,9448,1466801533.571738,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3021,9449,1466802954.571134,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3022,9450,1466803344.650476,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\04x','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3023,9452,1466804964.237789,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Wg','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3024,9453,1466805527.478023,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>B','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3025,9455,1466806816.854277,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0}{','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3026,9456,1466809464.181954,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Ty','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3027,9457,1466809556.870893,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0> ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3028,9458,1466810374.937499,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0|k}=','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3029,9459,1466810591.131080,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3030,9461,1466812283.666821,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0qR','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3031,9463,1466814286.265439,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Ԕ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3032,9464,1466814625.517614,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0.0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3033,9465,1466815117.726270,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0g\r^','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3034,9466,1466815164.914151,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0|k,','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3035,9469,1466825662.047456,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\01','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3036,9470,1466829441.767480,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0QSt','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3037,9471,1466831330.383729,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0<5p','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3038,9472,1466832781.522102,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Xd','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3039,9473,1466833315.775911,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0uH','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3040,9474,1466833489.018759,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3041,9476,1466834573.781230,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0gV','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3042,9477,1466836304.089868,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pQ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3043,9478,1466837852.823654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3044,9480,1466838729.283688,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0uG~','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3045,9483,1466842384.169001,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\07iJ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3046,9484,1466843529.354113,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0xRe','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3047,9485,1466844573.183173,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3048,9487,1466844888.426004,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0R*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3049,9488,1466845157.423445,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3050,9490,1466847103.515007,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0[','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3051,9491,1466847256.710395,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0g','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3052,9492,1466847734.058391,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3053,9493,1466847974.337605,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\\S','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3054,9494,1466848330.981105,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0VX4;','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3055,9495,1466848353.174373,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0+t	','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3056,9498,1466852772.813234,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0^D1_','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3057,9499,1466853090.389870,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0.5','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3058,9500,1466853307.059090,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Y*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3059,9501,1466855075.892289,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ȵd@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3060,9505,1466857362.627055,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3061,9507,1466858147.676276,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$L@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3062,9508,1466859174.651875,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0My','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3063,9509,1466859428.423875,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0oX)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3064,9510,1466859538.347394,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0x(','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3065,9511,1466860577.484765,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)׬d','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3066,9513,1466863334.621268,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\'(_','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3067,9514,1466863781.751951,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0%','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3068,9515,1466864241.358440,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\r','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3069,9517,1466865156.264819,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pK5','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3070,9518,1466865305.063141,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3071,9519,1466866601.220103,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0U','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3072,9520,1466867051.958951,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0*','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3073,9522,1466867430.320557,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0|i','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3074,9524,1466867970.263677,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0.','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3075,9525,1466868648.615522,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Һ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3076,9526,1466869901.108701,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3077,9527,1466870425.839795,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0ɿ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3078,9528,1466870731.132310,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)mu','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3079,9529,1466871577.428275,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0߁V','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3080,9532,1466872515.861948,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0;]{','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3081,9533,1466872664.243638,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0uԹY','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3082,9534,1466872981.143541,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pM','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3083,9535,1466873850.757671,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Q','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3084,9536,1466874425.968571,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0\')','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3085,9540,1466875554.018818,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0uR','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3086,9541,1466875749.121041,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0-','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3087,9543,1466877049.260160,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0a','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3088,9544,1466877758.237568,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0$Q\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3089,9547,1466878480.530810,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3090,9548,1466879551.124714,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0t','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3091,9549,1466880911.622676,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3092,9553,1466882819.278101,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\03J','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3093,9555,1466884786.858433,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0J|','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3094,9556,1466884903.466469,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\03o','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3095,9557,1466885002.460049,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0|!&','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3096,9558,1466885183.358017,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)d','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3097,9560,1466885667.218988,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3098,9561,1466887360.320502,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0D','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3099,9562,1466887611.257931,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0x','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3100,9569,1466892111.161291,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Z','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3101,9570,1466892854.575766,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3102,9571,1466893487.477709,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p\'','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3103,9572,1466894113.272585,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0¨_','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3104,9573,1466896418.215242,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0)','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3105,9575,1466897536.082026,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0o]ͤ','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3106,9578,1466901553.948563,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0]9','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3107,9579,1466901884.877160,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0=F','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3108,9580,1466903718.063206,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3109,9585,1466906364.613677,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0iE','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3110,9586,1466906767.011313,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0s2','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3111,9587,1466907334.941352,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Օ3','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3112,9588,1466910955.836234,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0p	','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3113,9589,1466912150.447875,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0pv','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3114,9591,1466913169.319655,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3115,9592,1466913221.356590,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0y6:','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3116,9593,1466916256.187143,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0@','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3117,9596,1466921553.760464,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0A0','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3118,9597,1466921640.519020,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0{B','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3119,9600,1466923136.113381,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0m','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3120,9601,1466923935.116331,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0Hު','Mozilla/5.0 (Windows NT 6.1; WOW64; rv:40.0) Gecko/20100101 Firefox/40.1'),(3121,9603,1466946839.489979,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\070','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3122,9604,1466948655.935268,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3123,9605,1466960919.875909,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3124,9606,1466962697.584767,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3125,9607,1466984964.747842,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3126,9608,1466990520.002839,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3127,9609,1466992316.173397,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3128,9610,1467018898.294454,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3129,9611,1467020834.438325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\070','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3130,9616,1467106020.204102,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3131,9620,1467162928.881162,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3132,9622,1467178307.228709,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3133,9624,1467191485.018798,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3134,9625,1467193202.080377,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3135,9628,1467243343.072022,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3136,9629,1467255758.979327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>N','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3137,9632,1467280332.985478,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3138,9634,1467314022.671316,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3139,9635,1467315869.825213,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3140,9637,1467323931.523658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3141,9642,1467400325.054636,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3142,9643,1467402135.218258,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3143,9644,1467402746.556468,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3144,9645,1467443116.786491,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3145,9648,1467476701.436856,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3146,9656,1467545061.240680,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3147,9657,1467546779.562019,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3148,9659,1467581153.423202,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3149,9660,1467588076.631120,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3150,9663,1467631763.232852,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3151,9664,1467633555.280200,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3152,9665,1467639991.757197,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3153,9668,1467689469.763216,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3154,9669,1467696438.996232,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3155,9670,1467697998.728863,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3156,9671,1467709736.382842,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3157,9672,1467729767.062106,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3158,9675,1467774825.171209,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3159,9676,1467783066.240815,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3160,9677,1467784657.081386,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3161,9678,1467788807.331636,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3162,9679,1467790607.945755,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3163,9680,1467804917.560509,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3164,9681,1467807415.127267,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3165,9682,1467813181.034306,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3166,9683,1467819644.995229,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3167,9684,1467840287.350067,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3168,9685,1467841978.094833,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3169,9686,1467842326.640088,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3170,9687,1467854149.135620,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3171,9688,1467860402.344799,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3172,9693,1467896910.409407,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3173,9694,1467899157.679855,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>-','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3174,9696,1467911521.473782,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3175,9700,1467925030.231642,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3176,9704,1467927406.952423,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3177,9707,1467930696.421590,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3178,9708,1467930698.095330,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3179,9710,1467932194.935496,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3180,9711,1467932197.311219,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3181,9712,1467933222.376793,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3182,9714,1467933709.157224,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3183,9715,1467934216.185654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3184,9716,1467934217.719173,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3185,9719,1467935382.424566,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3186,9722,1467937547.853250,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3187,9724,1467938487.959884,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3188,9727,1467942752.976458,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3189,9732,1467959023.315824,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3190,9735,1467962346.898663,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3191,9738,1467965169.773170,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3192,9740,1467967053.672361,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3193,9741,1467967055.160542,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3194,9742,1467968639.544934,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3195,9743,1467970242.070441,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3196,9745,1467971872.697755,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3197,9747,1467992136.194809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3198,9748,1468004458.655850,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3199,9749,1468004957.679906,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3200,9753,1468053008.558732,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3201,9757,1468102141.981091,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3202,9758,1468106427.961302,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3203,9761,1468134543.353222,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3204,9762,1468150127.297097,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3205,9766,1468236520.418054,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3206,9768,1468257760.353232,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3207,9772,1468299708.862758,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3208,9775,1468338277.259482,1,'loginFailValidUsername','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(3209,9776,1468338287.720118,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(3210,9777,1468344299.705834,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36'),(3211,9779,1468359003.982770,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3212,9781,1468372859.043935,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3213,9783,1468388359.666913,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3214,9784,1468390265.462990,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3215,9788,1468424482.812831,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>M','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3216,9789,1468458921.471853,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3217,9791,1468474158.743652,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3218,9792,1468475817.664377,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3219,9794,1468488982.484360,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3220,9795,1468510607.496549,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3221,9797,1468559927.243663,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3222,9798,1468561546.978566,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3223,9799,1468566417.752943,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\070','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3224,9800,1468575489.327264,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>G','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3225,9801,1468592862.607907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3226,9803,1468616046.363089,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3227,9804,1468618591.090739,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3228,9805,1468625287.339123,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3229,9807,1468642059.920606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3230,9808,1468647102.528722,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3231,9809,1468661750.572256,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3232,9810,1468667803.667895,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3233,9818,1468693489.625681,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3234,9822,1468745365.130962,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3235,9823,1468771296.068546,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3236,9825,1468799986.623503,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3237,9830,1468864551.995560,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3238,9834,1468906524.045585,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3239,9835,1468912298.442602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3240,9836,1468914620.751096,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3241,9837,1468919528.353317,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3242,9838,1468921546.254712,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3243,9840,1468937334.914887,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3244,9843,1468981247.272016,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0m_&\'','Mozilla/5.0 (Windows NT 6.3; WOW64; rv:47.0) Gecko/20100101 Firefox/47.0'),(3245,9844,1468986230.184793,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>A','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3246,9845,1468992723.247700,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3247,9867,1469057022.572880,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3248,9869,1469121033.743739,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3249,9870,1469143389.920570,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3250,9871,1469145058.852967,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3251,9872,1469150054.333015,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3252,9876,1469214380.944143,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3253,9877,1469236456.515285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3254,9878,1469238099.571569,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>H','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3255,9879,1469257390.808102,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3256,9880,1469272980.580981,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3257,9881,1469274662.688349,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3258,9882,1469287160.629757,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3259,9883,1469288800.176313,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3260,9885,1469302131.919845,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3261,9887,1469316226.234554,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\"','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3262,9888,1469343975.280415,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3263,9889,1469345836.309887,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3264,9890,1469351351.309783,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3265,9891,1469359667.137025,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3266,9892,1469361523.465908,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3267,9894,1469374452.592627,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3268,9895,1469388949.170219,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3269,9896,1469397201.745303,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3270,9897,1469404181.651969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3271,9898,1469415499.898962,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3272,9899,1469417230.683214,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3273,9900,1469418905.224147,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3274,9901,1469430465.012289,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3275,9902,1469432239.779704,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3276,9903,1469446032.752641,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3277,9904,1469447836.222453,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3278,9905,1469481910.616375,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3279,9906,1469504321.104801,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3280,9907,1469518515.610895,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3281,9908,1469547096.084684,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3282,9909,1469552699.298703,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3283,9911,1469588093.666813,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3284,9913,1469611797.995735,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3285,9914,1469613413.156688,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3286,9915,1469618546.852684,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3287,9916,1469620247.849539,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3288,9917,1469624912.722615,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3289,9918,1469626720.422054,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3290,9919,1469633594.855480,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3291,9921,1469674523.583824,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3292,9922,1469677021.866655,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3293,9924,1469704981.951736,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0=','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3294,9925,1469706738.448877,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3295,9926,1469713663.697267,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3296,9927,1469721627.714560,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3297,9929,1469762771.339492,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3298,9931,1469783076.157740,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3299,9932,1469797615.544524,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3300,9933,1469799564.360899,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3301,9934,1469806600.136831,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3302,9937,1469862601.016357,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3303,9938,1469864489.747789,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3304,9939,1469871693.080179,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3305,9940,1469884153.257901,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3306,9941,1469892959.428721,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3307,9942,1469898687.900693,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3308,9943,1469900609.920756,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3309,9944,1469906111.704385,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3310,9946,1469908129.869029,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3311,9947,1469914189.214390,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3312,9948,1469916024.295797,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3313,9950,1469927858.942409,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3314,9951,1469929612.166011,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3315,9952,1469933963.702596,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3316,9953,1469936515.105085,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3317,9954,1469943124.151257,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3318,9955,1469944823.986234,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3319,9956,1469948815.100697,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3320,9957,1469950698.751259,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3321,9958,1469964590.938273,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3322,9959,1470007351.204650,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\070','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3323,9960,1470014296.300080,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3324,9961,1470016050.761995,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3325,9962,1470020512.439828,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3326,9963,1470022942.322329,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\Z','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3327,9964,1470042548.140103,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3328,9965,1470065364.975956,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3329,9966,1470071222.125763,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3330,9967,1470073136.595325,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3331,9969,1470093775.807601,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3332,9971,1470121816.840313,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3333,9972,1470123677.715332,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3334,9973,1470128937.509189,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3335,9975,1470164843.826751,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3336,9976,1470180774.317673,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3337,9980,1470251646.311894,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3338,9982,1470274233.067700,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3339,9983,1470288329.588331,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3340,9984,1470290104.711163,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3341,9985,1470294393.832850,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3342,9986,1470301328.019262,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3343,9989,1470346048.580214,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3344,9990,1470359836.421822,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3345,9996,1470396741.423267,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3346,10007,1470416867.273028,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3347,10019,1470440903.807670,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3348,10020,1470466946.013711,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3349,10034,1470494927.664007,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; GTB6; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.04506.30; Lunascape 5.0.5.0)'),(3350,10036,1470522261.966485,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:1.1) Gecko/20020826'),(3351,10038,1470549659.401798,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20080421 Thunderbird/2.0.0.14'),(3352,10040,1470560923.811201,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3353,10041,1470562827.624387,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>K','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3354,10051,1470577643.727810,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3355,10052,1470578058.959157,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.1; nb-NO) AppleWebKit/525.28 (KHTML, like Gecko) Version/3.2.2 Safari/525.28.1'),(3356,10053,1470589978.899336,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3357,10054,1470591933.008738,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3358,10056,1470612538.817268,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3359,10058,1470631806.605123,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/6.05 (Windows 2000; U) [en]'),(3360,10060,1470640020.505072,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3361,10061,1470641971.527110,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3362,10063,1470659148.102190,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.30 (Nintendo Wii; U; ; 2047-7;es)'),(3363,10064,1470686475.506543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686; en; rv:1.8.1.14) Gecko/20080416 Fedora/2.18.3-9.fc7 Epiphany/2.18 Firefox/2.0.0.14'),(3364,10076,1470741271.804557,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686; hu-HU; rv:1.9.0.10) Gecko/2009042718 CentOS/3.0.10-1.el5.centos Firefox/3.0.10'),(3365,10078,1470768701.981892,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.62 (Windows NT 6.0; U; en) Presto/2.1.1'),(3366,10079,1470770699.351344,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3367,10080,1470796086.409602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux x86_64; de; rv:1.9.0.7) Gecko/2009031819 Iceweasel/3.0.6 (Debian-3.0.6-1)'),(3368,10081,1470798287.887105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3369,10082,1470798289.267879,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3370,10083,1470798290.602782,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3371,10084,1470798291.952601,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3372,10085,1470798293.280610,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3373,10086,1470798294.568657,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3374,10087,1470798295.942473,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3375,10088,1470798297.301969,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3376,10089,1470798298.709340,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0Bܥ','Mechanize/2.7.3 Ruby/1.9.3p551 (http://github.com/sparklemotion/mechanize/)'),(3377,10090,1470798695.817984,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3378,10091,1470800827.871462,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3379,10093,1470823439.249771,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.1; fr-FR; rv:1.7.7) Gecko/20050414'),(3380,10094,1470841017.264813,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3381,10095,1470850775.350244,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686; en; rv:1.8.1.2) Gecko/20070220 Firefox/2.0.0.2'),(3382,10096,1470871726.496965,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3383,10107,1470879164.806593,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3384,10108,1470902373.907529,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3385,10109,1470905486.754897,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; U; PPC Mac OS X Mach-O; en-US; rv:1.8.1.12) Gecko/20080219 Firefox/2.0.0.12 Navigator/9.0.0.6'),(3386,10110,1470915913.411602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3387,10111,1470932876.465722,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux armv7l; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.204 Safari/534.16'),(3388,10112,1470943234.404211,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3389,10113,1470958442.629597,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3390,10114,1470960222.663371,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9pre) Gecko/2008050715 Thunderbird/3.0a1'),(3391,10116,1470980440.470055,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3392,10117,1470984898.289422,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0.','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3393,10118,1470986257.148265,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3394,10129,1470988400.964028,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3395,10130,1471002036.809062,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3396,10142,1471029599.044348,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3397,10143,1471037938.286248,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3398,10144,1471042304.913638,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686 (x86_64); en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.634.0 Safari/534.16'),(3399,10145,1471044742.362254,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3400,10147,1471069722.741543,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:2.0b8) Gecko/20100101 Firefox/4.0b8'),(3401,10148,1471080316.324216,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3402,10149,1471089254.949912,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3403,10151,1471097054.464949,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/8.51 (X11; Linux i686; U; en)'),(3404,10152,1471103830.317389,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3405,10153,1471109215.873680,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>I','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3406,10155,1471131614.984015,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3407,10168,1471179248.198092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.0; de-AT; rv:1.5) Gecko/20031007'),(3408,10169,1471182840.072273,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3409,10171,1471206594.462530,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.5) Gecko/20031007'),(3410,10172,1471210718.005856,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3411,10184,1471245319.859720,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3412,10185,1471247464.786907,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3413,10186,1471254414.197419,1,'loginFailValidUsername','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3414,10187,1471254421.438580,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3415,10188,1471260650.531272,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3416,10189,1471261495.791273,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3417,10190,1471262270.617200,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3418,10193,1471310759.906538,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3419,10194,1471331845.778433,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3420,10215,1471397633.858467,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0A4','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3421,10236,1471412831.815741,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3422,10237,1471425952.538112,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; Avant Browser [avantbrowser.com]; Crazy Browser 1.0.5)'),(3423,10238,1471440129.797249,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (compatible; Konqueror/3.1-rc2; i686 Linux; 20020614)'),(3424,10240,1471454250.527654,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.80 (Windows NT 5.1; U; cs) Presto/2.2.15 Version/10.10'),(3425,10241,1471460766.422024,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3426,10242,1471461476.765976,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3427,10243,1471463676.825809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3428,10244,1471468438.271127,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Midori/0.1.8 (Windows; Windows; U; en-us) WebKit/532+'),(3429,10246,1471510887.357791,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.0; fr-FR; rv:0.9.4) Gecko/20011128 Netscape6/6.2.1'),(3430,10259,1471538838.561293,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3431,10271,1471553412.510523,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','ELinks/0.10.3 (textmode; Linux; 80x24-2)'),(3432,10272,1471553679.349566,0,'loginOK','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3433,10273,1471557020.751703,0,'logout','FIEPFAlogin',1,'\0\0\0\0\0\0\0\0\0\0Ljr','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36'),(3434,10274,1471563591.989481,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3435,10285,1471570278.938616,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3436,10287,1471581717.811809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.03 [fr] (Win95; U)'),(3437,10288,1471585626.704494,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3438,10300,1471598452.737010,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3439,10301,1471600699.944180,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3440,10316,1471633266.763278,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3441,10317,1471634587.905369,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3442,10318,1471636826.977285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3443,10319,1471638360.753572,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.16) Gecko/20080723 Fedora/2.0.0.16-1.fc8 Thunderbird/2.0.0.16'),(3444,10320,1471649850.279925,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3445,10330,1471666656.326702,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Win 9x 4.90; en-US; rv:1.4) Gecko/20030624 Netscape/7.1 (ax)'),(3446,10342,1471684694.342886,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3447,10344,1471694988.006606,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; U; PPC Mac OS X; it-it) AppleWebKit/312.8 (KHTML, like Gecko) Safari/312.6'),(3448,10349,1471714142.460610,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3449,10350,1471723285.439405,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/419 (KHTML, like Gecko) Shiira Safari/125'),(3450,10351,1471726025.595330,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3451,10352,1471737472.001699,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9.1.8) Gecko/20100214 Ubuntu/9.10 (karmic) Firefox/3.5.8'),(3452,10353,1471748804.251919,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3453,10354,1471751119.027504,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3454,10355,1471751622.584520,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.75 [en] (X11; U; SunOS 5.7 sun4u)'),(3455,10356,1471758042.590522,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3456,10357,1471765800.543492,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) RockMelt/0.9.50.459 Chrome/10.0.648.204 Safari/534.16'),(3457,10358,1471771049.945674,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3458,10359,1471779952.549959,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.80 (J2ME/MIDP; Opera Mini/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/23.377; U; en) Presto/2.5.25 Version/10.54'),(3459,10360,1471794123.209674,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.0 (compatible; MSIE 7.0; AOL 9.0; Windows NT 5.1; GTB5; .NET CLR 1.1.4322; .NET CLR 2.0.50727; OfficeLiveConnector.1.3; OfficeLivePatch.0.0)'),(3460,10361,1471800346.724162,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3461,10362,1471807268.859143,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3462,10363,1471808282.828577,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; it-it) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27'),(3463,10365,1471822434.285796,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.8.1.16) Gecko/20080702 Iceweasel/2.0.0.16 (Debian-2.0.0.16-0etch1)'),(3464,10367,1471835428.688484,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3465,10368,1471836575.656730,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.80 (J2ME/MIDP; Opera Mini/4.0 (Linux; U;'),(3466,10369,1471837614.040944,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3467,10370,1471850779.642125,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Opera/9.80 (J2ME/MIDP; Opera Mini/5.0.15650/20.2479; U; en) Presto/2.5.25'),(3468,10371,1471857371.086257,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3469,10372,1471864904.486352,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/4.06 [en] (WinNT; I)'),(3470,10384,1471893223.310250,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','PageBitesHyperBot/600 (http://www.pagebites.com/)'),(3471,10385,1471907403.111809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (X11; Linux i686; rv:2.0b13pre) Gecko/20110321 SeaMonkey/2.1b3pre'),(3472,10386,1471921487.808636,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3473,10408,1471949879.156212,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv:1.9.0.6) Gecko/2009011912 Safari/525.27.1'),(3474,10409,1471958731.371072,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3475,10410,1471964025.753877,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 5.1; ja-JP) AppleWebKit/533.3 (KHTML, like Gecko) Lunascape/6.3.4.23051 Safari/533.3'),(3476,10411,1471978199.970542,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Googlebot/2.1 (+http://www.google.com/bot.html)'),(3477,10412,1471980128.679586,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3478,10413,1471982261.409234,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3479,10425,1472010312.319276,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0mT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3480,10436,1472020680.095009,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_6_8) AppleWebKit/534.24 (KHTML, like Gecko) Iron/11.0.700.2 Chrome/11.0.700.2 Safari/534.24'),(3481,10437,1472032279.007757,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3482,10439,1472063154.124790,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0\'','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US; rv:1.9.0.12) Gecko/2009070611 Firefox/3.0.12'),(3483,10440,1472066207.498422,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3484,10441,1472074948.915909,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3485,10442,1472081739.450017,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3486,10443,1472117682.283405,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3487,10444,1472131205.201981,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3488,10445,1472140333.140714,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3489,10446,1472147796.877847,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3490,10447,1472147798.925315,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3491,10448,1472147941.231121,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3492,10451,1472148841.008933,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3493,10452,1472148847.345610,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3494,10455,1472151383.302042,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3495,10456,1472151384.746816,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3496,10457,1472151791.909105,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3497,10458,1472151795.906659,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3498,10459,1472152602.189212,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3499,10460,1472152603.791737,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3500,10461,1472152999.575615,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3501,10462,1472153002.508155,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3502,10463,1472154225.516574,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3503,10464,1472154240.371881,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3504,10467,1472154989.059602,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3505,10468,1472154990.534830,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3506,10469,1472155384.108947,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3507,10470,1472155387.489713,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3508,10471,1472156214.414676,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3509,10472,1472156216.830607,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3510,10473,1472156606.370300,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3511,10477,1472157420.978022,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3512,10478,1472157422.519809,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3513,10483,1472159501.891884,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3514,10484,1472159503.458884,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3515,10485,1472159907.249467,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3516,10487,1472160260.950947,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3517,10491,1472161108.960579,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3518,10492,1472161110.464928,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3519,10493,1472161166.667672,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3520,10494,1472161961.847211,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3521,10496,1472162376.979565,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3522,10497,1472162378.590085,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3523,10502,1472171302.362407,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3524,10503,1472171303.958521,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3525,10506,1472172257.677425,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3526,10507,1472172263.888160,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3527,10508,1472172698.132321,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3528,10509,1472172699.728241,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3529,10513,1472175134.999638,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3530,10514,1472175136.373697,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3531,10522,1472177831.233255,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3532,10523,1472177832.810854,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3533,10524,1472178211.728416,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3534,10525,1472178214.859525,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3535,10526,1472178972.921088,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3536,10527,1472178974.432235,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3537,10530,1472180203.107180,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3538,10532,1472180593.672328,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3539,10533,1472180595.264970,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3540,10534,1472181369.158949,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3541,10535,1472181370.682164,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3542,10536,1472181753.264355,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3543,10537,1472181754.839725,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3544,10538,1472182525.040649,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3545,10539,1472182526.635539,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3546,10540,1472182938.369027,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3547,10541,1472182940.005124,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3548,10544,1472184521.785218,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3549,10545,1472184522.978451,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3550,10546,1472184866.706163,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3551,10547,1472184868.558478,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3552,10548,1472185818.138850,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3553,10549,1472185819.451358,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3554,10550,1472186164.052395,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3555,10552,1472186551.605512,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3556,10553,1472186553.260404,1,'loginFailInvalidUsername','fiepfa.org',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3557,10554,1472186966.108406,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3558,10555,1472186967.647135,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3559,10556,1472187769.172046,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3560,10557,1472187770.632845,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3561,10558,1472188300.053456,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3562,10560,1472188679.069268,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3563,10561,1472188680.478882,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3564,10564,1472189851.963082,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3565,10567,1472190299.461073,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3566,10568,1472190300.968069,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3567,10569,1472190727.133281,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3568,10575,1472193351.024311,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3569,10579,1472194159.551475,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3570,10580,1472194161.063625,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3571,10583,1472195664.745444,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3572,10584,1472195667.570979,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3573,10585,1472196100.085049,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3574,10587,1472196467.504460,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3575,10588,1472196469.038968,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3576,10592,1472197524.842732,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3577,10593,1472197526.240782,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3578,10594,1472197925.400606,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3579,10595,1472197926.793331,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3580,10596,1472198607.280199,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3581,10602,1472201512.823443,1,'loginFailInvalidUsername','fiepfa',0,'\0\0\0\0\0\0\0\0\0\0k','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/31.0.1650.57 Safari/537.36'),(3582,10606,1472202817.364767,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3583,10608,1472219890.725173,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02s','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3584,10610,1472254526.566092,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3585,10613,1472284257.793742,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3586,10614,1472289324.875074,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3587,10615,1472291404.502285,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3588,10617,1472325336.597648,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3589,10618,1472327445.713855,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3590,10621,1472375464.515048,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3591,10622,1472377517.798199,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3592,10625,1472449315.126434,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3593,10628,1472491439.636160,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3594,10629,1472493593.955517,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3595,10632,1472528394.332652,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3596,10645,1472557278.096327,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3597,10647,1472586573.343062,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3598,10649,1472621879.043658,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3599,10650,1472635485.855387,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3600,10652,1472664339.352385,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3601,10653,1472701605.453165,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3602,10654,1472730117.262561,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3603,10657,1472807991.173528,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3604,10658,1472810172.484904,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3605,10661,1472859672.083028,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0mT','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3606,10663,1472894014.996170,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>L','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3607,10666,1472923218.780379,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3608,10676,1472967879.344255,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3609,10679,1472973522.013078,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3610,10684,1473038856.897197,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02t','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3611,10689,1473103076.173239,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3612,10690,1473105299.137574,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3613,10691,1473125101.019249,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3614,10692,1473127082.043322,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3615,10694,1473162087.848479,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02?','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3616,10695,1473182221.882669,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>U','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3617,10697,1473206388.350584,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>f','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3618,10700,1473263426.573777,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0^	','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3619,10719,1473334824.536470,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0d','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3620,10723,1473377075.921178,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\04','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3621,10731,1473513127.932030,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0!','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3622,10732,1473515222.028888,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0>J','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3623,10734,1473536426.031347,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\0e','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0'),(3624,10741,1473614137.841304,1,'loginFailInvalidUsername','admin',0,'\0\0\0\0\0\0\0\0\0\02>','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:23.0) Gecko/20100101 Firefox/23.0');
/*!40000 ALTER TABLE `wp_wfLogins` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfNet404s`
--

DROP TABLE IF EXISTS `wp_wfNet404s`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfNet404s` (
  `sig` binary(16) NOT NULL,
  `ctime` int(10) unsigned NOT NULL,
  `URI` varchar(1000) NOT NULL,
  PRIMARY KEY (`sig`),
  KEY `k1` (`ctime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfNet404s`
--

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

--
-- Table structure for table `wp_wfReverseCache`
--

DROP TABLE IF EXISTS `wp_wfReverseCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfReverseCache` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `host` varchar(255) NOT NULL,
  `lastUpdate` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfReverseCache`
--

LOCK TABLES `wp_wfReverseCache` WRITE;
/*!40000 ALTER TABLE `wp_wfReverseCache` DISABLE KEYS */;
INSERT INTO `wp_wfReverseCache` VALUES ('\0\0\0\0\0\0\0\0\0\0BOx','crawl-66-249-79-120.googlebot.com',1480350092),('\0\0\0\0\0\0\0\0\0\0BOt','crawl-66-249-79-116.googlebot.com',1480326268);
/*!40000 ALTER TABLE `wp_wfReverseCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfSNIPCache`
--

DROP TABLE IF EXISTS `wp_wfSNIPCache`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfSNIPCache` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `IP` varchar(45) NOT NULL DEFAULT '',
  `expiration` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `body` varchar(255) NOT NULL DEFAULT '',
  `count` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `expiration` (`expiration`),
  KEY `IP` (`IP`)
) ENGINE=MyISAM AUTO_INCREMENT=259 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfSNIPCache`
--

LOCK TABLES `wp_wfSNIPCache` WRITE;
/*!40000 ALTER TABLE `wp_wfSNIPCache` DISABLE KEYS */;
INSERT INTO `wp_wfSNIPCache` VALUES (258,'39.46.54.159','2016-11-28 19:40:16','BLOCKED:600',0);
/*!40000 ALTER TABLE `wp_wfSNIPCache` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfScanners`
--

DROP TABLE IF EXISTS `wp_wfScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfScanners` (
  `eMin` int(10) unsigned NOT NULL,
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `hits` smallint(5) unsigned NOT NULL,
  PRIMARY KEY (`eMin`,`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfScanners`
--

LOCK TABLES `wp_wfScanners` WRITE;
/*!40000 ALTER TABLE `wp_wfScanners` DISABLE KEYS */;
INSERT INTO `wp_wfScanners` VALUES (24669717,'\0\0\0\0\0\0\0\0\0\0>Ң*',2),(24672159,'\0\0\0\0\0\0\0\0\0\07\'S',1),(24669864,'\0\0\0\0\0\0\0\0\0\0-C',1),(24669837,'\0\0\0\0\0\0\0\0\0\0(ME',1),(24671211,'\0\0\0\0\0\0\0\0\0\0Ú',10),(24671212,'\0\0\0\0\0\0\0\0\0\0Ú',2);
/*!40000 ALTER TABLE `wp_wfScanners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfStatus`
--

DROP TABLE IF EXISTS `wp_wfStatus`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfStatus` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `ctime` double(17,6) unsigned NOT NULL,
  `level` tinyint(3) unsigned NOT NULL,
  `type` char(5) NOT NULL,
  `msg` varchar(1000) NOT NULL,
  PRIMARY KEY (`id`),
  KEY `k1` (`ctime`),
  KEY `k2` (`type`)
) ENGINE=MyISAM AUTO_INCREMENT=73534 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfStatus`
--

LOCK TABLES `wp_wfStatus` WRITE;
/*!40000 ALTER TABLE `wp_wfStatus` DISABLE KEYS */;
INSERT INTO `wp_wfStatus` VALUES (72690,1480038041.578710,1,'info','Scheduled Wordfence scan starting at Friday 25th of November 2016 01:40:41 AM'),(73049,1480162054.095886,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12500 records in 2 minutes 1 second.'),(72420,1479792692.866562,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72421,1479792692.868625,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(72422,1479792693.239094,2,'info','Done host key check.'),(72423,1479792693.242165,2,'info','Checking 1 URLs from 1 sources.'),(72424,1479792693.592421,2,'info','Done URL check.'),(72425,1479792693.592909,2,'info','Done examining URLs'),(73448,1480302761.023424,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(73048,1480162054.095248,1,'info','-------------------'),(73449,1480302762.526371,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(73450,1480302768.087287,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72414,1479792692.762955,2,'info','Done file contents scan'),(73085,1480172141.119275,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(73086,1480172141.449134,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72493,1479879056.533243,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72522,1479879092.250678,2,'info','Scanned contents of 47 additional files at 5.99 per second'),(72521,1479879090.516317,2,'info','Scanned contents of 46 additional files at 7.52 per second'),(72523,1479879093.670354,2,'info','Scanned contents of 53 additional files at 5.72 per second'),(72524,1479879095.947492,2,'info','Scanned contents of 54 additional files at 4.68 per second'),(72525,1479879099.207428,2,'info','Scanned contents of 55 additional files at 3.71 per second'),(72526,1479879100.269651,2,'info','Scanned contents of 74 additional files at 4.66 per second'),(72527,1479879101.319203,2,'info','Scanned contents of 118 additional files at 6.97 per second'),(72528,1479879102.246185,2,'info','Scanned contents of 133 additional files at 7.45 per second'),(72529,1479879102.246430,2,'info','Asking Wordfence to check URL\'s against malware list.'),(72530,1479879102.247642,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72531,1479879102.620696,2,'info','Done host key check.'),(72532,1479879102.621978,2,'info','Checking 3 URLs from 2 sources.'),(72533,1479879103.004830,2,'info','Done URL check.'),(72534,1479879103.020492,2,'info','Done file contents scan'),(72998,1480162029.858502,2,'info','Starting scan of file contents'),(72999,1480162030.936368,2,'info','Scanned contents of 19 additional files at 17.65 per second'),(73468,1480302799.127209,2,'info','Analyzed 2600 files containing 40.84 MB of data so far'),(73469,1480302800.111233,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(73470,1480302804.905296,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72540,1479879103.134579,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72340,1479792613.035485,2,'info','Getting theme list from WordPress'),(72338,1479792612.924187,2,'info','Getting plugin list from WordPress'),(72339,1479792613.032972,2,'info','Found 6 plugins'),(72337,1479792612.379793,1,'info','Contacting Wordfence to initiate scan'),(72717,1480038059.359052,2,'info','3000 files indexed'),(72718,1480038059.362529,2,'info','3012 files indexed'),(72719,1480038060.844918,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72720,1480038062.149231,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72721,1480038063.377637,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(72722,1480038064.919131,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72723,1480038065.886513,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72724,1480038066.480114,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72725,1480038067.912379,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72726,1480038070.943203,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72727,1480038084.406417,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72728,1480038084.906229,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72729,1480038085.639224,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72730,1480038086.483252,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72731,1480038087.357451,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72732,1480038087.926465,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72733,1480038088.434156,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72734,1480038088.825145,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72735,1480038093.594716,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72736,1480038094.023256,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72737,1480038094.418496,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(72478,1479879026.750351,2,'info','3012 files indexed'),(72738,1480038095.275149,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73361,1480251516.885353,2,'info','Starting scan of file contents'),(73362,1480251518.226185,2,'info','Scanned contents of 20 additional files at 14.94 per second'),(73363,1480251519.739988,2,'info','Scanned contents of 36 additional files at 12.62 per second'),(73364,1480251520.850943,2,'info','Scanned contents of 42 additional files at 10.60 per second'),(73336,1480251490.685318,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(73337,1480251491.241606,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(73338,1480251494.410192,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(73339,1480251495.081197,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(73340,1480251495.512272,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(73341,1480251495.914240,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73342,1480251496.799322,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73343,1480251499.744980,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73344,1480251502.942200,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(73345,1480251504.696290,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(73346,1480251505.657914,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(73347,1480251506.999385,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(73348,1480251507.653198,2,'info','Analyzed 2600 files containing 40.84 MB of data so far'),(73349,1480251508.632518,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(73350,1480251513.395505,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(73351,1480251515.042280,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(73352,1480251516.268799,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(73353,1480251516.343348,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(73354,1480251516.343845,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(73355,1480251516.346913,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(73356,1480251516.349772,10,'info','SUM_ENDOK:Scanning for known malware files'),(73357,1480251516.383714,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(73358,1480251516.385304,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(73359,1480251516.392125,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(73360,1480251516.394665,10,'info','SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),(73501,1480302826.876548,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(73502,1480302826.876917,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(73500,1480302826.870774,10,'info','SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),(73498,1480302826.866879,2,'info','Done file contents scan'),(73499,1480302826.868385,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(73495,1480302826.434538,2,'info','Done host key check.'),(73496,1480302826.437869,2,'info','Checking 3 URLs from 2 sources.'),(73497,1480302826.856583,2,'info','Done URL check.'),(73447,1480302760.430349,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(73051,1480162054.469583,2,'info','Wordfence used 44.23MB of memory for scan. Server peak memory usage was: 78.75MB'),(73446,1480302759.403309,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72939,1480161942.130695,1,'info','Contacting Wordfence to initiate scan'),(72940,1480161942.668117,2,'info','Getting plugin list from WordPress'),(72941,1480161942.710056,2,'info','Found 6 plugins'),(72942,1480161942.717916,2,'info','Getting theme list from WordPress'),(72629,1479966866.495675,2,'info','Analyzed 3012 files containing 47.44 MB of data.'),(72628,1479966866.386077,2,'info','Analyzed 3000 files containing 47.2 MB of data so far'),(72462,1479879023.615849,2,'info','Found 1 themes'),(73467,1480302798.488892,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(73466,1480302797.165827,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(73465,1480302796.194239,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(73464,1480302794.433649,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(73463,1480302791.253500,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73022,1480162047.282897,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(73023,1480162047.283748,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73024,1480162047.644237,2,'info','Done host key check.'),(73025,1480162047.645294,2,'info','Checking 1 URLs from 1 sources.'),(73026,1480162048.020572,2,'info','Done URL check.'),(72484,1479879033.892670,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72483,1479879033.293380,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72482,1479879032.335850,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72981,1480162018.692496,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72555,1479879106.238948,2,'info','Scanning DNS A record for fiepfa.org'),(72556,1479879106.240528,2,'info','Scanning DNS MX record for fiepfa.org'),(72982,1480162020.454372,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(72983,1480162021.446856,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72984,1480162022.938035,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(72985,1480162023.587301,2,'info','Analyzed 2600 files containing 40.84 MB of data so far'),(72986,1480162024.500363,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72987,1480162026.293678,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72988,1480162027.983283,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72989,1480162029.177563,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72990,1480162029.251745,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72772,1480038133.947322,2,'info','Checking 3 URLs from 2 sources.'),(72773,1480038134.320492,2,'info','Done URL check.'),(72774,1480038134.330993,2,'info','Done file contents scan'),(73444,1480302756.627196,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(73445,1480302757.877391,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73052,1480172123.378697,1,'info','Scheduled Wordfence scan starting at Saturday 26th of November 2016 02:55:23 PM'),(73475,1480302807.815833,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(73476,1480302807.818082,10,'info','SUM_ENDOK:Scanning for known malware files'),(72550,1479879103.976037,2,'info','Starting password strength check on 4 users.'),(73477,1480302807.852084,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(73478,1480302807.853541,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(73479,1480302807.858407,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(73480,1480302807.860949,10,'info','SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),(73481,1480302808.370791,2,'info','Starting scan of file contents'),(73482,1480302809.454315,2,'info','Scanned contents of 19 additional files at 17.55 per second'),(72375,1479792650.296466,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(73426,1480302750.178583,2,'info','Found 1 themes'),(73427,1480302750.201555,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(73074,1480172138.315636,2,'info','500 files indexed'),(73075,1480172138.725064,2,'info','1000 files indexed'),(72701,1480038056.285214,2,'info','Getting theme list from WordPress'),(72702,1480038056.292003,2,'info','Found 1 themes'),(73076,1480172139.028063,2,'info','1500 files indexed'),(73077,1480172139.142504,2,'info','2000 files indexed'),(72376,1479792650.705375,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(72377,1479792651.578286,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(72378,1479792655.130708,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(72379,1479792658.383257,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72380,1479792660.196261,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(72381,1479792661.241162,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72382,1479792662.630574,2,'info','Analyzed 2500 files containing 39.75 MB of data so far'),(72383,1479792663.307438,2,'info','Analyzed 2600 files containing 40.83 MB of data so far'),(72384,1479792664.252570,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72385,1479792670.304126,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72386,1479792672.000407,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72387,1479792673.205094,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72388,1479792673.310589,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(73431,1480302752.426128,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(73430,1480302752.409909,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(73429,1480302751.113539,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(73428,1480302751.107821,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(72604,1479966819.321310,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72846,1480075164.696142,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72644,1479966879.300419,2,'info','Scanned contents of 59 additional files at 4.82 per second'),(72640,1479966870.964425,2,'info','Scanned contents of 42 additional files at 10.73 per second'),(72641,1479966872.735840,2,'info','Scanned contents of 47 additional files at 8.27 per second'),(72642,1479966874.249566,2,'info','Scanned contents of 53 additional files at 7.36 per second'),(72643,1479966876.529632,2,'info','Scanned contents of 54 additional files at 5.70 per second'),(72637,1479966867.047461,2,'info','Starting scan of file contents'),(72638,1479966868.354102,2,'info','Scanned contents of 20 additional files at 15.33 per second'),(72639,1479966869.872214,2,'info','Scanned contents of 36 additional files at 12.75 per second'),(73392,1480251534.299623,10,'info','SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),(73393,1480251534.302834,10,'info','SUM_START:Scanning for weak passwords'),(73394,1480251534.303262,2,'info','Starting password strength check on 4 users.'),(73395,1480251536.740729,10,'info','SUM_ENDOK:Scanning for weak passwords'),(73396,1480251536.747492,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(73397,1480251536.747831,2,'info','Starting DNS scan for www.fiepfa.org'),(73398,1480251536.748377,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(73399,1480251536.749488,2,'info','Scanning DNS A record for fiepfa.org'),(72877,1480075210.855401,2,'info','Starting scan of file contents'),(72878,1480075212.022737,2,'info','Scanned contents of 20 additional files at 17.15 per second'),(72879,1480075214.234103,2,'info','Scanned contents of 36 additional files at 10.66 per second'),(72880,1480075215.516733,2,'info','Scanned contents of 39 additional files at 8.37 per second'),(72881,1480075216.835050,2,'info','Scanned contents of 46 additional files at 7.69 per second'),(73391,1480251534.289821,10,'info','SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),(73387,1480251533.930999,2,'info','Checking 1 URLs from 1 sources.'),(73388,1480251534.279425,2,'info','Done URL check.'),(73389,1480251534.279803,2,'info','Done examining URLs'),(73390,1480251534.286297,10,'info','SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),(73386,1480251533.929902,2,'info','Done host key check.'),(73385,1480251533.554108,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73384,1480251533.553113,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(73383,1480251533.473497,10,'info','SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),(73380,1480251533.459138,10,'info','SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),(73381,1480251533.462954,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(73382,1480251533.463503,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(72606,1479966823.825773,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72605,1479966820.827434,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72885,1480075225.453378,2,'info','Scanned contents of 55 additional files at 3.77 per second'),(72884,1480075222.933503,2,'info','Scanned contents of 54 additional files at 4.47 per second'),(72883,1480075219.982861,2,'info','Scanned contents of 53 additional files at 5.81 per second'),(72882,1480075218.155562,2,'info','Scanned contents of 47 additional files at 6.44 per second'),(72928,1480075235.636060,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12445 records in 1 minute 35 seconds.'),(73509,1480302827.695246,2,'info','Done examining URLs'),(72927,1480075235.633844,1,'info','-------------------'),(73511,1480302827.711328,10,'info','SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),(73510,1480302827.703529,10,'info','SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),(73422,1480302749.554796,1,'info','Contacting Wordfence to initiate scan'),(73423,1480302750.054959,2,'info','Getting plugin list from WordPress'),(73421,1480302749.552206,10,'info','SUM_ENDOK:Scanning your site for the HeartBleed vulnerability'),(73420,1480302748.049492,10,'info','SUM_START:Scanning your site for the HeartBleed vulnerability'),(73419,1480302746.046645,10,'info','SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),(73418,1480302744.044203,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(72969,1480161998.454311,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72569,1479879108.850767,2,'info','Wordfence used 44.18MB of memory for scan. Server peak memory usage was: 78.71MB'),(72499,1479879065.607452,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73512,1480302827.729810,10,'info','SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),(73521,1480302829.982308,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(73513,1480302827.735467,10,'info','SUM_START:Scanning for weak passwords'),(73514,1480302827.736046,2,'info','Starting password strength check on 4 users.'),(73515,1480302829.971233,10,'info','SUM_ENDOK:Scanning for weak passwords'),(73516,1480302829.978209,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(73517,1480302829.978652,2,'info','Starting DNS scan for www.fiepfa.org'),(73518,1480302829.979312,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(73519,1480302829.980199,2,'info','Scanning DNS A record for fiepfa.org'),(73520,1480302829.981463,2,'info','Scanning DNS MX record for fiepfa.org'),(73122,1480172155.049907,2,'info','Scanned contents of 42 additional files at 9.49 per second'),(73417,1480302742.042881,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(73119,1480172150.622729,2,'info','Starting scan of file contents'),(73120,1480172151.816976,2,'info','Scanned contents of 20 additional files at 16.77 per second'),(73121,1480172153.917504,2,'info','Scanned contents of 36 additional files at 10.93 per second'),(72500,1479879068.820538,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72978,1480162005.938374,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(72979,1480162007.018396,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(72412,1479792692.332571,2,'info','Checking 3 URLs from 2 sources.'),(72413,1479792692.749093,2,'info','Done URL check.'),(72411,1479792692.331251,2,'info','Done host key check.'),(72410,1479792691.965941,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72505,1479879079.078156,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72239,1479699324.674698,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(73197,1480233226.268939,2,'info','2000 files indexed'),(73196,1480233226.089170,2,'info','1500 files indexed'),(73195,1480233225.879508,2,'info','1000 files indexed'),(73194,1480233225.715486,2,'info','500 files indexed'),(72240,1479699324.921532,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73041,1480162052.155292,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2111.4270GB'),(72616,1479966845.098298,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72617,1479966845.496264,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73186,1480233224.507662,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(72886,1480075226.653408,2,'info','Scanned contents of 74 additional files at 4.68 per second'),(72887,1480075227.733407,2,'info','Scanned contents of 117 additional files at 6.93 per second'),(72888,1480075228.845213,2,'info','Scanned contents of 132 additional files at 7.34 per second'),(72889,1480075228.856323,2,'info','Scanned contents of 133 additional files at 7.39 per second'),(72890,1480075228.856983,2,'info','Asking Wordfence to check URL\'s against malware list.'),(72891,1480075228.859006,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72892,1480075229.240727,2,'info','Done host key check.'),(72893,1480075229.243459,2,'info','Checking 3 URLs from 2 sources.'),(72894,1480075229.621194,2,'info','Done URL check.'),(72895,1480075229.642261,2,'info','Done file contents scan'),(73533,1480302832.337398,2,'info','Wordfence used 44.16MB of memory for scan. Server peak memory usage was: 78.68MB'),(73110,1480172147.905492,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(73012,1480162046.455230,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72509,1479879083.818405,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72508,1479879083.709737,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72501,1479879070.635512,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(72806,1480038139.613303,1,'info','-------------------'),(72807,1480038139.613766,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12265 records in 1 minute 33 seconds.'),(72809,1480038140.043962,2,'info','Wordfence used 44.16MB of memory for scan. Server peak memory usage was: 78.69MB'),(72810,1480075137.581328,1,'info','Scheduled Wordfence scan starting at Friday 25th of November 2016 11:58:57 AM'),(73379,1480251533.456512,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(73378,1480251533.455561,2,'info','Done file contents scan'),(73377,1480251533.444130,2,'info','Done URL check.'),(73375,1480251533.072241,2,'info','Done host key check.'),(73376,1480251533.073911,2,'info','Checking 3 URLs from 2 sources.'),(73374,1480251532.675997,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(73373,1480251532.674819,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73372,1480251532.674567,2,'info','Scanned contents of 133 additional files at 8.42 per second'),(73371,1480251532.664806,2,'info','Scanned contents of 132 additional files at 8.37 per second'),(73370,1480251531.626124,2,'info','Scanned contents of 117 additional files at 7.94 per second'),(73369,1480251530.605706,2,'info','Scanned contents of 81 additional files at 5.90 per second'),(73368,1480251529.594798,2,'info','Scanned contents of 59 additional files at 4.64 per second'),(73367,1480251526.436843,2,'info','Scanned contents of 54 additional files at 5.65 per second'),(73366,1480251524.146877,2,'info','Scanned contents of 53 additional files at 7.30 per second'),(72680,1479966887.875404,2,'info','The disk has 2199881.50 MB space available'),(73094,1480172143.495778,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(73093,1480172143.279487,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(73092,1480172143.061722,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(73091,1480172142.847263,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(73090,1480172142.615245,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(73309,1480251458.696981,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(72963,1480161956.644271,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72964,1480161969.160153,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72965,1480161969.930198,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72966,1480161971.539322,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72281,1479699341.058890,2,'info','Scanned contents of 47 additional files at 7.54 per second'),(72280,1479699339.921713,2,'info','Scanned contents of 46 additional files at 9.02 per second'),(73310,1480251459.645870,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(72279,1479699338.736232,2,'info','Scanned contents of 40 additional files at 10.23 per second'),(72278,1479699337.666692,2,'info','Scanned contents of 36 additional files at 12.67 per second'),(72277,1479699336.144702,2,'info','Scanned contents of 20 additional files at 15.15 per second'),(72276,1479699334.823239,2,'info','Starting scan of file contents'),(73016,1480162047.187334,2,'info','Done file contents scan'),(73015,1480162047.177866,2,'info','Done URL check.'),(73014,1480162046.822179,2,'info','Checking 3 URLs from 2 sources.'),(73013,1480162046.819762,2,'info','Done host key check.'),(72868,1480075210.210083,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72869,1480075210.319484,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72263,1479699330.201964,2,'info','Analyzed 2600 files containing 40.83 MB of data so far'),(72262,1479699329.984268,2,'info','Analyzed 2500 files containing 39.75 MB of data so far'),(72261,1479699329.731761,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72260,1479699329.556788,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(72259,1479699329.342277,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72258,1479699328.935896,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(72257,1479699328.603175,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(72256,1479699328.425881,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73302,1480251456.866366,1,'info','Contacting Wordfence to initiate scan'),(73301,1480251456.863320,10,'info','SUM_ENDOK:Scanning your site for the HeartBleed vulnerability'),(72620,1479966853.368592,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72619,1479966850.133648,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73177,1480233219.967963,10,'info','SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),(72621,1479966855.152470,2,'info','Analyzed 2300 files containing 36.35 MB of data so far'),(72622,1479966856.103593,2,'info','Analyzed 2400 files containing 37.7 MB of data so far'),(73249,1480233301.939019,2,'info','Scanned contents of 88 additional files at 5.29 per second'),(73250,1480233302.945830,2,'info','Scanned contents of 117 additional files at 6.63 per second'),(73251,1480233304.131672,2,'info','Scanned contents of 132 additional files at 7.01 per second'),(73252,1480233304.143676,2,'info','Scanned contents of 133 additional files at 7.06 per second'),(73253,1480233304.143970,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73254,1480233304.151363,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(73255,1480233304.538312,2,'info','Done host key check.'),(73256,1480233304.540192,2,'info','Checking 3 URLs from 2 sources.'),(73257,1480233304.963737,2,'info','Done URL check.'),(73258,1480233304.974302,2,'info','Done file contents scan'),(73259,1480233304.975505,10,'info','SUM_ENDOK:Scanning file contents for infections and vulnerabilities'),(73260,1480233304.977547,10,'info','SUM_ENDOK:Scanning files for URLs in Google\'s Safe Browsing List'),(73261,1480233304.981644,10,'info','SUM_START:Scanning for publicly accessible quarantined files'),(73262,1480233304.981958,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(73263,1480233304.985953,10,'info','SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),(73264,1480233305.076312,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(73265,1480233305.077191,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73266,1480233305.496886,2,'info','Done host key check.'),(73267,1480233305.498018,2,'info','Checking 1 URLs from 1 sources.'),(73268,1480233305.915319,2,'info','Done URL check.'),(73269,1480233305.916369,2,'info','Done examining URLs'),(73270,1480233305.924551,10,'info','SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),(73271,1480233305.930330,10,'info','SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),(73272,1480233305.946325,10,'info','SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),(73273,1480233305.953065,10,'info','SUM_START:Scanning for weak passwords'),(73274,1480233305.955734,2,'info','Starting password strength check on 4 users.'),(73275,1480233309.361776,10,'info','SUM_ENDOK:Scanning for weak passwords'),(73276,1480233309.366647,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(73277,1480233309.367145,2,'info','Starting DNS scan for www.fiepfa.org'),(73278,1480233309.367934,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(73279,1480233309.369008,2,'info','Scanning DNS A record for fiepfa.org'),(73280,1480233309.370415,2,'info','Scanning DNS MX record for fiepfa.org'),(73281,1480233309.371406,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(73282,1480233309.376706,10,'info','SUM_START:Scanning to check available disk space'),(73283,1480233309.377166,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2100.1208GB'),(73284,1480233309.377480,2,'info','The disk has 2150523.73 MB space available'),(73285,1480233309.377801,10,'info','SUM_ENDOK:Scanning to check available disk space'),(73286,1480233309.383127,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(73287,1480233311.264981,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(73288,1480233311.270070,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(73289,1480233311.272711,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(73290,1480233311.368852,1,'info','-------------------'),(73291,1480233311.369950,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12345 records in 1 minute 38 seconds.'),(73292,1480233311.370345,10,'info','SUM_FINAL:Scan complete. You have 2 new issues to fix. See below.'),(73293,1480233311.778226,2,'info','Wordfence used 44.16MB of memory for scan. Server peak memory usage was: 78.69MB'),(73294,1480251438.369761,1,'info','Scheduled Wordfence scan starting at Sunday 27th of November 2016 12:57:18 PM'),(73295,1480251447.863197,10,'info','SUM_PREP:Preparing a new scan.'),(73296,1480251447.872198,10,'info','SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),(73297,1480251449.873765,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(73298,1480251451.874935,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(73299,1480251453.876217,10,'info','SUM_PAIDONLY:Checking if your site is on the Google Safe Browsing list is for paid members only'),(73300,1480251455.879234,10,'info','SUM_START:Scanning your site for the HeartBleed vulnerability'),(73179,1480233223.069765,10,'info','SUM_ENDOK:Scanning your site for the HeartBleed vulnerability'),(73178,1480233221.973892,10,'info','SUM_START:Scanning your site for the HeartBleed vulnerability'),(72618,1479966846.360289,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(72740,1480038102.282480,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72739,1480038099.075708,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73189,1480233225.536624,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(73190,1480233225.536959,10,'info','SUM_DISABLED:Skipping theme scan'),(73191,1480233225.537215,10,'info','SUM_DISABLED:Skipping plugin scan'),(73192,1480233225.539241,10,'info','SUM_START:Scanning for known malware files'),(72599,1479966813.613149,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72597,1479966811.990799,2,'info','3000 files indexed'),(72598,1479966811.993386,2,'info','3012 files indexed'),(72595,1479966811.320520,2,'info','2000 files indexed'),(72596,1479966811.853983,2,'info','2500 files indexed'),(72593,1479966811.062942,2,'info','1000 files indexed'),(72594,1479966811.173752,2,'info','1500 files indexed'),(72592,1479966810.953382,2,'info','500 files indexed'),(72943,1480161942.732568,2,'info','Found 1 themes'),(73492,1480302826.064939,2,'info','Scanned contents of 133 additional files at 7.52 per second'),(73493,1480302826.065250,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73494,1480302826.066878,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(73485,1480302814.630754,2,'info','Scanned contents of 47 additional files at 7.51 per second'),(73486,1480302816.353555,2,'info','Scanned contents of 52 additional files at 6.51 per second'),(73487,1480302819.453406,2,'info','Scanned contents of 54 additional files at 4.87 per second'),(73488,1480302822.271812,2,'info','Scanned contents of 55 additional files at 3.96 per second'),(73489,1480302823.342639,2,'info','Scanned contents of 62 additional files at 4.14 per second'),(73490,1480302824.408883,2,'info','Scanned contents of 95 additional files at 5.92 per second'),(73491,1480302825.738660,2,'info','Scanned contents of 130 additional files at 7.49 per second'),(72581,1479966808.969495,2,'info','Getting theme list from WordPress'),(72582,1479966808.976489,2,'info','Found 1 themes'),(72613,1479966841.296161,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(73032,1480162048.046178,2,'info','Starting password strength check on 4 users.'),(72450,1479879011.052136,1,'info','Scheduled Wordfence scan starting at Wednesday 23rd of November 2016 05:30:11 AM'),(72614,1479966844.013172,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72615,1479966844.677381,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72494,1479879059.340177,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72495,1479879060.014151,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72496,1479879060.425374,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(73010,1480162046.453710,2,'info','Scanned contents of 133 additional files at 8.02 per second'),(73011,1480162046.453960,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73008,1480162044.837294,2,'info','Scanned contents of 118 additional files at 7.88 per second'),(73009,1480162046.033552,2,'info','Scanned contents of 130 additional files at 8.04 per second'),(73003,1480162038.020859,2,'info','Scanned contents of 47 additional files at 5.76 per second'),(73004,1480162039.408408,2,'info','Scanned contents of 53 additional files at 5.55 per second'),(73005,1480162041.668879,2,'info','Scanned contents of 54 additional files at 4.57 per second'),(73006,1480162042.730129,2,'info','Scanned contents of 61 additional files at 4.74 per second'),(73007,1480162043.758907,2,'info','Scanned contents of 85 additional files at 6.12 per second'),(72520,1479879089.235438,2,'info','Scanned contents of 42 additional files at 8.69 per second'),(72519,1479879087.906291,2,'info','Scanned contents of 36 additional files at 10.27 per second'),(73000,1480162033.536620,2,'info','Scanned contents of 21 additional files at 5.71 per second'),(72517,1479879084.400232,2,'info','Starting scan of file contents'),(72518,1479879085.408071,2,'info','Scanned contents of 19 additional files at 18.87 per second'),(72766,1480038131.668087,2,'info','Scanned contents of 74 additional files at 4.75 per second'),(73001,1480162035.106220,2,'info','Scanned contents of 36 additional files at 6.86 per second'),(73002,1480162036.180979,2,'info','Scanned contents of 42 additional files at 6.64 per second'),(73127,1480172162.720749,2,'info','Scanned contents of 106 additional files at 8.76 per second'),(72460,1479879023.601698,2,'info','Found 6 plugins'),(72459,1479879023.492270,2,'info','Getting plugin list from WordPress'),(73128,1480172163.804752,2,'info','Scanned contents of 129 additional files at 9.79 per second'),(73129,1480172165.024902,2,'info','Scanned contents of 132 additional files at 9.17 per second'),(73130,1480172165.034970,2,'info','Scanned contents of 133 additional files at 9.23 per second'),(73131,1480172165.035255,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73132,1480172165.036675,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(73133,1480172165.455591,2,'info','Done host key check.'),(73134,1480172165.459487,2,'info','Checking 3 URLs from 2 sources.'),(73135,1480172165.840707,2,'info','Done URL check.'),(73136,1480172165.851426,2,'info','Done file contents scan'),(73415,1480302740.034528,10,'info','SUM_PREP:Preparing a new scan.'),(73416,1480302740.041418,10,'info','SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),(73414,1480302736.746883,1,'info','Scheduled Wordfence scan starting at Monday 28th of November 2016 03:12:16 AM'),(73140,1480172165.860448,10,'info','SUM_ENDOK:Scanning for publicly accessible quarantined files'),(73141,1480172165.864906,10,'info','SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),(73142,1480172165.954128,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(73459,1480302785.912377,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(73460,1480302786.326171,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(73461,1480302786.719314,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73462,1480302787.573467,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73027,1480162048.021029,2,'info','Done examining URLs'),(72458,1479879022.990418,1,'info','Contacting Wordfence to initiate scan'),(73156,1480172171.378249,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(73143,1480172165.954972,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73144,1480172166.315245,2,'info','Done host key check.'),(73145,1480172166.316095,2,'info','Checking 1 URLs from 1 sources.'),(73146,1480172166.721005,2,'info','Done URL check.'),(73147,1480172166.721524,2,'info','Done examining URLs'),(73148,1480172166.727913,10,'info','SUM_ENDOK:Scanning posts for URLs in Google\'s Safe Browsing List'),(73149,1480172168.730271,10,'info','SUM_START:Scanning comments for URLs in Google\'s Safe Browsing List'),(73150,1480172168.750354,10,'info','SUM_ENDOK:Scanning comments for URLs in Google\'s Safe Browsing List'),(73151,1480172168.756623,10,'info','SUM_START:Scanning for weak passwords'),(73152,1480172168.757325,2,'info','Starting password strength check on 4 users.'),(73153,1480172171.370926,10,'info','SUM_ENDOK:Scanning for weak passwords'),(73154,1480172171.377083,10,'info','SUM_START:Scanning DNS for unauthorized changes'),(73155,1480172171.377484,2,'info','Starting DNS scan for www.fiepfa.org'),(73164,1480172171.417532,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(73165,1480172173.159873,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(72627,1479966865.183364,2,'info','Analyzed 2900 files containing 44.52 MB of data so far'),(72626,1479966863.531092,2,'info','Analyzed 2800 files containing 43.11 MB of data so far'),(72625,1479966861.750230,2,'info','Analyzed 2700 files containing 41.57 MB of data so far'),(73166,1480172173.169179,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(72624,1479966858.096285,2,'info','Analyzed 2600 files containing 40.81 MB of data so far'),(72623,1479966857.455340,2,'info','Analyzed 2500 files containing 39.73 MB of data so far'),(73167,1480172173.172892,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(73168,1480172173.272772,1,'info','-------------------'),(73169,1480172173.273857,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12505 records in 48 seconds.'),(73170,1480172173.274192,10,'info','SUM_FINAL:Scan complete. You have 2 new issues to fix. See below.'),(73171,1480172173.642476,2,'info','Wordfence used 20.79MB of memory for scan. Server peak memory usage was: 55.32MB'),(73172,1480233208.577304,1,'info','Scheduled Wordfence scan starting at Sunday 27th of November 2016 07:53:28 AM'),(73173,1480233213.954968,10,'info','SUM_PREP:Preparing a new scan.'),(73174,1480233213.963850,10,'info','SUM_PAIDONLY:Remote scan of public facing site only available to paid members'),(73175,1480233215.965038,10,'info','SUM_PAIDONLY:Check if your site is being Spamvertized is for paid members only'),(73176,1480233217.966574,10,'info','SUM_PAIDONLY:Checking if your IP is generating spam is for paid members only'),(72341,1479792613.041806,2,'info','Found 1 themes'),(72716,1480038059.214150,2,'info','2500 files indexed'),(72714,1480038058.656990,2,'info','1500 files indexed'),(72715,1480038058.753244,2,'info','2000 files indexed'),(72712,1480038058.376132,2,'info','500 files indexed'),(72713,1480038058.513067,2,'info','1000 files indexed'),(73064,1480172135.229592,2,'info','Found 1 themes'),(73435,1480302752.431475,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(73433,1480302752.426682,10,'info','SUM_DISABLED:Skipping plugin scan'),(73434,1480302752.428580,10,'info','SUM_START:Scanning for known malware files'),(73432,1480302752.426427,10,'info','SUM_DISABLED:Skipping theme scan'),(72351,1479792614.893490,2,'info','500 files indexed'),(72352,1479792615.057944,2,'info','1000 files indexed'),(72353,1479792615.214139,2,'info','1500 files indexed'),(72354,1479792615.348116,2,'info','2000 files indexed'),(72355,1479792616.032046,2,'info','2500 files indexed'),(72356,1479792616.156100,2,'info','3000 files indexed'),(72357,1479792616.160304,2,'info','3012 files indexed'),(72358,1479792617.668620,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72359,1479792618.958368,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72360,1479792620.196736,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(72361,1479792621.701004,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72362,1479792622.657347,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72363,1479792623.258315,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72364,1479792624.678592,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72365,1479792627.536216,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72366,1479792641.188756,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72367,1479792641.697247,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72368,1479792642.454328,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72369,1479792643.318120,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72370,1479792644.280450,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72371,1479792644.821560,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72372,1479792645.329383,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72373,1479792645.738410,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72374,1479792649.875259,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72238,1479699324.466199,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(73193,1480233225.541416,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(72236,1479699324.223103,2,'info','3000 files indexed'),(72237,1479699324.225886,2,'info','3012 files indexed'),(73308,1480251458.693919,10,'info','SUM_ENDSUCCESS:Fetching core, theme and plugin file signatures from Wordfence'),(72567,1479879108.258605,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12447 records in 1 minute 34 seconds.'),(73106,1480172146.566806,2,'info','Analyzed 2600 files containing 40.84 MB of data so far'),(73107,1480172146.877968,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72771,1480038133.945516,2,'info','Done host key check.'),(72770,1480038133.530045,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72544,1479879103.912090,2,'info','Done URL check.'),(72545,1479879103.912595,2,'info','Done examining URLs'),(73471,1480302806.546221,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(73472,1480302807.737384,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(73473,1480302807.812792,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(73474,1480302807.813189,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(72264,1479699330.525447,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72767,1480038132.671296,2,'info','Scanned contents of 119 additional files at 7.18 per second'),(72768,1480038133.528011,2,'info','Scanned contents of 133 additional files at 7.63 per second'),(72769,1480038133.528383,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73311,1480251459.650748,10,'info','SUM_START:Comparing core WordPress files against originals in repository'),(73312,1480251459.651086,10,'info','SUM_DISABLED:Skipping theme scan'),(73313,1480251459.651377,10,'info','SUM_DISABLED:Skipping plugin scan'),(73314,1480251459.653255,10,'info','SUM_START:Scanning for known malware files'),(73315,1480251459.656537,10,'info','SUM_START:Scanning for unknown files in wp-admin and wp-includes'),(72282,1479699342.521351,2,'info','Scanned contents of 53 additional files at 6.89 per second'),(72283,1479699344.770719,2,'info','Scanned contents of 54 additional files at 5.43 per second'),(72284,1479699345.805170,2,'info','Scanned contents of 63 additional files at 5.74 per second'),(72285,1479699346.826536,2,'info','Scanned contents of 112 additional files at 9.33 per second'),(73316,1480251459.793442,2,'info','500 files indexed'),(72554,1479879106.238082,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72553,1479879106.237281,2,'info','Starting DNS scan for www.fiepfa.org'),(73483,1480302811.523080,2,'info','Scanned contents of 36 additional files at 11.42 per second'),(72860,1480075196.102359,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72859,1480075192.838791,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(72858,1480075188.990274,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(72857,1480075188.118974,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(72790,1480038135.384725,2,'info','Starting password strength check on 4 users.'),(72785,1480038135.344727,2,'info','Done examining URLs'),(72784,1480038135.343937,2,'info','Done URL check.'),(72783,1480038134.926105,2,'info','Checking 1 URLs from 1 sources.'),(72782,1480038134.814264,2,'info','Done host key check.'),(72780,1480038134.407127,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72781,1480038134.407881,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73332,1480251487.511326,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(73333,1480251488.430200,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(73334,1480251489.302081,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(73335,1480251490.170448,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(73524,1480302830.008267,2,'info','The disk has 2151602.46 MB space available'),(72911,1480075230.733428,2,'info','Starting password strength check on 4 users.'),(73525,1480302830.008523,10,'info','SUM_ENDOK:Scanning to check available disk space'),(73526,1480302830.013828,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(73527,1480302831.885271,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(73528,1480302831.889868,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(72906,1480075230.672217,2,'info','Done examining URLs'),(72905,1480075230.593913,2,'info','Done URL check.'),(72904,1480075230.178804,2,'info','Checking 1 URLs from 1 sources.'),(72903,1480075230.177775,2,'info','Done host key check.'),(72902,1480075229.803770,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73458,1480302785.254627,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(73161,1480172171.411506,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2110.5925GB'),(73162,1480172171.411783,2,'info','The disk has 2161246.74 MB space available'),(73163,1480172171.412051,10,'info','SUM_ENDOK:Scanning to check available disk space'),(73160,1480172171.411127,10,'info','SUM_START:Scanning to check available disk space'),(73503,1480302826.881226,10,'info','SUM_START:Scanning posts for URLs in Google\'s Safe Browsing List'),(73504,1480302826.970050,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72931,1480161928.725916,1,'info','Scheduled Wordfence scan starting at Saturday 26th of November 2016 12:05:28 PM'),(73105,1480172146.236681,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(73104,1480172145.932906,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72660,1479966884.281446,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72661,1479966884.282442,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(72662,1479966884.699585,2,'info','Done host key check.'),(72663,1479966884.702321,2,'info','Checking 1 URLs from 1 sources.'),(72664,1479966885.129964,2,'info','Done URL check.'),(72665,1479966885.132436,2,'info','Done examining URLs'),(73103,1480172145.674232,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(73102,1480172145.434112,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(72461,1479879023.606066,2,'info','Getting theme list from WordPress'),(73123,1480172156.859534,2,'info','Scanned contents of 47 additional files at 7.54 per second'),(73124,1480172158.253840,2,'info','Scanned contents of 53 additional files at 6.95 per second'),(73125,1480172160.636650,2,'info','Scanned contents of 54 additional files at 5.39 per second'),(73126,1480172161.716740,2,'info','Scanned contents of 63 additional files at 5.68 per second'),(72962,1480161954.962359,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(72955,1480161947.513798,2,'info','1500 files indexed'),(72956,1480161948.240055,2,'info','2000 files indexed'),(72957,1480161949.713766,2,'info','2500 files indexed'),(72958,1480161950.273769,2,'info','3000 files indexed'),(72959,1480161950.320771,2,'info','3012 files indexed'),(72960,1480161952.313797,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72961,1480161953.771150,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72485,1479879035.847180,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72901,1480075229.803035,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(73529,1480302831.891740,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(72686,1479966890.046430,1,'info','-------------------'),(72687,1479966890.046736,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12160 records in 1 minute 31 seconds.'),(73087,1480172141.672524,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72689,1479966890.467423,2,'info','Wordfence used 44.16MB of memory for scan. Server peak memory usage was: 78.66MB'),(73532,1480302831.975425,10,'info','SUM_FINAL:Scan complete. You have 2 new issues to fix. See below.'),(73530,1480302831.974893,1,'info','-------------------'),(73531,1480302831.975211,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12255 records in 1 minute 31 seconds.'),(72486,1479879038.698514,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(73088,1480172141.943831,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(73089,1480172142.482109,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(73317,1480251459.930953,2,'info','1000 files indexed'),(73318,1480251460.077090,2,'info','1500 files indexed'),(73319,1480251460.217179,2,'info','2000 files indexed'),(73320,1480251460.554626,2,'info','2500 files indexed'),(73321,1480251460.669403,2,'info','3000 files indexed'),(73322,1480251460.671791,2,'info','3012 files indexed'),(72286,1479699348.019456,2,'info','Scanned contents of 132 additional files at 10.00 per second'),(72287,1479699348.029905,2,'info','Scanned contents of 133 additional files at 10.07 per second'),(72288,1479699348.030195,2,'info','Asking Wordfence to check URL\'s against malware list.'),(72289,1479699348.031563,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72290,1479699348.392976,2,'info','Done host key check.'),(72291,1479699348.394533,2,'info','Checking 3 URLs from 2 sources.'),(72292,1479699348.778429,2,'info','Done URL check.'),(72293,1479699348.792937,2,'info','Done file contents scan'),(72967,1480161974.656249,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72968,1480161997.713443,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72570,1479966795.561609,1,'info','Scheduled Wordfence scan starting at Thursday 24th of November 2016 05:53:15 AM'),(73441,1480302753.764110,2,'info','3000 files indexed'),(73440,1480302753.633675,2,'info','2500 files indexed'),(73442,1480302753.766885,2,'info','3012 files indexed'),(72299,1479699348.875436,2,'info','Examining URLs found in posts we scanned for dangerous websites'),(72300,1479699348.876062,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(72301,1479699349.303012,2,'info','Done host key check.'),(72302,1479699349.304313,2,'info','Checking 1 URLs from 1 sources.'),(72303,1479699349.682355,2,'info','Done URL check.'),(72304,1479699349.682900,2,'info','Done examining URLs'),(73439,1480302753.220602,2,'info','2000 files indexed'),(73437,1480302752.831982,2,'info','1000 files indexed'),(73438,1480302753.037816,2,'info','1500 files indexed'),(73436,1480302752.633201,2,'info','500 files indexed'),(73060,1480172134.407436,1,'info','Contacting Wordfence to initiate scan'),(72309,1479699349.720565,2,'info','Starting password strength check on 4 users.'),(73063,1480172135.220220,2,'info','Getting theme list from WordPress'),(73061,1480172135.211646,2,'info','Getting plugin list from WordPress'),(73062,1480172135.216763,2,'info','Found 6 plugins'),(72312,1479699354.761732,2,'info','Starting DNS scan for www.fiepfa.org'),(72313,1479699354.762330,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72314,1479699354.763022,2,'info','Scanning DNS A record for fiepfa.org'),(72315,1479699354.764098,2,'info','Scanning DNS MX record for fiepfa.org'),(72749,1480038115.495655,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72318,1479699354.771145,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2138.6597GB'),(72319,1479699354.771431,2,'info','The disk has 2189987.57 MB space available'),(72748,1480038115.420055,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72747,1480038114.153198,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72746,1480038112.087061,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72745,1480038108.056504,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72744,1480038107.057259,2,'info','Analyzed 2600 files containing 40.83 MB of data so far'),(72325,1479699355.627498,1,'info','-------------------'),(72326,1479699355.627978,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12213 records in 45 seconds.'),(72743,1480038106.408196,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(72328,1479699355.997632,2,'info','Wordfence used 20.79MB of memory for scan. Server peak memory usage was: 55.32MB'),(72439,1479792696.384746,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2141.0315GB'),(72440,1479792696.385570,2,'info','The disk has 2192416.27 MB space available'),(72861,1480075197.882238,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(72862,1480075198.828322,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72867,1480075208.772315,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72866,1480075207.110952,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72864,1480075200.776372,2,'info','Analyzed 2600 files containing 40.83 MB of data so far'),(72865,1480075205.242366,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(72863,1480075200.129480,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(72980,1480162010.842944,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(72559,1479879106.247323,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2127.6084GB'),(72560,1479879106.247632,2,'info','The disk has 2178671.04 MB space available'),(73451,1480302778.597151,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72430,1479792693.658494,2,'info','Starting password strength check on 4 users.'),(73452,1480302779.086424,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(73453,1480302779.850406,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72433,1479792696.372214,2,'info','Starting DNS scan for www.fiepfa.org'),(72434,1479792696.373038,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72435,1479792696.374172,2,'info','Scanning DNS A record for fiepfa.org'),(72436,1479792696.375706,2,'info','Scanning DNS MX record for fiepfa.org'),(73042,1480162052.155495,2,'info','The disk has 2162101.24 MB space available'),(73185,1480233223.607938,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(73184,1480233223.582651,2,'info','Found 1 themes'),(73183,1480233223.576475,2,'info','Getting theme list from WordPress'),(73182,1480233223.574042,2,'info','Found 6 plugins'),(73180,1480233223.072023,1,'info','Contacting Wordfence to initiate scan'),(73181,1480233223.566967,2,'info','Getting plugin list from WordPress'),(72473,1479879025.763908,2,'info','1000 files indexed'),(72474,1479879025.926512,2,'info','1500 files indexed'),(72475,1479879026.054907,2,'info','2000 files indexed'),(72476,1479879026.477819,2,'info','2500 files indexed'),(72477,1479879026.747052,2,'info','3000 files indexed'),(72472,1479879025.553791,2,'info','500 files indexed'),(72396,1479792673.813297,2,'info','Starting scan of file contents'),(73084,1480172140.844655,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(73083,1480172140.556088,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73081,1480172140.041222,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(73082,1480172140.315840,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(73080,1480172139.673594,2,'info','3012 files indexed'),(73078,1480172139.463112,2,'info','2500 files indexed'),(73079,1480172139.669473,2,'info','3000 files indexed'),(72698,1480038055.621601,1,'info','Contacting Wordfence to initiate scan'),(72699,1480038056.172564,2,'info','Getting plugin list from WordPress'),(72700,1480038056.282458,2,'info','Found 6 plugins'),(72742,1480038104.983606,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72329,1479792599.919282,1,'info','Scheduled Wordfence scan starting at Tuesday 22nd of November 2016 05:29:59 AM'),(72498,1479879061.706280,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73232,1480233284.717359,10,'info','SUM_ENDOK:Comparing core WordPress files against originals in repository'),(73233,1480233284.719334,10,'info','SUM_ENDOK:Scanning for unknown files in wp-admin and wp-includes'),(73234,1480233284.721149,10,'info','SUM_ENDOK:Scanning for known malware files'),(73096,1480172143.942238,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72676,1479966887.870316,2,'info','Scanning DNS MX record for fiepfa.org'),(72675,1479966887.869066,2,'info','Scanning DNS A record for fiepfa.org'),(72674,1479966887.868329,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72673,1479966887.867663,2,'info','Starting DNS scan for www.fiepfa.org'),(73097,1480172144.154302,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(73098,1480172144.355266,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72670,1479966885.177120,2,'info','Starting password strength check on 4 users.'),(73099,1480172144.577705,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73100,1480172144.759755,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73101,1480172145.043357,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(72794,1480038137.631079,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72793,1480038137.630475,2,'info','Starting DNS scan for www.fiepfa.org'),(72795,1480038137.631810,2,'info','Scanning DNS A record for fiepfa.org'),(72796,1480038137.632820,2,'info','Scanning DNS MX record for fiepfa.org'),(72799,1480038137.638108,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2138.4630GB'),(72800,1480038137.638302,2,'info','The disk has 2189786.16 MB space available'),(73331,1480251486.763549,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(73330,1480251472.424369,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(73323,1480251462.493548,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(73324,1480251463.775644,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(73325,1480251465.009101,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73326,1480251466.546543,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(73327,1480251467.530085,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(73328,1480251468.143482,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(73329,1480251469.576893,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72502,1479879071.769894,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(72607,1479966837.037794,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72608,1479966837.636359,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72612,1479966840.785326,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72611,1479966840.243465,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72610,1479966839.379379,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72609,1479966838.405401,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72398,1479792676.850695,2,'info','Scanned contents of 36 additional files at 11.86 per second'),(72397,1479792675.065241,2,'info','Scanned contents of 33 additional files at 26.38 per second'),(72400,1479792679.851647,2,'info','Scanned contents of 46 additional files at 7.62 per second'),(72399,1479792678.024555,2,'info','Scanned contents of 39 additional files at 9.26 per second'),(73109,1480172147.432576,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(73108,1480172147.148590,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(73188,1480233225.531277,10,'info','SUM_ENDSUCCESS:Fetching list of known malware files from Wordfence'),(72600,1479966814.974341,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72492,1479879056.011028,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72491,1479879055.500121,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72490,1479879054.614458,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72488,1479879052.950385,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72489,1479879053.706421,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72487,1479879052.450112,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(73443,1480302755.350243,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72757,1480038116.101398,2,'info','Starting scan of file contents'),(72758,1480038117.111202,2,'info','Scanned contents of 19 additional files at 18.83 per second'),(72759,1480038119.439120,2,'info','Scanned contents of 36 additional files at 10.79 per second'),(72760,1480038120.549662,2,'info','Scanned contents of 39 additional files at 8.77 per second'),(72761,1480038121.918946,2,'info','Scanned contents of 46 additional files at 7.91 per second'),(72762,1480038123.835865,2,'info','Scanned contents of 47 additional files at 6.08 per second'),(72763,1480038125.316191,2,'info','Scanned contents of 53 additional files at 5.75 per second'),(72764,1480038127.573941,2,'info','Scanned contents of 54 additional files at 4.71 per second'),(72765,1480038130.569195,2,'info','Scanned contents of 55 additional files at 3.80 per second'),(73411,1480251538.211191,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12504 records in 1 minute 31 seconds.'),(72845,1480075161.841305,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(72843,1480075159.830628,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72844,1480075160.414462,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72977,1480162005.339274,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72976,1480162004.659276,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72819,1480075150.065254,2,'info','Getting plugin list from WordPress'),(72820,1480075150.174303,2,'info','Found 6 plugins'),(72821,1480075150.177449,2,'info','Getting theme list from WordPress'),(72822,1480075150.189098,2,'info','Found 1 themes'),(72832,1480075152.311760,2,'info','500 files indexed'),(72833,1480075152.540647,2,'info','1000 files indexed'),(72834,1480075152.683298,2,'info','1500 files indexed'),(72835,1480075152.869065,2,'info','2000 files indexed'),(72836,1480075153.232440,2,'info','2500 files indexed'),(72837,1480075153.354810,2,'info','3000 files indexed'),(72838,1480075153.357172,2,'info','3012 files indexed'),(72839,1480075154.839959,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72840,1480075156.118227,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72841,1480075157.358514,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(72842,1480075158.876250,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(73410,1480251538.210308,1,'info','-------------------'),(73400,1480251536.750464,2,'info','Scanning DNS MX record for fiepfa.org'),(73401,1480251536.751128,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(73402,1480251536.757169,10,'info','SUM_START:Scanning to check available disk space'),(73403,1480251536.757594,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2099.2569GB'),(73404,1480251536.758159,2,'info','The disk has 2149639.09 MB space available'),(73405,1480251536.758368,10,'info','SUM_ENDOK:Scanning to check available disk space'),(73406,1480251536.766990,10,'info','SUM_START:Scanning for old themes, plugins and core files'),(73407,1480251538.074197,10,'info','SUM_ENDBAD:Scanning for old themes, plugins and core files'),(73408,1480251538.080549,10,'info','SUM_START:Scanning for admin users not created through WordPress'),(73409,1480251538.083864,10,'info','SUM_ENDOK:Scanning for admin users not created through WordPress'),(72645,1479966880.309442,2,'info','Scanned contents of 91 additional files at 6.86 per second'),(73365,1480251522.626975,2,'info','Scanned contents of 47 additional files at 8.19 per second'),(72401,1479792681.125818,2,'info','Scanned contents of 47 additional files at 6.43 per second'),(72402,1479792682.471584,2,'info','Scanned contents of 53 additional files at 6.12 per second'),(72403,1479792684.749112,2,'info','Scanned contents of 54 additional files at 4.94 per second'),(72404,1479792687.935756,2,'info','Scanned contents of 55 additional files at 3.89 per second'),(72405,1479792688.954959,2,'info','Scanned contents of 63 additional files at 4.16 per second'),(72406,1479792689.961169,2,'info','Scanned contents of 106 additional files at 6.56 per second'),(72407,1479792690.973944,2,'info','Scanned contents of 126 additional files at 7.34 per second'),(72408,1479792691.964343,2,'info','Scanned contents of 133 additional files at 7.33 per second'),(72409,1479792691.964609,2,'info','Asking Wordfence to check URL\'s against malware list.'),(73413,1480251538.637015,2,'info','Wordfence used 44.15MB of memory for scan. Server peak memory usage was: 78.67MB'),(73412,1480251538.211479,10,'info','SUM_FINAL:Scan complete. You have 2 new issues to fix. See below.'),(72930,1480075236.053790,2,'info','Wordfence used 44.17MB of memory for scan. Server peak memory usage was: 78.70MB'),(73505,1480302826.971187,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(73506,1480302827.325280,2,'info','Done host key check.'),(73507,1480302827.326325,2,'info','Checking 1 URLs from 1 sources.'),(73508,1480302827.694733,2,'info','Done URL check.'),(73248,1480233300.865260,2,'info','Scanned contents of 63 additional files at 4.05 per second'),(73247,1480233299.811691,2,'info','Scanned contents of 55 additional files at 3.79 per second'),(73246,1480233296.720359,2,'info','Scanned contents of 54 additional files at 4.73 per second'),(73245,1480233293.573038,2,'info','Scanned contents of 52 additional files at 6.28 per second'),(73244,1480233291.969267,2,'info','Scanned contents of 47 additional files at 7.04 per second'),(73243,1480233290.521600,2,'info','Scanned contents of 46 additional files at 8.80 per second'),(73242,1480233289.370184,2,'info','Scanned contents of 42 additional files at 10.31 per second'),(72255,1479699328.218364,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72254,1479699328.039097,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72253,1479699327.815657,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72252,1479699327.595917,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72251,1479699327.440094,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72250,1479699327.286891,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72249,1479699327.121456,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(73235,1480233284.748898,10,'info','SUM_START:Check for publicly accessible configuration files, backup files and logs'),(73236,1480233284.750262,10,'info','SUM_ENDOK:Check for publicly accessible configuration files, backup files and logs'),(73237,1480233284.754109,10,'info','SUM_START:Scanning file contents for infections and vulnerabilities'),(73238,1480233284.755527,10,'info','SUM_START:Scanning files for URLs in Google\'s Safe Browsing List'),(73239,1480233285.295298,2,'info','Starting scan of file contents'),(73240,1480233286.310868,2,'info','Scanned contents of 19 additional files at 18.72 per second'),(73241,1480233288.306668,2,'info','Scanned contents of 36 additional files at 11.96 per second'),(73424,1480302750.164473,2,'info','Found 6 plugins'),(72503,1479879073.253517,2,'info','Analyzed 2500 files containing 39.75 MB of data so far'),(72504,1479879073.897371,2,'info','Analyzed 2600 files containing 40.83 MB of data so far'),(73215,1480233257.153271,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(73214,1480233256.644473,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(73213,1480233256.123478,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(73212,1480233255.262380,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(73211,1480233254.386426,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(73210,1480233253.636489,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(73209,1480233253.116071,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(73208,1480233238.249140,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(73207,1480233235.410166,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(73206,1480233233.960404,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(73205,1480233233.368410,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72248,1479699326.943766,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72247,1479699326.745238,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72246,1479699326.574508,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72245,1479699325.946317,2,'info','Analyzed 800 files containing 10.88 MB of data so far'),(72244,1479699325.707870,2,'info','Analyzed 700 files containing 8.28 MB of data so far'),(73204,1480233232.391248,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(73203,1480233230.887443,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73202,1480233229.833303,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72507,1479879082.500158,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72506,1479879080.855584,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(73425,1480302750.168906,2,'info','Getting theme list from WordPress'),(73111,1480172147.946299,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72654,1479966884.155107,2,'info','Done file contents scan'),(72653,1479966884.143503,2,'info','Done URL check.'),(72651,1479966883.705197,2,'info','Done host key check.'),(72652,1479966883.708791,2,'info','Checking 3 URLs from 2 sources.'),(72650,1479966883.331214,2,'info','Checking 106 host keys against Wordfence scanning servers.'),(72649,1479966883.329854,2,'info','Asking Wordfence to check URL\'s against malware list.'),(72648,1479966883.329473,2,'info','Scanned contents of 133 additional files at 8.17 per second'),(72646,1479966881.325332,2,'info','Scanned contents of 108 additional files at 7.57 per second'),(72647,1479966882.362628,2,'info','Scanned contents of 129 additional files at 8.42 per second'),(72566,1479879108.257914,1,'info','-------------------'),(72970,1480161999.318233,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72971,1480162000.310821,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72972,1480162001.366886,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72973,1480162002.113469,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72974,1480162002.931801,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72975,1480162003.636215,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(73198,1480233226.690929,2,'info','2500 files indexed'),(73199,1480233226.839467,2,'info','3000 files indexed'),(73200,1480233226.842383,2,'info','3012 files indexed'),(73201,1480233228.499198,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72243,1479699325.506430,2,'info','Analyzed 600 files containing 6.58 MB of data so far'),(72242,1479699325.327207,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(72241,1479699325.156694,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72479,1479879028.231354,2,'info','Analyzed 100 files containing 1.29 MB of data so far'),(72480,1479879029.520619,2,'info','Analyzed 200 files containing 2.36 MB of data so far'),(72481,1479879030.790497,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(73187,1480233224.514399,10,'info','SUM_START:Fetching list of known malware files from Wordfence'),(72847,1480075178.892961,2,'info','Analyzed 900 files containing 21.21 MB of data so far'),(72848,1480075179.399164,2,'info','Analyzed 1000 files containing 21.5 MB of data so far'),(72849,1480075180.574819,2,'info','Analyzed 1100 files containing 21.93 MB of data so far'),(72850,1480075181.847334,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(72851,1480075182.712374,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(72852,1480075183.245361,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(72853,1480075183.756343,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72854,1480075186.643617,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(72855,1480075187.310272,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(72856,1480075187.724855,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(72602,1479966817.749796,2,'info','Analyzed 400 files containing 5.4 MB of data so far'),(72601,1479966816.203458,2,'info','Analyzed 300 files containing 3.66 MB of data so far'),(72580,1479966808.966285,2,'info','Found 6 plugins'),(72954,1480161946.830747,2,'info','1000 files indexed'),(73484,1480302812.734111,2,'info','Scanned contents of 42 additional files at 9.63 per second'),(72953,1480161946.160841,2,'info','500 files indexed'),(72578,1479966808.368123,1,'info','Contacting Wordfence to initiate scan'),(72579,1479966808.857890,2,'info','Getting plugin list from WordPress'),(72603,1479966818.722373,2,'info','Analyzed 500 files containing 6.1 MB of data so far'),(73303,1480251457.352665,2,'info','Getting plugin list from WordPress'),(73304,1480251457.467911,2,'info','Found 6 plugins'),(73305,1480251457.473062,2,'info','Getting theme list from WordPress'),(73306,1480251457.482021,2,'info','Found 1 themes'),(73307,1480251457.504336,10,'info','SUM_START:Fetching core, theme and plugin file signatures from Wordfence'),(72265,1479699330.844418,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(72266,1479699331.119365,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(72267,1479699331.501128,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(72268,1479699331.543569,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(73157,1480172171.379167,2,'info','Scanning DNS A record for fiepfa.org'),(73158,1480172171.380354,2,'info','Scanning DNS MX record for fiepfa.org'),(73159,1480172171.381202,10,'info','SUM_ENDOK:Scanning DNS for unauthorized changes'),(72921,1480075233.718595,2,'info','The disk has 2151135.49 MB space available'),(73523,1480302830.007972,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2101.1743GB'),(72914,1480075233.643073,2,'info','Starting DNS scan for www.fiepfa.org'),(72915,1480075233.643685,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(72916,1480075233.644966,2,'info','Scanning DNS A record for fiepfa.org'),(72917,1480075233.708725,2,'info','Scanning DNS MX record for fiepfa.org'),(73522,1480302830.007613,10,'info','SUM_START:Scanning to check available disk space'),(72920,1480075233.718287,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2100.7183GB'),(73456,1480302782.119297,2,'info','Analyzed 1400 files containing 23.31 MB of data so far'),(73454,1480302780.716127,2,'info','Analyzed 1200 files containing 22.5 MB of data so far'),(73455,1480302781.585480,2,'info','Analyzed 1300 files containing 23.09 MB of data so far'),(73038,1480162052.150057,2,'info','Scanning DNS MX record for fiepfa.org'),(73037,1480162052.148954,2,'info','Scanning DNS A record for fiepfa.org'),(72543,1479879103.497532,2,'info','Checking 1 URLs from 1 sources.'),(73036,1480162052.148192,2,'info','Scanning CNAME DNS record for www.fiepfa.org'),(73035,1480162052.147589,2,'info','Starting DNS scan for www.fiepfa.org'),(72446,1479792698.332341,1,'info','-------------------'),(72447,1479792698.332875,1,'info','Scan Complete. Scanned 3012 files, 6 plugins, 1 themes, 24 pages, 0 comments and 12296 records in 1 minute 35 seconds.'),(73457,1480302782.661289,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72449,1479792698.923043,2,'info','Wordfence used 44.17MB of memory for scan. Server peak memory usage was: 78.69MB'),(72541,1479879103.135325,2,'info','Checking 22 host keys against Wordfence scanning servers.'),(72542,1479879103.496792,2,'info','Done host key check.'),(72818,1480075149.521976,1,'info','Contacting Wordfence to initiate scan'),(73095,1480172143.722793,2,'info','Analyzed 1500 files containing 23.56 MB of data so far'),(72679,1479966887.875203,2,'info','Total disk space: 5492.1652GB -- Free disk space: 2148.3218GB'),(72497,1479879060.831128,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73221,1480233266.807636,2,'info','Analyzed 2100 files containing 29.27 MB of data so far'),(73220,1480233263.255438,2,'info','Analyzed 2000 files containing 24.7 MB of data so far'),(73219,1480233262.376306,2,'info','Analyzed 1900 files containing 24.15 MB of data so far'),(73218,1480233261.969262,2,'info','Analyzed 1800 files containing 24.11 MB of data so far'),(73216,1480233257.546503,2,'info','Analyzed 1600 files containing 23.63 MB of data so far'),(73217,1480233261.562015,2,'info','Analyzed 1700 files containing 24.05 MB of data so far'),(73223,1480233271.552243,2,'info','Analyzed 2300 files containing 36.37 MB of data so far'),(73222,1480233269.794281,2,'info','Analyzed 2200 files containing 34.5 MB of data so far'),(73225,1480233273.918883,2,'info','Analyzed 2500 files containing 39.76 MB of data so far'),(73224,1480233272.510751,2,'info','Analyzed 2400 files containing 37.73 MB of data so far'),(73226,1480233274.561478,2,'info','Analyzed 2600 files containing 40.84 MB of data so far'),(73227,1480233275.543418,2,'info','Analyzed 2700 files containing 41.59 MB of data so far'),(73228,1480233281.819645,2,'info','Analyzed 2800 files containing 43.13 MB of data so far'),(73229,1480233283.467166,2,'info','Analyzed 2900 files containing 44.55 MB of data so far'),(73230,1480233284.646439,2,'info','Analyzed 3000 files containing 47.22 MB of data so far'),(73231,1480233284.717022,2,'info','Analyzed 3012 files containing 47.47 MB of data.'),(72741,1480038104.033309,2,'info','Analyzed 2300 files containing 36.37 MB of data so far');
/*!40000 ALTER TABLE `wp_wfStatus` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wp_wfThrottleLog`
--

DROP TABLE IF EXISTS `wp_wfThrottleLog`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfThrottleLog` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `startTime` int(10) unsigned NOT NULL,
  `endTime` int(10) unsigned NOT NULL,
  `timesThrottled` int(10) unsigned NOT NULL,
  `lastReason` varchar(255) NOT NULL,
  PRIMARY KEY (`IP`),
  KEY `k2` (`endTime`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfThrottleLog`
--

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

--
-- Table structure for table `wp_wfVulnScanners`
--

DROP TABLE IF EXISTS `wp_wfVulnScanners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_wfVulnScanners` (
  `IP` binary(16) NOT NULL DEFAULT '\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0',
  `ctime` int(10) unsigned NOT NULL,
  `hits` int(10) unsigned NOT NULL,
  PRIMARY KEY (`IP`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wp_wfVulnScanners`
--

LOCK TABLES `wp_wfVulnScanners` WRITE;
/*!40000 ALTER TABLE `wp_wfVulnScanners` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wfVulnScanners` 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-11-28 14:49:24
