0byt3m1n1
Path:
/
data
/
18
/
3
/
1
/
112
/
3653764
/
meta
/
4064454
/
mysql.backup
/
[
Home
]
File: 1_03a7dba_2.mysqlv112.bak.sql
-- MySQL dump 10.11 -- -- Host: mysqlv112 Database: 1_03a7dba_2 -- ------------------------------------------------------ -- Server version 5.0.91 /*!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 `g516db_bp_activity` -- DROP TABLE IF EXISTS `g516db_bp_activity`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_activity` ( `id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `component` varchar(75) NOT NULL, `type` varchar(75) NOT NULL, `action` text NOT NULL, `content` longtext NOT NULL, `primary_link` text NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) default NULL, `date_recorded` datetime NOT NULL, `hide_sitewide` tinyint(1) default '0', `mptt_left` int(11) NOT NULL default '0', `mptt_right` int(11) NOT NULL default '0', `is_spam` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `date_recorded` (`date_recorded`), KEY `user_id` (`user_id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `component` (`component`), KEY `type` (`type`), KEY `mptt_left` (`mptt_left`), KEY `mptt_right` (`mptt_right`), KEY `hide_sitewide` (`hide_sitewide`), KEY `is_spam` (`is_spam`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_activity` -- LOCK TABLES `g516db_bp_activity` WRITE; /*!40000 ALTER TABLE `g516db_bp_activity` DISABLE KEYS */; INSERT INTO `g516db_bp_activity` VALUES (1,1,'members','last_activity','','','',0,NULL,'2015-09-15 19:57:36',0,0,0,0); /*!40000 ALTER TABLE `g516db_bp_activity` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_activity_meta` -- DROP TABLE IF EXISTS `g516db_bp_activity_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_activity_meta` ( `id` bigint(20) NOT NULL auto_increment, `activity_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `activity_id` (`activity_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_activity_meta` -- LOCK TABLES `g516db_bp_activity_meta` WRITE; /*!40000 ALTER TABLE `g516db_bp_activity_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_bp_activity_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_notifications` -- DROP TABLE IF EXISTS `g516db_bp_notifications`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_notifications` ( `id` bigint(20) NOT NULL auto_increment, `user_id` bigint(20) NOT NULL, `item_id` bigint(20) NOT NULL, `secondary_item_id` bigint(20) default NULL, `component_name` varchar(75) NOT NULL, `component_action` varchar(75) NOT NULL, `date_notified` datetime NOT NULL, `is_new` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), KEY `item_id` (`item_id`), KEY `secondary_item_id` (`secondary_item_id`), KEY `user_id` (`user_id`), KEY `is_new` (`is_new`), KEY `component_name` (`component_name`), KEY `component_action` (`component_action`), KEY `useritem` (`user_id`,`is_new`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_notifications` -- LOCK TABLES `g516db_bp_notifications` WRITE; /*!40000 ALTER TABLE `g516db_bp_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_bp_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_notifications_meta` -- DROP TABLE IF EXISTS `g516db_bp_notifications_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_notifications_meta` ( `id` bigint(20) NOT NULL auto_increment, `notification_id` bigint(20) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `notification_id` (`notification_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_notifications_meta` -- LOCK TABLES `g516db_bp_notifications_meta` WRITE; /*!40000 ALTER TABLE `g516db_bp_notifications_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_bp_notifications_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_xprofile_data` -- DROP TABLE IF EXISTS `g516db_bp_xprofile_data`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_xprofile_data` ( `id` bigint(20) unsigned NOT NULL auto_increment, `field_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `value` longtext NOT NULL, `last_updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `field_id` (`field_id`), KEY `user_id` (`user_id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_xprofile_data` -- LOCK TABLES `g516db_bp_xprofile_data` WRITE; /*!40000 ALTER TABLE `g516db_bp_xprofile_data` DISABLE KEYS */; INSERT INTO `g516db_bp_xprofile_data` VALUES (1,1,1,'genywebmaster','2015-08-26 16:01:36'),(2,1,2,'Dang Truong','2015-08-26 16:04:10'); /*!40000 ALTER TABLE `g516db_bp_xprofile_data` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_xprofile_fields` -- DROP TABLE IF EXISTS `g516db_bp_xprofile_fields`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_xprofile_fields` ( `id` bigint(20) unsigned NOT NULL auto_increment, `group_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL, `type` varchar(150) NOT NULL, `name` varchar(150) NOT NULL, `description` longtext NOT NULL, `is_required` tinyint(1) NOT NULL default '0', `is_default_option` tinyint(1) NOT NULL default '0', `field_order` bigint(20) NOT NULL default '0', `option_order` bigint(20) NOT NULL default '0', `order_by` varchar(15) NOT NULL default '', `can_delete` tinyint(1) NOT NULL default '1', PRIMARY KEY (`id`), KEY `group_id` (`group_id`), KEY `parent_id` (`parent_id`), KEY `field_order` (`field_order`), KEY `can_delete` (`can_delete`), KEY `is_required` (`is_required`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_xprofile_fields` -- LOCK TABLES `g516db_bp_xprofile_fields` WRITE; /*!40000 ALTER TABLE `g516db_bp_xprofile_fields` DISABLE KEYS */; INSERT INTO `g516db_bp_xprofile_fields` VALUES (1,1,0,'textbox','Name','',1,0,0,0,'',0); /*!40000 ALTER TABLE `g516db_bp_xprofile_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_xprofile_groups` -- DROP TABLE IF EXISTS `g516db_bp_xprofile_groups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_xprofile_groups` ( `id` bigint(20) unsigned NOT NULL auto_increment, `name` varchar(150) NOT NULL, `description` mediumtext NOT NULL, `group_order` bigint(20) NOT NULL default '0', `can_delete` tinyint(1) NOT NULL, PRIMARY KEY (`id`), KEY `can_delete` (`can_delete`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_xprofile_groups` -- LOCK TABLES `g516db_bp_xprofile_groups` WRITE; /*!40000 ALTER TABLE `g516db_bp_xprofile_groups` DISABLE KEYS */; INSERT INTO `g516db_bp_xprofile_groups` VALUES (1,'Base','',0,0); /*!40000 ALTER TABLE `g516db_bp_xprofile_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_bp_xprofile_meta` -- DROP TABLE IF EXISTS `g516db_bp_xprofile_meta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_bp_xprofile_meta` ( `id` bigint(20) NOT NULL auto_increment, `object_id` bigint(20) NOT NULL, `object_type` varchar(150) NOT NULL, `meta_key` varchar(255) default NULL, `meta_value` longtext, PRIMARY KEY (`id`), KEY `object_id` (`object_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_bp_xprofile_meta` -- LOCK TABLES `g516db_bp_xprofile_meta` WRITE; /*!40000 ALTER TABLE `g516db_bp_xprofile_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_bp_xprofile_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_commentmeta` -- DROP TABLE IF EXISTS `g516db_commentmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_commentmeta` -- LOCK TABLES `g516db_commentmeta` WRITE; /*!40000 ALTER TABLE `g516db_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_comments` -- DROP TABLE IF EXISTS `g516db_comments`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_comments` -- LOCK TABLES `g516db_comments` WRITE; /*!40000 ALTER TABLE `g516db_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_huge_itslider_images` -- DROP TABLE IF EXISTS `g516db_huge_itslider_images`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_huge_itslider_images` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(100) default NULL, `slider_id` varchar(200) default NULL, `description` text, `image_url` text, `sl_url` varchar(128) default NULL, `sl_type` text NOT NULL, `link_target` text NOT NULL, `sl_stitle` text NOT NULL, `sl_sdesc` text NOT NULL, `sl_postlink` text NOT NULL, `ordering` int(11) NOT NULL, `published` tinyint(4) unsigned default NULL, `published_in_sl_width` tinyint(4) unsigned default NULL, PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=19 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_huge_itslider_images` -- LOCK TABLES `g516db_huge_itslider_images` WRITE; /*!40000 ALTER TABLE `g516db_huge_itslider_images` DISABLE KEYS */; INSERT INTO `g516db_huge_itslider_images` VALUES (1,'','1','','http://genewyork.com/wp-content/plugins/slider-image/Front_images/slides/slide1.jpg','http://huge-it.com','image','on','','','',1,1,NULL),(2,'Simple Usage','1','','http://genewyork.com/wp-content/plugins/slider-image/Front_images/slides/slide2.jpg','http://huge-it.com','image','on','','','',2,1,NULL),(3,'Huge-IT Slider','1','The slider allows having unlimited amount of images with their titles and descriptions. The slider uses autogenerated shortcodes making it easier for the users to add it to the custom location.','http://genewyork.com/wp-content/plugins/slider-image/Front_images/slides/slide3.jpg','http://huge-it.com','image','on','','','',3,1,NULL),(5,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Classroom_5.jpg','','','','','','',4,2,1),(6,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Computer_Room_1.jpg','','','','','','',5,2,1),(7,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Elevator_Hall_1.jpg','','','','','','',0,2,1),(8,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Elevetor_Hall_2.jpg','','','','','','',1,2,1),(9,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Lobby2.jpg','','','','','','',2,2,1),(10,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Library.jpg','','','','','','',6,2,1),(11,'','4','','http://genewyork.com/wp-content/uploads/2015/06/Classroom_3.jpg','','','','','','',3,2,1),(12,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Classroom_3.jpg','','','','','','',0,2,1),(13,'','5','','http://genewyork.com/wp-content/uploads/2015/08/Classroom_5.jpg','','','','','','',0,2,1),(14,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Computer_Room_1.jpg','','','','','','',0,2,1),(15,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Elevator_Hall_1.jpg','','','','','','',0,2,1),(16,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Elevetor_Hall_2.jpg','','','','','','',0,2,1),(17,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Library.jpg','','','','','','',0,2,1),(18,'','5','','http://genewyork.com/wp-content/uploads/2015/06/Lobby2.jpg','','','','','','',0,2,1); /*!40000 ALTER TABLE `g516db_huge_itslider_images` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_huge_itslider_params` -- DROP TABLE IF EXISTS `g516db_huge_itslider_params`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_huge_itslider_params` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(50) NOT NULL, `title` varchar(200) NOT NULL, `description` text NOT NULL, `value` varchar(200) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=133 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_huge_itslider_params` -- LOCK TABLES `g516db_huge_itslider_params` WRITE; /*!40000 ALTER TABLE `g516db_huge_itslider_params` DISABLE KEYS */; INSERT INTO `g516db_huge_itslider_params` VALUES (89,'slider_crop_image','Slider crop image','Slider crop image','resize'),(90,'slider_title_color','Slider title color','Slider title color','000000'),(91,'slider_title_font_size','Slider title font size','Slider title font size','13'),(92,'slider_description_color','Slider description color','Slider description color','ffffff'),(93,'slider_description_font_size','Slider description font size','Slider description font size','13'),(94,'slider_title_position','Slider title position','Slider title position','right-top'),(95,'slider_description_position','Slider description position','Slider description position','right-bottom'),(96,'slider_title_border_size','Slider Title border size','Slider Title border size','0'),(97,'slider_title_border_color','Slider title border color','Slider title border color','ffffff'),(98,'slider_title_border_radius','Slider title border radius','Slider title border radius','4'),(99,'slider_description_border_size','Slider description border size','Slider description border size','0'),(100,'slider_description_border_color','Slider description border color','Slider description border color','ffffff'),(101,'slider_description_border_radius','Slider description border radius','Slider description border radius','0'),(102,'slider_slideshow_border_size','Slider border size','Slider border size','0'),(103,'slider_slideshow_border_color','Slider border color','Slider border color','ffffff'),(104,'slider_slideshow_border_radius','Slider border radius','Slider border radius','0'),(105,'slider_navigation_type','Slider navigation type','Slider navigation type','1'),(106,'slider_navigation_position','Slider navigation position','Slider navigation position','bottom'),(107,'slider_title_background_color','Slider title background color','Slider title background color','ffffff'),(108,'slider_description_background_color','Slider description background color','Slider description background color','000000'),(109,'slider_title_transparent','Slider title has background','Slider title has background','on'),(110,'slider_description_transparent','Slider description has background','Slider description has background','on'),(111,'slider_slider_background_color','Slider slider background color','Slider slider background color','ffffff'),(112,'slider_dots_position','slider dots position','slider dots position','top'),(113,'slider_active_dot_color','slider active dot color','','ffffff'),(114,'slider_dots_color','slider dots color','','000000'),(115,'slider_description_width','Slider description width','Slider description width','70'),(116,'slider_description_height','Slider description height','Slider description height','50'),(117,'slider_description_background_transparency','slider description background transparency','slider description background transparency','70'),(118,'slider_description_text_align','description text-align','description text-align','justify'),(119,'slider_title_width','slider title width','slider title width','30'),(120,'slider_title_height','slider title height','slider title height','50'),(121,'slider_title_background_transparency','slider title background transparency','slider title background transparency','70'),(122,'slider_title_text_align','title text-align','title text-align','right'),(123,'slider_title_has_margin','title has margin','title has margin','on'),(124,'slider_description_has_margin','description has margin','description has margin','on'),(125,'slider_show_arrows','Slider show left right arrows','Slider show left right arrows','on'),(126,'loading_icon_type','Slider loading icon type','Slider loading icon type','1'),(127,'slider_thumb_count_slides','Slide thumbs count','Slide thumbs count','3'),(128,'slider_dots_position_new','Slide Dots Position','Slide Dots Position','dotstop'),(129,'slider_thumb_back_color','Thumbnail Background Color','Thumbnail Background Color','FFFFFF'),(130,'slider_thumb_passive_color','Passive Thumbnail Color','Passive Thumbnail Color','FFFFFF'),(131,'slider_thumb_passive_color_trans','Passive Thumbnail Color Transparency','Passive Thumbnail Color Transparency','50'),(132,'slider_thumb_height','Slider Thumb Height','Slider Thumb Height','100'); /*!40000 ALTER TABLE `g516db_huge_itslider_params` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_huge_itslider_sliders` -- DROP TABLE IF EXISTS `g516db_huge_itslider_sliders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_huge_itslider_sliders` ( `id` int(11) unsigned NOT NULL auto_increment, `name` varchar(200) NOT NULL, `sl_height` int(11) unsigned default NULL, `sl_width` int(11) unsigned default NULL, `pause_on_hover` text, `slider_list_effects_s` text, `description` text, `param` text, `sl_position` text NOT NULL, `ordering` int(11) NOT NULL, `published` text, `sl_loading_icon` text NOT NULL, `show_thumb` varchar(255) NOT NULL default 'dotstop', PRIMARY KEY (`id`), UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=6 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_huge_itslider_sliders` -- LOCK TABLES `g516db_huge_itslider_sliders` WRITE; /*!40000 ALTER TABLE `g516db_huge_itslider_sliders` DISABLE KEYS */; INSERT INTO `g516db_huge_itslider_sliders` VALUES (1,'My First Slider',375,600,'on','random','4000','1000','center',1,'300','','dotstop'),(5,'New slider',700,1000,'on','fade','4000','1000','center',1,'300','off','dotstop'); /*!40000 ALTER TABLE `g516db_huge_itslider_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_cms_nav_cache` -- DROP TABLE IF EXISTS `g516db_icl_cms_nav_cache`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_cms_nav_cache` ( `id` bigint(20) NOT NULL auto_increment, `cache_key` varchar(128) NOT NULL, `type` varchar(128) NOT NULL, `data` text NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_cms_nav_cache` -- LOCK TABLES `g516db_icl_cms_nav_cache` WRITE; /*!40000 ALTER TABLE `g516db_icl_cms_nav_cache` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_cms_nav_cache` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_content_status` -- DROP TABLE IF EXISTS `g516db_icl_content_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_content_status` ( `rid` bigint(20) NOT NULL, `nid` bigint(20) NOT NULL, `timestamp` datetime NOT NULL, `md5` varchar(32) NOT NULL, PRIMARY KEY (`rid`), KEY `nid` (`nid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_content_status` -- LOCK TABLES `g516db_icl_content_status` WRITE; /*!40000 ALTER TABLE `g516db_icl_content_status` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_content_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_core_status` -- DROP TABLE IF EXISTS `g516db_icl_core_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_core_status` ( `id` bigint(20) NOT NULL auto_increment, `rid` bigint(20) NOT NULL, `module` varchar(16) NOT NULL, `origin` varchar(64) NOT NULL, `target` varchar(64) NOT NULL, `status` smallint(6) NOT NULL, PRIMARY KEY (`id`), KEY `rid` (`rid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_core_status` -- LOCK TABLES `g516db_icl_core_status` WRITE; /*!40000 ALTER TABLE `g516db_icl_core_status` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_core_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_flags` -- DROP TABLE IF EXISTS `g516db_icl_flags`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_flags` ( `id` int(11) NOT NULL auto_increment, `lang_code` varchar(10) NOT NULL, `flag` varchar(32) NOT NULL, `from_template` tinyint(4) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `lang_code` (`lang_code`) ) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_flags` -- LOCK TABLES `g516db_icl_flags` WRITE; /*!40000 ALTER TABLE `g516db_icl_flags` DISABLE KEYS */; INSERT INTO `g516db_icl_flags` VALUES (1,'ar','ar.png',0),(2,'bg','bg.png',0),(3,'bs','bs.png',0),(4,'ca','ca.png',0),(5,'cs','cs.png',0),(6,'cy','cy.png',0),(7,'da','da.png',0),(8,'de','de.png',0),(9,'el','el.png',0),(10,'en','en.png',0),(11,'eo','eo.png',0),(12,'es','es.png',0),(13,'et','et.png',0),(14,'eu','eu.png',0),(15,'fa','fa.png',0),(16,'fi','fi.png',0),(17,'fr','fr.png',0),(18,'ga','ga.png',0),(19,'he','he.png',0),(20,'hi','hi.png',0),(21,'hr','hr.png',0),(22,'hu','hu.png',0),(23,'hy','hy.png',0),(24,'id','id.png',0),(25,'is','is.png',0),(26,'it','it.png',0),(27,'ja','ja.png',0),(28,'ko','ko.png',0),(29,'ku','ku.png',0),(30,'la','la.png',0),(31,'lt','lt.png',0),(32,'lv','lv.png',0),(33,'mk','mk.png',0),(34,'mn','mn.png',0),(35,'mo','mo.png',0),(36,'ms','ms.png',0),(37,'mt','mt.png',0),(38,'nb','nb.png',0),(39,'ne','ne.png',0),(40,'nl','nl.png',0),(41,'pa','pa.png',0),(42,'pl','pl.png',0),(43,'pt-br','pt-br.png',0),(44,'pt-pt','pt-pt.png',0),(45,'qu','qu.png',0),(46,'ro','ro.png',0),(47,'ru','ru.png',0),(48,'sk','sk.png',0),(49,'sl','sl.png',0),(50,'so','so.png',0),(51,'sq','sq.png',0),(52,'sr','sr.png',0),(53,'sv','sv.png',0),(54,'ta','ta.png',0),(55,'th','th.png',0),(56,'tr','tr.png',0),(57,'uk','uk.png',0),(58,'ur','ur.png',0),(59,'uz','uz.png',0),(60,'vi','vi.png',0),(61,'yi','yi.png',0),(62,'zh-hans','zh-hans.png',0),(63,'zh-hant','zh-hant.png',0),(64,'zu','zu.png',0); /*!40000 ALTER TABLE `g516db_icl_flags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_languages` -- DROP TABLE IF EXISTS `g516db_icl_languages`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_languages` ( `id` int(11) NOT NULL auto_increment, `code` varchar(7) NOT NULL, `english_name` varchar(128) NOT NULL, `major` tinyint(4) NOT NULL default '0', `active` tinyint(4) NOT NULL, `default_locale` varchar(8) default NULL, `tag` varchar(8) default NULL, `encode_url` tinyint(1) NOT NULL default '0', PRIMARY KEY (`id`), UNIQUE KEY `code` (`code`), UNIQUE KEY `english_name` (`english_name`) ) ENGINE=MyISAM AUTO_INCREMENT=65 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_languages` -- LOCK TABLES `g516db_icl_languages` WRITE; /*!40000 ALTER TABLE `g516db_icl_languages` DISABLE KEYS */; INSERT INTO `g516db_icl_languages` VALUES (1,'en','English',1,1,'en_US','en-US',0),(2,'es','Spanish',1,0,'es_ES','es-ES',0),(3,'de','German',1,0,'de_DE','de-DE',0),(4,'fr','French',1,0,'fr_FR','fr-FR',0),(5,'ar','Arabic',0,0,'ar','ar',0),(6,'bs','Bosnian',0,0,'','',0),(7,'bg','Bulgarian',0,0,'bg_BG','bg-BG',0),(8,'ca','Catalan',0,0,'ca','ca',0),(9,'cs','Czech',0,0,'cs_CZ','cs-CZ',0),(10,'sk','Slovak',0,0,'sk_SK','sk-SK',0),(11,'cy','Welsh',0,0,'cy','cy',0),(12,'da','Danish',1,0,'da_DK','da-DK',0),(13,'el','Greek',0,0,'el','el',0),(14,'eo','Esperanto',0,0,'eo','eo',0),(15,'et','Estonian',0,0,'et','et',0),(16,'eu','Basque',0,0,'eu','eu',0),(17,'fa','Persian',0,0,'fa_IR','fa-IR',0),(18,'fi','Finnish',0,0,'fi','fi',0),(19,'ga','Irish',0,0,'','',0),(20,'he','Hebrew',0,0,'he_IL','he-IL',0),(21,'hi','Hindi',0,0,'','',0),(22,'hr','Croatian',0,0,'hr','hr',0),(23,'hu','Hungarian',0,0,'hu_HU','hu-HU',0),(24,'hy','Armenian',0,0,'','',0),(25,'id','Indonesian',0,0,'id_ID','id-ID',0),(26,'is','Icelandic',0,0,'is_IS','is-IS',0),(27,'it','Italian',1,0,'it_IT','it-IT',0),(28,'ja','Japanese',1,1,'ja','ja',0),(29,'ko','Korean',0,1,'ko_KR','ko-KR',0),(30,'ku','Kurdish',0,0,'ku','ku',0),(31,'la','Latin',0,0,'','',0),(32,'lv','Latvian',0,0,'lv','lv',0),(33,'lt','Lithuanian',0,0,'lt','lt',0),(34,'mk','Macedonian',0,0,'mk_MK','mk-MK',0),(35,'mt','Maltese',0,0,'','',0),(36,'mo','Moldavian',0,0,'','',0),(37,'mn','Mongolian',0,0,'','',0),(38,'ne','Nepali',0,0,'','',0),(39,'nl','Dutch',1,0,'nl_NL','nl-NL',0),(40,'nb','Norwegian Bokmål',0,0,'nb_NO','nb-NO',0),(41,'pa','Punjabi',0,0,'','',0),(42,'pl','Polish',0,0,'pl_PL','pl-PL',0),(43,'pt-pt','Portuguese, Portugal',0,0,'pt_PT','pt-PT',0),(44,'pt-br','Portuguese, Brazil',0,0,'pt_BR','pt-BR',0),(45,'qu','Quechua',0,0,'','',0),(46,'ro','Romanian',0,0,'ro_RO','ro-RO',0),(47,'ru','Russian',1,0,'ru_RU','ru-RU',0),(48,'sl','Slovenian',0,0,'sl_SI','sl-SI',0),(49,'so','Somali',0,0,'','',0),(50,'sq','Albanian',0,0,'','',0),(51,'sr','Serbian',0,0,'sr_RS','sr-RS',0),(52,'sv','Swedish',0,0,'sv_SE','sv-SE',0),(53,'ta','Tamil',0,0,'','',0),(54,'th','Thai',0,0,'th','th',0),(55,'tr','Turkish',0,0,'tr','tr',0),(56,'uk','Ukrainian',0,0,'uk_UA','uk-UA',0),(57,'ur','Urdu',0,0,'','',0),(58,'uz','Uzbek',0,0,'uz_UZ','uz-UZ',0),(59,'vi','Vietnamese',0,0,'vi','vi',0),(60,'yi','Yiddish',0,0,'','',0),(61,'zh-hans','Chinese (Simplified)',1,1,'zh_CN','zh-CN',0),(62,'zu','Zulu',0,0,'','',0),(63,'zh-hant','Chinese (Traditional)',1,0,'zh_TW','zh-TW',0),(64,'ms','Malay',0,0,'ms_MY','ms-MY',0); /*!40000 ALTER TABLE `g516db_icl_languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_languages_translations` -- DROP TABLE IF EXISTS `g516db_icl_languages_translations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_languages_translations` ( `id` int(11) NOT NULL auto_increment, `language_code` varchar(7) NOT NULL, `display_language_code` varchar(7) NOT NULL, `name` varchar(255) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `language_code` (`language_code`,`display_language_code`) ) ENGINE=MyISAM AUTO_INCREMENT=4097 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_languages_translations` -- LOCK TABLES `g516db_icl_languages_translations` WRITE; /*!40000 ALTER TABLE `g516db_icl_languages_translations` DISABLE KEYS */; INSERT INTO `g516db_icl_languages_translations` VALUES (1,'en','en','English'),(2,'en','es','Inglés'),(3,'en','de','Englisch'),(4,'en','fr','Anglais'),(5,'en','ar','الإنجليزية'),(6,'en','bs','English'),(7,'en','bg','Английски'),(8,'en','ca','English'),(9,'en','cs','Angličtina'),(10,'en','sk','Angličtina'),(11,'en','cy','English'),(12,'en','da','English'),(13,'en','el','Αγγλικα'),(14,'en','eo','English'),(15,'en','et','English'),(16,'en','eu','English'),(17,'en','fa','English'),(18,'en','fi','englanti'),(19,'en','ga','English'),(20,'en','he','אנגלית'),(21,'en','hi','English'),(22,'en','hr','Engleski'),(23,'en','hu','angol'),(24,'en','hy','English'),(25,'en','id','English'),(26,'en','is','English'),(27,'en','it','Inglese'),(28,'en','ja','英語'),(29,'en','ko','영어'),(30,'en','ku','English'),(31,'en','la','English'),(32,'en','lv','English'),(33,'en','lt','English'),(34,'en','mk','English'),(35,'en','mt','English'),(36,'en','mo','English'),(37,'en','mn','English'),(38,'en','ne','English'),(39,'en','nl','Engels'),(40,'en','nb','Engelsk'),(41,'en','pa','English'),(42,'en','pl','angielski'),(43,'en','pt-pt','Inglês'),(44,'en','pt-br','Inglês'),(45,'en','qu','English'),(46,'en','ro','Engleză'),(47,'en','ru','Английский'),(48,'en','sl','Angleščina'),(49,'en','so','English'),(50,'en','sq','English'),(51,'en','sr','енглески'),(52,'en','sv','Engelska'),(53,'en','ta','English'),(54,'en','th','อังกฤษ'),(55,'en','tr','İngilizce'),(56,'en','uk','English'),(57,'en','ur','English'),(58,'en','uz','English'),(59,'en','vi','English'),(60,'en','yi','English'),(61,'en','zh-hans','英语'),(62,'en','zu','English'),(63,'en','zh-hant','英語'),(64,'en','ms','English'),(65,'es','en','Spanish'),(66,'es','es','Español'),(67,'es','de','Spanisch'),(68,'es','fr','Espagnol'),(69,'es','ar','الأسبانية'),(70,'es','bs','Spanish'),(71,'es','bg','Испански'),(72,'es','ca','Spanish'),(73,'es','cs','Španělský'),(74,'es','sk','Španielčina'),(75,'es','cy','Spanish'),(76,'es','da','Spanish'),(77,'es','el','Ισπανικα'),(78,'es','eo','Spanish'),(79,'es','et','Spanish'),(80,'es','eu','Spanish'),(81,'es','fa','Spanish'),(82,'es','fi','espanja'),(83,'es','ga','Spanish'),(84,'es','he','ספרדית'),(85,'es','hi','Spanish'),(86,'es','hr','španjolski'),(87,'es','hu','spanyol'),(88,'es','hy','Spanish'),(89,'es','id','Spanish'),(90,'es','is','Spanish'),(91,'es','it','Spagnolo'),(92,'es','ja','スペイン語'),(93,'es','ko','스페인어'),(94,'es','ku','Spanish'),(95,'es','la','Spanish'),(96,'es','lv','Spanish'),(97,'es','lt','Spanish'),(98,'es','mk','Spanish'),(99,'es','mt','Spanish'),(100,'es','mo','Spanish'),(101,'es','mn','Spanish'),(102,'es','ne','Spanish'),(103,'es','nl','Spaans'),(104,'es','nb','Spansk'),(105,'es','pa','Spanish'),(106,'es','pl','hiszpański'),(107,'es','pt-pt','Espanhol'),(108,'es','pt-br','Espanhol'),(109,'es','qu','Spanish'),(110,'es','ro','Spaniolă'),(111,'es','ru','Испанский'),(112,'es','sl','Španščina'),(113,'es','so','Spanish'),(114,'es','sq','Spanish'),(115,'es','sr','шпански'),(116,'es','sv','Spanska'),(117,'es','ta','Spanish'),(118,'es','th','สเปน'),(119,'es','tr','İspanyolca'),(120,'es','uk','Spanish'),(121,'es','ur','Spanish'),(122,'es','uz','Spanish'),(123,'es','vi','Spanish'),(124,'es','yi','Spanish'),(125,'es','zh-hans','西班牙语'),(126,'es','zu','Spanish'),(127,'es','zh-hant','西班牙語'),(128,'es','ms','Spanish'),(129,'de','en','German'),(130,'de','es','Alemán'),(131,'de','de','Deutsch'),(132,'de','fr','Allemand'),(133,'de','ar','الألمانية'),(134,'de','bs','German'),(135,'de','bg','Немски'),(136,'de','ca','German'),(137,'de','cs','Němec'),(138,'de','sk','Nemčina'),(139,'de','cy','German'),(140,'de','da','German'),(141,'de','el','Γερμανικα'),(142,'de','eo','German'),(143,'de','et','German'),(144,'de','eu','German'),(145,'de','fa','German'),(146,'de','fi','saksa'),(147,'de','ga','German'),(148,'de','he','גרמנית'),(149,'de','hi','German'),(150,'de','hr','Njemački'),(151,'de','hu','német'),(152,'de','hy','German'),(153,'de','id','German'),(154,'de','is','German'),(155,'de','it','Tedesco'),(156,'de','ja','ドイツ語'),(157,'de','ko','독어'),(158,'de','ku','German'),(159,'de','la','German'),(160,'de','lv','German'),(161,'de','lt','German'),(162,'de','mk','German'),(163,'de','mt','German'),(164,'de','mo','German'),(165,'de','mn','German'),(166,'de','ne','German'),(167,'de','nl','Duits'),(168,'de','nb','Tysk'),(169,'de','pa','German'),(170,'de','pl','niemiecki'),(171,'de','pt-pt','Alemão'),(172,'de','pt-br','Alemão'),(173,'de','qu','German'),(174,'de','ro','Germană'),(175,'de','ru','Немецкий'),(176,'de','sl','Nemščina'),(177,'de','so','German'),(178,'de','sq','German'),(179,'de','sr','немачки'),(180,'de','sv','Tyska'),(181,'de','ta','German'),(182,'de','th','เยอรมัน'),(183,'de','tr','Almanca'),(184,'de','uk','German'),(185,'de','ur','German'),(186,'de','uz','German'),(187,'de','vi','German'),(188,'de','yi','German'),(189,'de','zh-hans','德语'),(190,'de','zu','German'),(191,'de','zh-hant','德語'),(192,'de','ms','German'),(193,'fr','en','French'),(194,'fr','es','Francés'),(195,'fr','de','Französisch'),(196,'fr','fr','Français'),(197,'fr','ar','الفرنسية'),(198,'fr','bs','French'),(199,'fr','bg','Френски'),(200,'fr','ca','French'),(201,'fr','cs','Francouzština'),(202,'fr','sk','Francúzština'),(203,'fr','cy','French'),(204,'fr','da','French'),(205,'fr','el','Γαλλικα'),(206,'fr','eo','French'),(207,'fr','et','French'),(208,'fr','eu','French'),(209,'fr','fa','French'),(210,'fr','fi','ranska'),(211,'fr','ga','French'),(212,'fr','he','צרפתית'),(213,'fr','hi','French'),(214,'fr','hr','Francuzi'),(215,'fr','hu','francia'),(216,'fr','hy','French'),(217,'fr','id','French'),(218,'fr','is','French'),(219,'fr','it','Francese'),(220,'fr','ja','フランス語'),(221,'fr','ko','불어'),(222,'fr','ku','French'),(223,'fr','la','French'),(224,'fr','lv','French'),(225,'fr','lt','French'),(226,'fr','mk','French'),(227,'fr','mt','French'),(228,'fr','mo','French'),(229,'fr','mn','French'),(230,'fr','ne','French'),(231,'fr','nl','Frans'),(232,'fr','nb','Fransk'),(233,'fr','pa','French'),(234,'fr','pl','francuski'),(235,'fr','pt-pt','Francês'),(236,'fr','pt-br','Francês'),(237,'fr','qu','French'),(238,'fr','ro','Franceză'),(239,'fr','ru','Французский'),(240,'fr','sl','Francoščina'),(241,'fr','so','French'),(242,'fr','sq','French'),(243,'fr','sr','француски'),(244,'fr','sv','Franska'),(245,'fr','ta','French'),(246,'fr','th','ฝรั่งเศส'),(247,'fr','tr','Fransızca'),(248,'fr','uk','French'),(249,'fr','ur','French'),(250,'fr','uz','French'),(251,'fr','vi','French'),(252,'fr','yi','French'),(253,'fr','zh-hans','法语'),(254,'fr','zu','French'),(255,'fr','zh-hant','法語'),(256,'fr','ms','French'),(257,'ar','en','Arabic'),(258,'ar','es','Árabe'),(259,'ar','de','Arabisch'),(260,'ar','fr','Arabe'),(261,'ar','ar','العربية'),(262,'ar','bs','Arabic'),(263,'ar','bg','Арабски'),(264,'ar','ca','Arabic'),(265,'ar','cs','Arabština'),(266,'ar','sk','Arabčina'),(267,'ar','cy','Arabic'),(268,'ar','da','Arabic'),(269,'ar','el','Αραβικα'),(270,'ar','eo','Arabic'),(271,'ar','et','Arabic'),(272,'ar','eu','Arabic'),(273,'ar','fa','Arabic'),(274,'ar','fi','arabia'),(275,'ar','ga','Arabic'),(276,'ar','he','ערבית'),(277,'ar','hi','Arabic'),(278,'ar','hr','Arapski'),(279,'ar','hu','arab'),(280,'ar','hy','Arabic'),(281,'ar','id','Arabic'),(282,'ar','is','Arabic'),(283,'ar','it','Arabo'),(284,'ar','ja','アラビア語'),(285,'ar','ko','아랍어'),(286,'ar','ku','Arabic'),(287,'ar','la','Arabic'),(288,'ar','lv','Arabic'),(289,'ar','lt','Arabic'),(290,'ar','mk','Arabic'),(291,'ar','mt','Arabic'),(292,'ar','mo','Arabic'),(293,'ar','mn','Arabic'),(294,'ar','ne','Arabic'),(295,'ar','nl','Arabisch'),(296,'ar','nb','Arabisk'),(297,'ar','pa','Arabic'),(298,'ar','pl','arabski'),(299,'ar','pt-pt','Árabe'),(300,'ar','pt-br','Árabe'),(301,'ar','qu','Arabic'),(302,'ar','ro','Arabică'),(303,'ar','ru','Арабский'),(304,'ar','sl','Arabščina'),(305,'ar','so','Arabic'),(306,'ar','sq','Arabic'),(307,'ar','sr','арапски'),(308,'ar','sv','Arabiska'),(309,'ar','ta','Arabic'),(310,'ar','th','อารบิก'),(311,'ar','tr','Arapça'),(312,'ar','uk','Arabic'),(313,'ar','ur','Arabic'),(314,'ar','uz','Arabic'),(315,'ar','vi','Arabic'),(316,'ar','yi','Arabic'),(317,'ar','zh-hans','阿拉伯语'),(318,'ar','zu','Arabic'),(319,'ar','zh-hant','阿拉伯語'),(320,'ar','ms','Arabic'),(321,'bs','en','Bosnian'),(322,'bs','es','Bosnio'),(323,'bs','de','Bosnisch'),(324,'bs','fr','Bosnien'),(325,'bs','ar','البوسنية'),(326,'bs','bs','Bosnian'),(327,'bs','bg','Босненски'),(328,'bs','ca','Bosnian'),(329,'bs','cs','Bosenština'),(330,'bs','sk','Bosniačtina'),(331,'bs','cy','Bosnian'),(332,'bs','da','Bosnian'),(333,'bs','el','Βοσνιακα'),(334,'bs','eo','Bosnian'),(335,'bs','et','Bosnian'),(336,'bs','eu','Bosnian'),(337,'bs','fa','Bosnian'),(338,'bs','fi','bosnia'),(339,'bs','ga','Bosnian'),(340,'bs','he','בוסנית'),(341,'bs','hi','Bosnian'),(342,'bs','hr','Bosanski'),(343,'bs','hu','bosnyák'),(344,'bs','hy','Bosnian'),(345,'bs','id','Bosnian'),(346,'bs','is','Bosnian'),(347,'bs','it','Bosniaco'),(348,'bs','ja','ボスニア語'),(349,'bs','ko','보즈니아어'),(350,'bs','ku','Bosnian'),(351,'bs','la','Bosnian'),(352,'bs','lv','Bosnian'),(353,'bs','lt','Bosnian'),(354,'bs','mk','Bosnian'),(355,'bs','mt','Bosnian'),(356,'bs','mo','Bosnian'),(357,'bs','mn','Bosnian'),(358,'bs','ne','Bosnian'),(359,'bs','nl','Bosnisch'),(360,'bs','nb','Bosnisk'),(361,'bs','pa','Bosnian'),(362,'bs','pl','bośniacki'),(363,'bs','pt-pt','Bósnio'),(364,'bs','pt-br','Bósnio'),(365,'bs','qu','Bosnian'),(366,'bs','ro','Bosniacă'),(367,'bs','ru','Боснийский'),(368,'bs','sl','Bosanski'),(369,'bs','so','Bosnian'),(370,'bs','sq','Bosnian'),(371,'bs','sr','босански'),(372,'bs','sv','Bosniska'),(373,'bs','ta','Bosnian'),(374,'bs','th','บอสเนียน'),(375,'bs','tr','Boşnakça'),(376,'bs','uk','Bosnian'),(377,'bs','ur','Bosnian'),(378,'bs','uz','Bosnian'),(379,'bs','vi','Bosnian'),(380,'bs','yi','Bosnian'),(381,'bs','zh-hans','波斯尼亚语'),(382,'bs','zu','Bosnian'),(383,'bs','zh-hant','波士尼亞語'),(384,'bs','ms','Bosnian'),(385,'bg','en','Bulgarian'),(386,'bg','es','Búlgaro'),(387,'bg','de','Bulgarisch'),(388,'bg','fr','Bulgare'),(389,'bg','ar','البلغارية'),(390,'bg','bs','Bulgarian'),(391,'bg','bg','Български'),(392,'bg','ca','Bulgarian'),(393,'bg','cs','Bulharština'),(394,'bg','sk','Bulharčina'),(395,'bg','cy','Bulgarian'),(396,'bg','da','Bulgarian'),(397,'bg','el','Βουλγαρικα'),(398,'bg','eo','Bulgarian'),(399,'bg','et','Bulgarian'),(400,'bg','eu','Bulgarian'),(401,'bg','fa','Bulgarian'),(402,'bg','fi','bulgaria'),(403,'bg','ga','Bulgarian'),(404,'bg','he','בולגרית'),(405,'bg','hi','Bulgarian'),(406,'bg','hr','Bugarski'),(407,'bg','hu','bolgár'),(408,'bg','hy','Bulgarian'),(409,'bg','id','Bulgarian'),(410,'bg','is','Bulgarian'),(411,'bg','it','Bulgaro'),(412,'bg','ja','ブルガリア語'),(413,'bg','ko','불가리아어'),(414,'bg','ku','Bulgarian'),(415,'bg','la','Bulgarian'),(416,'bg','lv','Bulgarian'),(417,'bg','lt','Bulgarian'),(418,'bg','mk','Bulgarian'),(419,'bg','mt','Bulgarian'),(420,'bg','mo','Bulgarian'),(421,'bg','mn','Bulgarian'),(422,'bg','ne','Bulgarian'),(423,'bg','nl','Bulgaars'),(424,'bg','nb','Bulgarian'),(425,'bg','pa','Bulgarian'),(426,'bg','pl','bułgarski'),(427,'bg','pt-pt','Búlgaro'),(428,'bg','pt-br','Búlgaro'),(429,'bg','qu','Bulgarian'),(430,'bg','ro','Bulgară'),(431,'bg','ru','Болгарский'),(432,'bg','sl','Bolgarščina'),(433,'bg','so','Bulgarian'),(434,'bg','sq','Bulgarian'),(435,'bg','sr','бугарски'),(436,'bg','sv','Bulgariska'),(437,'bg','ta','Bulgarian'),(438,'bg','th','บัลแกเรียน'),(439,'bg','tr','Bulgarca'),(440,'bg','uk','Bulgarian'),(441,'bg','ur','Bulgarian'),(442,'bg','uz','Bulgarian'),(443,'bg','vi','Bulgarian'),(444,'bg','yi','Bulgarian'),(445,'bg','zh-hans','保加利亚语'),(446,'bg','zu','Bulgarian'),(447,'bg','zh-hant','保加利亞語'),(448,'bg','ms','Bulgarian'),(449,'ca','en','Catalan'),(450,'ca','es','Catalán'),(451,'ca','de','Katalanisch'),(452,'ca','fr','Catalan'),(453,'ca','ar','الكاتالوينية'),(454,'ca','bs','Catalan'),(455,'ca','bg','Каталонски'),(456,'ca','ca','Català'),(457,'ca','cs','Katalánština'),(458,'ca','sk','Katalánčina'),(459,'ca','cy','Catalan'),(460,'ca','da','Catalan'),(461,'ca','el','Καταλανικα'),(462,'ca','eo','Catalan'),(463,'ca','et','Catalan'),(464,'ca','eu','Catalan'),(465,'ca','fa','Catalan'),(466,'ca','fi','katalaani'),(467,'ca','ga','Catalan'),(468,'ca','he','קטלאנית'),(469,'ca','hi','Catalan'),(470,'ca','hr','Katalonski'),(471,'ca','hu','katalán'),(472,'ca','hy','Catalan'),(473,'ca','id','Catalan'),(474,'ca','is','Catalan'),(475,'ca','it','Catalano'),(476,'ca','ja','カタルーニャ語'),(477,'ca','ko','카탈로니아어'),(478,'ca','ku','Catalan'),(479,'ca','la','Catalan'),(480,'ca','lv','Catalan'),(481,'ca','lt','Catalan'),(482,'ca','mk','Catalan'),(483,'ca','mt','Catalan'),(484,'ca','mo','Catalan'),(485,'ca','mn','Catalan'),(486,'ca','ne','Catalan'),(487,'ca','nl','Catalaans'),(488,'ca','nb','catalan'),(489,'ca','pa','Catalan'),(490,'ca','pl','kataloński'),(491,'ca','pt-pt','Catalão'),(492,'ca','pt-br','Catalão'),(493,'ca','qu','Catalan'),(494,'ca','ro','Catalană'),(495,'ca','ru','Каталанский'),(496,'ca','sl','Katalonščina'),(497,'ca','so','Catalan'),(498,'ca','sq','Catalan'),(499,'ca','sr','каталонски'),(500,'ca','sv','Katalanska'),(501,'ca','ta','Catalan'),(502,'ca','th','คะตะลาน'),(503,'ca','tr','Katalan dili'),(504,'ca','uk','Catalan'),(505,'ca','ur','Catalan'),(506,'ca','uz','Catalan'),(507,'ca','vi','Catalan'),(508,'ca','yi','Catalan'),(509,'ca','zh-hans','加泰罗尼亚语'),(510,'ca','zu','Catalan'),(511,'ca','zh-hant','加泰羅尼亞語'),(512,'ca','ms','Catalan'),(513,'cs','en','Czech'),(514,'cs','es','Checo'),(515,'cs','de','Tschechisch'),(516,'cs','fr','Tchèque'),(517,'cs','ar','التشيكية'),(518,'cs','bs','Czech'),(519,'cs','bg','Чешки'),(520,'cs','ca','Czech'),(521,'cs','cs','Čeština'),(522,'cs','sk','Čeština'),(523,'cs','cy','Czech'),(524,'cs','da','Czech'),(525,'cs','el','Τσεχικη'),(526,'cs','eo','Czech'),(527,'cs','et','Czech'),(528,'cs','eu','Czech'),(529,'cs','fa','Czech'),(530,'cs','fi','tsekki'),(531,'cs','ga','Czech'),(532,'cs','he','צ\'כית'),(533,'cs','hi','Czech'),(534,'cs','hr','češki'),(535,'cs','hu','cseh'),(536,'cs','hy','Czech'),(537,'cs','id','Czech'),(538,'cs','is','Czech'),(539,'cs','it','Ceco'),(540,'cs','ja','チェコ語'),(541,'cs','ko','체코슬로바키아어'),(542,'cs','ku','Czech'),(543,'cs','la','Czech'),(544,'cs','lv','Czech'),(545,'cs','lt','Czech'),(546,'cs','mk','Czech'),(547,'cs','mt','Czech'),(548,'cs','mo','Czech'),(549,'cs','mn','Czech'),(550,'cs','ne','Czech'),(551,'cs','nl','Tsjechisch'),(552,'cs','nb','Czech'),(553,'cs','pa','Czech'),(554,'cs','pl','czeski'),(555,'cs','pt-pt','Tcheco'),(556,'cs','pt-br','Tcheco'),(557,'cs','qu','Czech'),(558,'cs','ro','Cehă'),(559,'cs','ru','Чешский'),(560,'cs','sl','Češčina'),(561,'cs','so','Czech'),(562,'cs','sq','Czech'),(563,'cs','sr','чешки'),(564,'cs','sv','Tjeckiska'),(565,'cs','ta','Czech'),(566,'cs','th','เช็ก'),(567,'cs','tr','Çekçe'),(568,'cs','uk','Czech'),(569,'cs','ur','Czech'),(570,'cs','uz','Czech'),(571,'cs','vi','Czech'),(572,'cs','yi','Czech'),(573,'cs','zh-hans','捷克语'),(574,'cs','zu','Czech'),(575,'cs','zh-hant','捷克語'),(576,'cs','ms','Czech'),(577,'sk','en','Slovak'),(578,'sk','es','Eslavo'),(579,'sk','de','Slawisch'),(580,'sk','fr','Slave'),(581,'sk','ar','السلافية'),(582,'sk','bs','Slovak'),(583,'sk','bg','Словашки'),(584,'sk','ca','Slovak'),(585,'sk','cs','Slovenština'),(586,'sk','sk','Slovenčina'),(587,'sk','cy','Slovak'),(588,'sk','da','Slovak'),(589,'sk','el','Σλαβικη'),(590,'sk','eo','Slovak'),(591,'sk','et','Slovak'),(592,'sk','eu','Slovak'),(593,'sk','fa','Slovak'),(594,'sk','fi','slaavi'),(595,'sk','ga','Slovak'),(596,'sk','he','סלאבית'),(597,'sk','hi','Slovak'),(598,'sk','hr','Slovak'),(599,'sk','hu','szláv'),(600,'sk','hy','Slovak'),(601,'sk','id','Slovak'),(602,'sk','is','Slovak'),(603,'sk','it','Slavo'),(604,'sk','ja','スラヴ語派'),(605,'sk','ko','슬라브어'),(606,'sk','ku','Slovak'),(607,'sk','la','Slovak'),(608,'sk','lv','Slovak'),(609,'sk','lt','Slovak'),(610,'sk','mk','Slovak'),(611,'sk','mt','Slovak'),(612,'sk','mo','Slovak'),(613,'sk','mn','Slovak'),(614,'sk','ne','Slovak'),(615,'sk','nl','Slavisch'),(616,'sk','nb','Slovak'),(617,'sk','pa','Slovak'),(618,'sk','pl','słowacki'),(619,'sk','pt-pt','Eslavo'),(620,'sk','pt-br','Eslavo'),(621,'sk','qu','Slovak'),(622,'sk','ro','Slavă'),(623,'sk','ru','Славянский'),(624,'sk','sl','Slovaščina'),(625,'sk','so','Slovak'),(626,'sk','sq','Slovak'),(627,'sk','sr','словачки'),(628,'sk','sv','Slavisk'),(629,'sk','ta','Slovak'),(630,'sk','th','สลาวิก'),(631,'sk','tr','Slav dili'),(632,'sk','uk','Slovak'),(633,'sk','ur','Slovak'),(634,'sk','uz','Slovak'),(635,'sk','vi','Slovak'),(636,'sk','yi','Slovak'),(637,'sk','zh-hans','斯拉夫语'),(638,'sk','zu','Slovak'),(639,'sk','zh-hant','斯拉夫語'),(640,'sk','ms','Slovak'),(641,'cy','en','Welsh'),(642,'cy','es','Galés'),(643,'cy','de','Walisisch'),(644,'cy','fr','Gallois'),(645,'cy','ar','الولزية'),(646,'cy','bs','Welsh'),(647,'cy','bg','Уелски'),(648,'cy','ca','Welsh'),(649,'cy','cs','Velšský'),(650,'cy','sk','Welština'),(651,'cy','cy','Cymraeg'),(652,'cy','da','Welsh'),(653,'cy','el','Welsh'),(654,'cy','eo','Welsh'),(655,'cy','et','Welsh'),(656,'cy','eu','Welsh'),(657,'cy','fa','Welsh'),(658,'cy','fi','kymri'),(659,'cy','ga','Welsh'),(660,'cy','he','וולשית'),(661,'cy','hi','Welsh'),(662,'cy','hr','Velški'),(663,'cy','hu','vels'),(664,'cy','hy','Welsh'),(665,'cy','id','Welsh'),(666,'cy','is','Welsh'),(667,'cy','it','Gallese'),(668,'cy','ja','ウェールズ語'),(669,'cy','ko','웨일즈어'),(670,'cy','ku','Welsh'),(671,'cy','la','Welsh'),(672,'cy','lv','Welsh'),(673,'cy','lt','Welsh'),(674,'cy','mk','Welsh'),(675,'cy','mt','Welsh'),(676,'cy','mo','Welsh'),(677,'cy','mn','Welsh'),(678,'cy','ne','Welsh'),(679,'cy','nl','Welsh'),(680,'cy','nb','Welsh'),(681,'cy','pa','Welsh'),(682,'cy','pl','walijski'),(683,'cy','pt-pt','Galês'),(684,'cy','pt-br','Galês'),(685,'cy','qu','Welsh'),(686,'cy','ro','Galeză'),(687,'cy','ru','Валлийский'),(688,'cy','sl','Welsh'),(689,'cy','so','Welsh'),(690,'cy','sq','Welsh'),(691,'cy','sr','велшки'),(692,'cy','sv','Walesiska'),(693,'cy','ta','Welsh'),(694,'cy','th','เวลช์'),(695,'cy','tr','Galce'),(696,'cy','uk','Welsh'),(697,'cy','ur','Welsh'),(698,'cy','uz','Welsh'),(699,'cy','vi','Welsh'),(700,'cy','yi','Welsh'),(701,'cy','zh-hans','威尔士语'),(702,'cy','zu','Welsh'),(703,'cy','zh-hant','威爾士語'),(704,'cy','ms','Welsh'),(705,'da','en','Danish'),(706,'da','es','Danés'),(707,'da','de','Dänisch'),(708,'da','fr','Danois'),(709,'da','ar','الدانماركية'),(710,'da','bs','Danish'),(711,'da','bg','Датски'),(712,'da','ca','Danish'),(713,'da','cs','Dánský'),(714,'da','sk','Dánčina'),(715,'da','cy','Danish'),(716,'da','da','Dansk'),(717,'da','el','Δανεζικα'),(718,'da','eo','Danish'),(719,'da','et','Danish'),(720,'da','eu','Danish'),(721,'da','fa','Danish'),(722,'da','fi','tanska'),(723,'da','ga','Danish'),(724,'da','he','דנית'),(725,'da','hi','Danish'),(726,'da','hr','Danski'),(727,'da','hu','dán'),(728,'da','hy','Danish'),(729,'da','id','Danish'),(730,'da','is','Danish'),(731,'da','it','Danese'),(732,'da','ja','デンマーク語'),(733,'da','ko','덴마크어'),(734,'da','ku','Danish'),(735,'da','la','Danish'),(736,'da','lv','Danish'),(737,'da','lt','Danish'),(738,'da','mk','Danish'),(739,'da','mt','Danish'),(740,'da','mo','Danish'),(741,'da','mn','Danish'),(742,'da','ne','Danish'),(743,'da','nl','Deens'),(744,'da','nb','Danish'),(745,'da','pa','Danish'),(746,'da','pl','duński'),(747,'da','pt-pt','Dinamarquês'),(748,'da','pt-br','Dinamarquês'),(749,'da','qu','Danish'),(750,'da','ro','Daneză'),(751,'da','ru','Датский'),(752,'da','sl','Danščina'),(753,'da','so','Danish'),(754,'da','sq','Danish'),(755,'da','sr','дански'),(756,'da','sv','Danska'),(757,'da','ta','Danish'),(758,'da','th','เดนมาร์ก'),(759,'da','tr','Danca'),(760,'da','uk','Danish'),(761,'da','ur','Danish'),(762,'da','uz','Danish'),(763,'da','vi','Danish'),(764,'da','yi','Danish'),(765,'da','zh-hans','丹麦语'),(766,'da','zu','Danish'),(767,'da','zh-hant','丹麥語'),(768,'da','ms','Danish'),(769,'el','en','Greek'),(770,'el','es','Griego'),(771,'el','de','Griechisch'),(772,'el','fr','Grec moderne'),(773,'el','ar','اليونانية'),(774,'el','bs','Greek'),(775,'el','bg','Гръцки'),(776,'el','ca','Greek'),(777,'el','cs','Řečtina'),(778,'el','sk','Gréčtina'),(779,'el','cy','Greek'),(780,'el','da','Greek'),(781,'el','el','Ελληνικα'),(782,'el','eo','Greek'),(783,'el','et','Greek'),(784,'el','eu','Greek'),(785,'el','fa','Greek'),(786,'el','fi','kreikka'),(787,'el','ga','Greek'),(788,'el','he','יוונית'),(789,'el','hi','Greek'),(790,'el','hr','Grčki'),(791,'el','hu','görög'),(792,'el','hy','Greek'),(793,'el','id','Greek'),(794,'el','is','Greek'),(795,'el','it','Greco'),(796,'el','ja','ギリシア語'),(797,'el','ko','그리스어'),(798,'el','ku','Greek'),(799,'el','la','Greek'),(800,'el','lv','Greek'),(801,'el','lt','Greek'),(802,'el','mk','Greek'),(803,'el','mt','Greek'),(804,'el','mo','Greek'),(805,'el','mn','Greek'),(806,'el','ne','Greek'),(807,'el','nl','Grieks'),(808,'el','nb','Gresk'),(809,'el','pa','Greek'),(810,'el','pl','grecki'),(811,'el','pt-pt','Grego'),(812,'el','pt-br','Grego'),(813,'el','qu','Greek'),(814,'el','ro','Greacă'),(815,'el','ru','Греческий'),(816,'el','sl','Greek'),(817,'el','so','Greek'),(818,'el','sq','Greek'),(819,'el','sr','грчки'),(820,'el','sv','Grekiska'),(821,'el','ta','Greek'),(822,'el','th','กรีก'),(823,'el','tr','Yunanca'),(824,'el','uk','Greek'),(825,'el','ur','Greek'),(826,'el','uz','Greek'),(827,'el','vi','Greek'),(828,'el','yi','Greek'),(829,'el','zh-hans','希腊语'),(830,'el','zu','Greek'),(831,'el','zh-hant','希臘語'),(832,'el','ms','Greek'),(833,'eo','en','Esperanto'),(834,'eo','es','Esperanto'),(835,'eo','de','Esperanto'),(836,'eo','fr','Espéranto'),(837,'eo','ar','الاسبرانتو'),(838,'eo','bs','Esperanto'),(839,'eo','bg','Есперанто'),(840,'eo','ca','Esperanto'),(841,'eo','cs','Esperanto'),(842,'eo','sk','Esperanto'),(843,'eo','cy','Esperanto'),(844,'eo','da','Esperanto'),(845,'eo','el','Εσπεραντο'),(846,'eo','eo','Esperanta'),(847,'eo','et','Esperanto'),(848,'eo','eu','Esperanto'),(849,'eo','fa','Esperanto'),(850,'eo','fi','esperanto'),(851,'eo','ga','Esperanto'),(852,'eo','he','אספרנטו'),(853,'eo','hi','Esperanto'),(854,'eo','hr','Esperanto'),(855,'eo','hu','eszperantó'),(856,'eo','hy','Esperanto'),(857,'eo','id','Esperanto'),(858,'eo','is','Esperanto'),(859,'eo','it','Esperanto'),(860,'eo','ja','エスペラント語'),(861,'eo','ko','에스페란토어'),(862,'eo','ku','Esperanto'),(863,'eo','la','Esperanto'),(864,'eo','lv','Esperanto'),(865,'eo','lt','Esperanto'),(866,'eo','mk','Esperanto'),(867,'eo','mt','Esperanto'),(868,'eo','mo','Esperanto'),(869,'eo','mn','Esperanto'),(870,'eo','ne','Esperanto'),(871,'eo','nl','Esperanto'),(872,'eo','nb','Esperanto'),(873,'eo','pa','Esperanto'),(874,'eo','pl','esperanto'),(875,'eo','pt-pt','Esperanto'),(876,'eo','pt-br','Esperanto'),(877,'eo','qu','Esperanto'),(878,'eo','ro','Esperanto'),(879,'eo','ru','Эсперанто'),(880,'eo','sl','Esperanto'),(881,'eo','so','Esperanto'),(882,'eo','sq','Esperanto'),(883,'eo','sr','есперанто'),(884,'eo','sv','Esperanto'),(885,'eo','ta','Esperanto'),(886,'eo','th','เอสเปอรันโต'),(887,'eo','tr','Esperanto'),(888,'eo','uk','Esperanto'),(889,'eo','ur','Esperanto'),(890,'eo','uz','Esperanto'),(891,'eo','vi','Esperanto'),(892,'eo','yi','Esperanto'),(893,'eo','zh-hans','世界语'),(894,'eo','zu','Esperanto'),(895,'eo','zh-hant','世界語'),(896,'eo','ms','Esperanto'),(897,'et','en','Estonian'),(898,'et','es','Estonio'),(899,'et','de','Estnisch'),(900,'et','fr','Estonien'),(901,'et','ar','الأستونية'),(902,'et','bs','Estonian'),(903,'et','bg','Естонски'),(904,'et','ca','Estonian'),(905,'et','cs','Estonština'),(906,'et','sk','Estónčina'),(907,'et','cy','Estonian'),(908,'et','da','Estonian'),(909,'et','el','Εσθονικα'),(910,'et','eo','Estonian'),(911,'et','et','Eesti'),(912,'et','eu','Estonian'),(913,'et','fa','Estonian'),(914,'et','fi','eesti'),(915,'et','ga','Estonian'),(916,'et','he','אסטונית'),(917,'et','hi','Estonian'),(918,'et','hr','Estonski'),(919,'et','hu','észt'),(920,'et','hy','Estonian'),(921,'et','id','Estonian'),(922,'et','is','Estonian'),(923,'et','it','Estone'),(924,'et','ja','エストニア語'),(925,'et','ko','에스토니아어'),(926,'et','ku','Estonian'),(927,'et','la','Estonian'),(928,'et','lv','Estonian'),(929,'et','lt','Estonian'),(930,'et','mk','Estonian'),(931,'et','mt','Estonian'),(932,'et','mo','Estonian'),(933,'et','mn','Estonian'),(934,'et','ne','Estonian'),(935,'et','nl','Ests'),(936,'et','nb','Estonian'),(937,'et','pa','Estonian'),(938,'et','pl','estoński'),(939,'et','pt-pt','Estoniano'),(940,'et','pt-br','Estoniano'),(941,'et','qu','Estonian'),(942,'et','ro','Estoniană'),(943,'et','ru','Эстонский'),(944,'et','sl','Estonščina'),(945,'et','so','Estonian'),(946,'et','sq','Estonian'),(947,'et','sr','естонски'),(948,'et','sv','Estniska'),(949,'et','ta','Estonian'),(950,'et','th','เอสโตเนียน'),(951,'et','tr','Estonya dili'),(952,'et','uk','Estonian'),(953,'et','ur','Estonian'),(954,'et','uz','Estonian'),(955,'et','vi','Estonian'),(956,'et','yi','Estonian'),(957,'et','zh-hans','爱沙尼亚语'),(958,'et','zu','Estonian'),(959,'et','zh-hant','愛沙尼亞語'),(960,'et','ms','Estonian'),(961,'eu','en','Basque'),(962,'eu','es','Euskera'),(963,'eu','de','Baskisch'),(964,'eu','fr','Basque'),(965,'eu','ar','لغة الباسك'),(966,'eu','bs','Basque'),(967,'eu','bg','Баски'),(968,'eu','ca','Basque'),(969,'eu','cs','Basque'),(970,'eu','sk','Baskičtina'),(971,'eu','cy','Basque'),(972,'eu','da','Basque'),(973,'eu','el','Βασκικα'),(974,'eu','eo','Basque'),(975,'eu','et','Basque'),(976,'eu','eu','Euskara'),(977,'eu','fa','Basque'),(978,'eu','fi','baski'),(979,'eu','ga','Basque'),(980,'eu','he','בסקית'),(981,'eu','hi','Basque'),(982,'eu','hr','Baskijski'),(983,'eu','hu','baszk'),(984,'eu','hy','Basque'),(985,'eu','id','Basque'),(986,'eu','is','Basque'),(987,'eu','it','Basco'),(988,'eu','ja','バスク語'),(989,'eu','ko','바스크어'),(990,'eu','ku','Basque'),(991,'eu','la','Basque'),(992,'eu','lv','Basque'),(993,'eu','lt','Basque'),(994,'eu','mk','Basque'),(995,'eu','mt','Basque'),(996,'eu','mo','Basque'),(997,'eu','mn','Basque'),(998,'eu','ne','Basque'),(999,'eu','nl','Baskisch'),(1000,'eu','nb','Basque'),(1001,'eu','pa','Basque'),(1002,'eu','pl','baskijski'),(1003,'eu','pt-pt','Basco'),(1004,'eu','pt-br','Basco'),(1005,'eu','qu','Basque'),(1006,'eu','ro','Bască'),(1007,'eu','ru','Баскский'),(1008,'eu','sl','Baskovščina'),(1009,'eu','so','Basque'),(1010,'eu','sq','Basque'),(1011,'eu','sr','баскијски'),(1012,'eu','sv','Baskiska'),(1013,'eu','ta','Basque'),(1014,'eu','th','บาสค์'),(1015,'eu','tr','Bask dili'),(1016,'eu','uk','Basque'),(1017,'eu','ur','Basque'),(1018,'eu','uz','Basque'),(1019,'eu','vi','Basque'),(1020,'eu','yi','Basque'),(1021,'eu','zh-hans','巴斯克语'),(1022,'eu','zu','Basque'),(1023,'eu','zh-hant','巴斯克語'),(1024,'eu','ms','Basque'),(1025,'fa','en','Persian'),(1026,'fa','es','Persa'),(1027,'fa','de','Persisch'),(1028,'fa','fr','Perse'),(1029,'fa','ar','الفارسية'),(1030,'fa','bs','Persian'),(1031,'fa','bg','Персийски'),(1032,'fa','ca','Persian'),(1033,'fa','cs','Perský'),(1034,'fa','sk','Perzština'),(1035,'fa','cy','Persian'),(1036,'fa','da','Persian'),(1037,'fa','el','Περσικος'),(1038,'fa','eo','Persian'),(1039,'fa','et','Persian'),(1040,'fa','eu','Persian'),(1041,'fa','fa','فارسی'),(1042,'fa','fi','persia'),(1043,'fa','ga','Persian'),(1044,'fa','he','פרסית'),(1045,'fa','hi','Persian'),(1046,'fa','hr','Perzijski'),(1047,'fa','hu','perzsa'),(1048,'fa','hy','Persian'),(1049,'fa','id','Persian'),(1050,'fa','is','Persian'),(1051,'fa','it','Persiano'),(1052,'fa','ja','ペルシア語'),(1053,'fa','ko','페르시아어'),(1054,'fa','ku','Persian'),(1055,'fa','la','Persian'),(1056,'fa','lv','Persian'),(1057,'fa','lt','Persian'),(1058,'fa','mk','Persian'),(1059,'fa','mt','Persian'),(1060,'fa','mo','Persian'),(1061,'fa','mn','Persian'),(1062,'fa','ne','Persian'),(1063,'fa','nl','Perzisch'),(1064,'fa','nb','Persisk'),(1065,'fa','pa','Persian'),(1066,'fa','pl','perski'),(1067,'fa','pt-pt','Persa'),(1068,'fa','pt-br','Persa'),(1069,'fa','qu','Persian'),(1070,'fa','ro','Persană'),(1071,'fa','ru','Персидский'),(1072,'fa','sl','Perzijski'),(1073,'fa','so','Persian'),(1074,'fa','sq','Persian'),(1075,'fa','sr','персијски'),(1076,'fa','sv','Persiska'),(1077,'fa','ta','Persian'),(1078,'fa','th','เปอร์เซียน'),(1079,'fa','tr','Farsça'),(1080,'fa','uk','Persian'),(1081,'fa','ur','Persian'),(1082,'fa','uz','Persian'),(1083,'fa','vi','Persian'),(1084,'fa','yi','Persian'),(1085,'fa','zh-hans','波斯语'),(1086,'fa','zu','Persian'),(1087,'fa','zh-hant','波斯語'),(1088,'fa','ms','Persian'),(1089,'fi','en','Finnish'),(1090,'fi','es','Finlandés'),(1091,'fi','de','Finnisch'),(1092,'fi','fr','Finnois'),(1093,'fi','ar','الفنلندية'),(1094,'fi','bs','Finnish'),(1095,'fi','bg','Фински'),(1096,'fi','ca','Finnish'),(1097,'fi','cs','Finský'),(1098,'fi','sk','Fínština'),(1099,'fi','cy','Finnish'),(1100,'fi','da','Finnish'),(1101,'fi','el','Φινλανδικη'),(1102,'fi','eo','Finnish'),(1103,'fi','et','Finnish'),(1104,'fi','eu','Finnish'),(1105,'fi','fa','Finnish'),(1106,'fi','fi','Suomi'),(1107,'fi','ga','Finnish'),(1108,'fi','he','פינית'),(1109,'fi','hi','Finnish'),(1110,'fi','hr','Finski'),(1111,'fi','hu','finn'),(1112,'fi','hy','Finnish'),(1113,'fi','id','Finnish'),(1114,'fi','is','Finnish'),(1115,'fi','it','Finlandese'),(1116,'fi','ja','フィンランド語'),(1117,'fi','ko','핀란드어'),(1118,'fi','ku','Finnish'),(1119,'fi','la','Finnish'),(1120,'fi','lv','Finnish'),(1121,'fi','lt','Finnish'),(1122,'fi','mk','Finnish'),(1123,'fi','mt','Finnish'),(1124,'fi','mo','Finnish'),(1125,'fi','mn','Finnish'),(1126,'fi','ne','Finnish'),(1127,'fi','nl','Fins'),(1128,'fi','nb','Finsk'),(1129,'fi','pa','Finnish'),(1130,'fi','pl','fiński'),(1131,'fi','pt-pt','Finlandês'),(1132,'fi','pt-br','Finlandês'),(1133,'fi','qu','Finnish'),(1134,'fi','ro','Finlandeză'),(1135,'fi','ru','Финский'),(1136,'fi','sl','Finski'),(1137,'fi','so','Finnish'),(1138,'fi','sq','Finnish'),(1139,'fi','sr','фински'),(1140,'fi','sv','Finska'),(1141,'fi','ta','Finnish'),(1142,'fi','th','ฟินนิช'),(1143,'fi','tr','Fince'),(1144,'fi','uk','Finnish'),(1145,'fi','ur','Finnish'),(1146,'fi','uz','Finnish'),(1147,'fi','vi','Finnish'),(1148,'fi','yi','Finnish'),(1149,'fi','zh-hans','芬兰语'),(1150,'fi','zu','Finnish'),(1151,'fi','zh-hant','芬蘭語'),(1152,'fi','ms','Finnish'),(1153,'ga','en','Irish'),(1154,'ga','es','Irlandés'),(1155,'ga','de','Irisch'),(1156,'ga','fr','Irlandais'),(1157,'ga','ar','الأيرلندية'),(1158,'ga','bs','Irish'),(1159,'ga','bg','Ирландски'),(1160,'ga','ca','Irish'),(1161,'ga','cs','Irský'),(1162,'ga','sk','Írština'),(1163,'ga','cy','Irish'),(1164,'ga','da','Irish'),(1165,'ga','el','Ιρλανδικα'),(1166,'ga','eo','Irish'),(1167,'ga','et','Irish'),(1168,'ga','eu','Irish'),(1169,'ga','fa','Irish'),(1170,'ga','fi','iiri'),(1171,'ga','ga','Gaeilge'),(1172,'ga','he','אירית'),(1173,'ga','hi','Irish'),(1174,'ga','hr','Irci'),(1175,'ga','hu','ír'),(1176,'ga','hy','Irish'),(1177,'ga','id','Irish'),(1178,'ga','is','Irish'),(1179,'ga','it','Irlandese'),(1180,'ga','ja','アイルランド語'),(1181,'ga','ko','아일랜드어'),(1182,'ga','ku','Irish'),(1183,'ga','la','Irish'),(1184,'ga','lv','Irish'),(1185,'ga','lt','Irish'),(1186,'ga','mk','Irish'),(1187,'ga','mt','Irish'),(1188,'ga','mo','Irish'),(1189,'ga','mn','Irish'),(1190,'ga','ne','Irish'),(1191,'ga','nl','Iers'),(1192,'ga','nb','Irish'),(1193,'ga','pa','Irish'),(1194,'ga','pl','irlandzki'),(1195,'ga','pt-pt','Irlandês'),(1196,'ga','pt-br','Irlandês'),(1197,'ga','qu','Irish'),(1198,'ga','ro','Irlandeză'),(1199,'ga','ru','Ирландский'),(1200,'ga','sl','Irski'),(1201,'ga','so','Irish'),(1202,'ga','sq','Irish'),(1203,'ga','sr','ирски'),(1204,'ga','sv','Irländska'),(1205,'ga','ta','Irish'),(1206,'ga','th','ไอริช'),(1207,'ga','tr','İrlanda dili'),(1208,'ga','uk','Irish'),(1209,'ga','ur','Irish'),(1210,'ga','uz','Irish'),(1211,'ga','vi','Irish'),(1212,'ga','yi','Irish'),(1213,'ga','zh-hans','爱尔兰语'),(1214,'ga','zu','Irish'),(1215,'ga','zh-hant','愛爾蘭語'),(1216,'ga','ms','Irish'),(1217,'he','en','Hebrew'),(1218,'he','es','Hebreo'),(1219,'he','de','Hebräisch'),(1220,'he','fr','Hébreu'),(1221,'he','ar','العبرية'),(1222,'he','bs','Hebrew'),(1223,'he','bg','Иврит'),(1224,'he','ca','Hebrew'),(1225,'he','cs','Hebrejština'),(1226,'he','sk','Hebrejčina'),(1227,'he','cy','Hebrew'),(1228,'he','da','Hebrew'),(1229,'he','el','Εβραικα'),(1230,'he','eo','Hebrew'),(1231,'he','et','Hebrew'),(1232,'he','eu','Hebrew'),(1233,'he','fa','Hebrew'),(1234,'he','fi','heprea'),(1235,'he','ga','Hebrew'),(1236,'he','he','עברית'),(1237,'he','hi','Hebrew'),(1238,'he','hr','Hebrejski'),(1239,'he','hu','héber'),(1240,'he','hy','Hebrew'),(1241,'he','id','Hebrew'),(1242,'he','is','Hebrew'),(1243,'he','it','Ebraico'),(1244,'he','ja','ヘブライ語'),(1245,'he','ko','히브리어'),(1246,'he','ku','Hebrew'),(1247,'he','la','Hebrew'),(1248,'he','lv','Hebrew'),(1249,'he','lt','Hebrew'),(1250,'he','mk','Hebrew'),(1251,'he','mt','Hebrew'),(1252,'he','mo','Hebrew'),(1253,'he','mn','Hebrew'),(1254,'he','ne','Hebrew'),(1255,'he','nl','Hebreeuws'),(1256,'he','nb','Hebraisk'),(1257,'he','pa','Hebrew'),(1258,'he','pl','hebrajski'),(1259,'he','pt-pt','Hebraico'),(1260,'he','pt-br','Hebraico'),(1261,'he','qu','Hebrew'),(1262,'he','ro','Ebraică'),(1263,'he','ru','Иврит'),(1264,'he','sl','Hebrejščina'),(1265,'he','so','Hebrew'),(1266,'he','sq','Hebrew'),(1267,'he','sr','Хебрејски'),(1268,'he','sv','Hebreiska'),(1269,'he','ta','Hebrew'),(1270,'he','th','ฮิบรู'),(1271,'he','tr','İbranice'),(1272,'he','uk','Hebrew'),(1273,'he','ur','Hebrew'),(1274,'he','uz','Hebrew'),(1275,'he','vi','Hebrew'),(1276,'he','yi','Hebrew'),(1277,'he','zh-hans','希伯来语'),(1278,'he','zu','Hebrew'),(1279,'he','zh-hant','希伯來語'),(1280,'he','ms','Hebrew'),(1281,'hi','en','Hindi'),(1282,'hi','es','Hindi'),(1283,'hi','de','Hindi'),(1284,'hi','fr','Hindi'),(1285,'hi','ar','الهندية'),(1286,'hi','bs','Hindi'),(1287,'hi','bg','Хинди'),(1288,'hi','ca','Hindi'),(1289,'hi','cs','Hindština'),(1290,'hi','sk','Hindčina'),(1291,'hi','cy','Hindi'),(1292,'hi','da','Hindi'),(1293,'hi','el','Ινδικα'),(1294,'hi','eo','Hindi'),(1295,'hi','et','Hindi'),(1296,'hi','eu','Hindi'),(1297,'hi','fa','Hindi'),(1298,'hi','fi','hindi'),(1299,'hi','ga','Hindi'),(1300,'hi','he','הודית'),(1301,'hi','hi','हिन्दी'),(1302,'hi','hr','Hindski'),(1303,'hi','hu','hindi'),(1304,'hi','hy','Hindi'),(1305,'hi','id','Hindi'),(1306,'hi','is','Hindi'),(1307,'hi','it','Hindi'),(1308,'hi','ja','ヒンディー語'),(1309,'hi','ko','힌두어'),(1310,'hi','ku','Hindi'),(1311,'hi','la','Hindi'),(1312,'hi','lv','Hindi'),(1313,'hi','lt','Hindi'),(1314,'hi','mk','Hindi'),(1315,'hi','mt','Hindi'),(1316,'hi','mo','Hindi'),(1317,'hi','mn','Hindi'),(1318,'hi','ne','Hindi'),(1319,'hi','nl','Hindi'),(1320,'hi','nb','Hindi'),(1321,'hi','pa','Hindi'),(1322,'hi','pl','hindi'),(1323,'hi','pt-pt','Hindi'),(1324,'hi','pt-br','Hindi'),(1325,'hi','qu','Hindi'),(1326,'hi','ro','Hindi'),(1327,'hi','ru','Хинди'),(1328,'hi','sl','Hindi'),(1329,'hi','so','Hindi'),(1330,'hi','sq','Hindi'),(1331,'hi','sr','хинди'),(1332,'hi','sv','Hindi'),(1333,'hi','ta','Hindi'),(1334,'hi','th','ฮินดิ'),(1335,'hi','tr','Hintçe'),(1336,'hi','uk','Hindi'),(1337,'hi','ur','Hindi'),(1338,'hi','uz','Hindi'),(1339,'hi','vi','Hindi'),(1340,'hi','yi','Hindi'),(1341,'hi','zh-hans','印地语'),(1342,'hi','zu','Hindi'),(1343,'hi','zh-hant','印地語'),(1344,'hi','ms','Hindi'),(1345,'hr','en','Croatian'),(1346,'hr','es','Croata'),(1347,'hr','de','Kroatisch'),(1348,'hr','fr','Croate'),(1349,'hr','ar','الكرواتية'),(1350,'hr','bs','Croatian'),(1351,'hr','bg','Хърватски'),(1352,'hr','ca','Croatian'),(1353,'hr','cs','Chorvatský'),(1354,'hr','sk','Chorvátština'),(1355,'hr','cy','Croatian'),(1356,'hr','da','Croatian'),(1357,'hr','el','Κροατικα'),(1358,'hr','eo','Croatian'),(1359,'hr','et','Croatian'),(1360,'hr','eu','Croatian'),(1361,'hr','fa','Croatian'),(1362,'hr','fi','kroatia'),(1363,'hr','ga','Croatian'),(1364,'hr','he','קרוטאית'),(1365,'hr','hi','Croatian'),(1366,'hr','hr','Hrvatski'),(1367,'hr','hu','horvát'),(1368,'hr','hy','Croatian'),(1369,'hr','id','Croatian'),(1370,'hr','is','Croatian'),(1371,'hr','it','Croato'),(1372,'hr','ja','クロアチア語'),(1373,'hr','ko','크로아시아어'),(1374,'hr','ku','Croatian'),(1375,'hr','la','Croatian'),(1376,'hr','lv','Croatian'),(1377,'hr','lt','Croatian'),(1378,'hr','mk','Croatian'),(1379,'hr','mt','Croatian'),(1380,'hr','mo','Croatian'),(1381,'hr','mn','Croatian'),(1382,'hr','ne','Croatian'),(1383,'hr','nl','Kroatisch'),(1384,'hr','nb','Kroatisk'),(1385,'hr','pa','Croatian'),(1386,'hr','pl','chorwacki'),(1387,'hr','pt-pt','Croata'),(1388,'hr','pt-br','Croata'),(1389,'hr','qu','Croatian'),(1390,'hr','ro','Croată'),(1391,'hr','ru','Хорватский'),(1392,'hr','sl','Hrvaški'),(1393,'hr','so','Croatian'),(1394,'hr','sq','Croatian'),(1395,'hr','sr','хрватски'),(1396,'hr','sv','Kroatiska'),(1397,'hr','ta','Croatian'),(1398,'hr','th','โครเอเชีย'),(1399,'hr','tr','Hırvatça'),(1400,'hr','uk','Croatian'),(1401,'hr','ur','Croatian'),(1402,'hr','uz','Croatian'),(1403,'hr','vi','Croatian'),(1404,'hr','yi','Croatian'),(1405,'hr','zh-hans','克罗地亚语'),(1406,'hr','zu','Croatian'),(1407,'hr','zh-hant','克羅地亞語'),(1408,'hr','ms','Croatian'),(1409,'hu','en','Hungarian'),(1410,'hu','es','Húngaro'),(1411,'hu','de','Ungarisch'),(1412,'hu','fr','Hongrois'),(1413,'hu','ar','الهنغارية'),(1414,'hu','bs','Hungarian'),(1415,'hu','bg','Унгарски'),(1416,'hu','ca','Hungarian'),(1417,'hu','cs','Maďarština'),(1418,'hu','sk','Maďarčina'),(1419,'hu','cy','Hungarian'),(1420,'hu','da','Hungarian'),(1421,'hu','el','Ουγγρικα'),(1422,'hu','eo','Hungarian'),(1423,'hu','et','Hungarian'),(1424,'hu','eu','Hungarian'),(1425,'hu','fa','Hungarian'),(1426,'hu','fi','unkari'),(1427,'hu','ga','Hungarian'),(1428,'hu','he','הונגרית'),(1429,'hu','hi','Hungarian'),(1430,'hu','hr','Mađarski'),(1431,'hu','hu','Magyar'),(1432,'hu','hy','Hungarian'),(1433,'hu','id','Hungarian'),(1434,'hu','is','Hungarian'),(1435,'hu','it','Ungherese'),(1436,'hu','ja','ハンガリー語'),(1437,'hu','ko','헝가리어'),(1438,'hu','ku','Hungarian'),(1439,'hu','la','Hungarian'),(1440,'hu','lv','Hungarian'),(1441,'hu','lt','Hungarian'),(1442,'hu','mk','Hungarian'),(1443,'hu','mt','Hungarian'),(1444,'hu','mo','Hungarian'),(1445,'hu','mn','Hungarian'),(1446,'hu','ne','Hungarian'),(1447,'hu','nl','Hongaars'),(1448,'hu','nb','Ungarsk'),(1449,'hu','pa','Hungarian'),(1450,'hu','pl','węgierski'),(1451,'hu','pt-pt','Húngaro'),(1452,'hu','pt-br','Húngaro'),(1453,'hu','qu','Hungarian'),(1454,'hu','ro','Ungară'),(1455,'hu','ru','Венгерский'),(1456,'hu','sl','Madžarski'),(1457,'hu','so','Hungarian'),(1458,'hu','sq','Hungarian'),(1459,'hu','sr','мађарски'),(1460,'hu','sv','Ungerska'),(1461,'hu','ta','Hungarian'),(1462,'hu','th','ฮังการี'),(1463,'hu','tr','Macarca'),(1464,'hu','uk','Hungarian'),(1465,'hu','ur','Hungarian'),(1466,'hu','uz','Hungarian'),(1467,'hu','vi','Hungarian'),(1468,'hu','yi','Hungarian'),(1469,'hu','zh-hans','匈牙利语'),(1470,'hu','zu','Hungarian'),(1471,'hu','zh-hant','匈牙利語'),(1472,'hu','ms','Hungarian'),(1473,'hy','en','Armenian'),(1474,'hy','es','Armenio'),(1475,'hy','de','Armenisch'),(1476,'hy','fr','Arménien'),(1477,'hy','ar','الأرمينية'),(1478,'hy','bs','Armenian'),(1479,'hy','bg','Арменски'),(1480,'hy','ca','Armenian'),(1481,'hy','cs','Arménský'),(1482,'hy','sk','Arménčina'),(1483,'hy','cy','Armenian'),(1484,'hy','da','Armenian'),(1485,'hy','el','Αρμενικα'),(1486,'hy','eo','Armenian'),(1487,'hy','et','Armenian'),(1488,'hy','eu','Armenian'),(1489,'hy','fa','Armenian'),(1490,'hy','fi','armenia'),(1491,'hy','ga','Armenian'),(1492,'hy','he','ארמנית'),(1493,'hy','hi','Armenian'),(1494,'hy','hr','Armenac'),(1495,'hy','hu','örmény'),(1496,'hy','hy','հայերեն'),(1497,'hy','id','Armenian'),(1498,'hy','is','Armenian'),(1499,'hy','it','Armeno'),(1500,'hy','ja','アルメニア語'),(1501,'hy','ko','아르메니아어'),(1502,'hy','ku','Armenian'),(1503,'hy','la','Armenian'),(1504,'hy','lv','Armenian'),(1505,'hy','lt','Armenian'),(1506,'hy','mk','Armenian'),(1507,'hy','mt','Armenian'),(1508,'hy','mo','Armenian'),(1509,'hy','mn','Armenian'),(1510,'hy','ne','Armenian'),(1511,'hy','nl','Armeens'),(1512,'hy','nb','Armensk'),(1513,'hy','pa','Armenian'),(1514,'hy','pl','ormiański'),(1515,'hy','pt-pt','Arménio'),(1516,'hy','pt-br','Arménio'),(1517,'hy','qu','Armenian'),(1518,'hy','ro','Armeană'),(1519,'hy','ru','Армянский'),(1520,'hy','sl','Armenski'),(1521,'hy','so','Armenian'),(1522,'hy','sq','Armenian'),(1523,'hy','sr','јерменски'),(1524,'hy','sv','Armeniska'),(1525,'hy','ta','Armenian'),(1526,'hy','th','อาร์เมเนีย'),(1527,'hy','tr','Ermenice'),(1528,'hy','uk','Armenian'),(1529,'hy','ur','Armenian'),(1530,'hy','uz','Armenian'),(1531,'hy','vi','Armenian'),(1532,'hy','yi','Armenian'),(1533,'hy','zh-hans','亚美尼亚语'),(1534,'hy','zu','Armenian'),(1535,'hy','zh-hant','亞美尼亞語'),(1536,'hy','ms','Armenian'),(1537,'id','en','Indonesian'),(1538,'id','es','Indonesio'),(1539,'id','de','Indonesisch'),(1540,'id','fr','Indonésien'),(1541,'id','ar','الأندونيسية'),(1542,'id','bs','Indonesian'),(1543,'id','bg','Индонезийски'),(1544,'id','ca','Indonesian'),(1545,'id','cs','Indonéský'),(1546,'id','sk','Indonézčina'),(1547,'id','cy','Indonesian'),(1548,'id','da','Indonesian'),(1549,'id','el','Ινδονησιακα'),(1550,'id','eo','Indonesian'),(1551,'id','et','Indonesian'),(1552,'id','eu','Indonesian'),(1553,'id','fa','Indonesian'),(1554,'id','fi','indonesia'),(1555,'id','ga','Indonesian'),(1556,'id','he','אינדונזית'),(1557,'id','hi','Indonesian'),(1558,'id','hr','Indonezijski'),(1559,'id','hu','indonéz'),(1560,'id','hy','Indonesian'),(1561,'id','id','Indonesia'),(1562,'id','is','Indonesian'),(1563,'id','it','Indonesiano'),(1564,'id','ja','インドネシア語'),(1565,'id','ko','인도네시아어'),(1566,'id','ku','Indonesian'),(1567,'id','la','Indonesian'),(1568,'id','lv','Indonesian'),(1569,'id','lt','Indonesian'),(1570,'id','mk','Indonesian'),(1571,'id','mt','Indonesian'),(1572,'id','mo','Indonesian'),(1573,'id','mn','Indonesian'),(1574,'id','ne','Indonesian'),(1575,'id','nl','Indonesisch'),(1576,'id','nb','Indonesian'),(1577,'id','pa','Indonesian'),(1578,'id','pl','indonezyjski'),(1579,'id','pt-pt','Indonésio'),(1580,'id','pt-br','Indonésio'),(1581,'id','qu','Indonesian'),(1582,'id','ro','Indoneziană'),(1583,'id','ru','Индонезийский'),(1584,'id','sl','Indonezijski'),(1585,'id','so','Indonesian'),(1586,'id','sq','Indonesian'),(1587,'id','sr','индонезијски'),(1588,'id','sv','Indonesiska'),(1589,'id','ta','Indonesian'),(1590,'id','th','อินโดนีเซีย'),(1591,'id','tr','Endonezya dili'),(1592,'id','uk','Indonesian'),(1593,'id','ur','Indonesian'),(1594,'id','uz','Indonesian'),(1595,'id','vi','Indonesian'),(1596,'id','yi','Indonesian'),(1597,'id','zh-hans','印度尼西亚语'),(1598,'id','zu','Indonesian'),(1599,'id','zh-hant','印尼語'),(1600,'id','ms','Indonesian'),(1601,'is','en','Icelandic'),(1602,'is','es','Islandés'),(1603,'is','de','Isländisch'),(1604,'is','fr','Islandais'),(1605,'is','ar','الأيسلاندية'),(1606,'is','bs','Icelandic'),(1607,'is','bg','Исландски'),(1608,'is','ca','Icelandic'),(1609,'is','cs','Islandský'),(1610,'is','sk','Islančina'),(1611,'is','cy','Icelandic'),(1612,'is','da','Icelandic'),(1613,'is','el','Ισλανδικα'),(1614,'is','eo','Icelandic'),(1615,'is','et','Icelandic'),(1616,'is','eu','Icelandic'),(1617,'is','fa','Icelandic'),(1618,'is','fi','islanti'),(1619,'is','ga','Icelandic'),(1620,'is','he','איסלנדית'),(1621,'is','hi','Icelandic'),(1622,'is','hr','Islandski'),(1623,'is','hu','izlandi'),(1624,'is','hy','Icelandic'),(1625,'is','id','Icelandic'),(1626,'is','is','Íslenska'),(1627,'is','it','Islandese'),(1628,'is','ja','アイスランド語'),(1629,'is','ko','아이슬랜드어'),(1630,'is','ku','Icelandic'),(1631,'is','la','Icelandic'),(1632,'is','lv','Icelandic'),(1633,'is','lt','Icelandic'),(1634,'is','mk','Icelandic'),(1635,'is','mt','Icelandic'),(1636,'is','mo','Icelandic'),(1637,'is','mn','Icelandic'),(1638,'is','ne','Icelandic'),(1639,'is','nl','Ijslands'),(1640,'is','nb','Islandsk'),(1641,'is','pa','Icelandic'),(1642,'is','pl','islandzki'),(1643,'is','pt-pt','Islandês'),(1644,'is','pt-br','Islandês'),(1645,'is','qu','Icelandic'),(1646,'is','ro','Islandeză'),(1647,'is','ru','Исландский'),(1648,'is','sl','Islandski'),(1649,'is','so','Icelandic'),(1650,'is','sq','Icelandic'),(1651,'is','sr','исландски'),(1652,'is','sv','Isländska'),(1653,'is','ta','Icelandic'),(1654,'is','th','ไอซ์แลนด์'),(1655,'is','tr','İzlandaca'),(1656,'is','uk','Icelandic'),(1657,'is','ur','Icelandic'),(1658,'is','uz','Icelandic'),(1659,'is','vi','Icelandic'),(1660,'is','yi','Icelandic'),(1661,'is','zh-hans','冰岛语'),(1662,'is','zu','Icelandic'),(1663,'is','zh-hant','冰島語'),(1664,'is','ms','Icelandic'),(1665,'it','en','Italian'),(1666,'it','es','Italiano'),(1667,'it','de','Italienisch'),(1668,'it','fr','Italien'),(1669,'it','ar','الإيطالية'),(1670,'it','bs','Italian'),(1671,'it','bg','Италиански'),(1672,'it','ca','Italian'),(1673,'it','cs','Ital'),(1674,'it','sk','Taliančina'),(1675,'it','cy','Italian'),(1676,'it','da','Italian'),(1677,'it','el','Ιταλικα'),(1678,'it','eo','Italian'),(1679,'it','et','Italian'),(1680,'it','eu','Italian'),(1681,'it','fa','Italian'),(1682,'it','fi','italia'),(1683,'it','ga','Italian'),(1684,'it','he','איטלקית'),(1685,'it','hi','Italian'),(1686,'it','hr','Talijanski'),(1687,'it','hu','olasz'),(1688,'it','hy','Italian'),(1689,'it','id','Italian'),(1690,'it','is','Italian'),(1691,'it','it','Italiano'),(1692,'it','ja','イタリア語'),(1693,'it','ko','이태리어'),(1694,'it','ku','Italian'),(1695,'it','la','Italian'),(1696,'it','lv','Italian'),(1697,'it','lt','Italian'),(1698,'it','mk','Italian'),(1699,'it','mt','Italian'),(1700,'it','mo','Italian'),(1701,'it','mn','Italian'),(1702,'it','ne','Italian'),(1703,'it','nl','Italiaans'),(1704,'it','nb','Italiensk'),(1705,'it','pa','Italian'),(1706,'it','pl','włoski'),(1707,'it','pt-pt','Italiano'),(1708,'it','pt-br','Italiano'),(1709,'it','qu','Italian'),(1710,'it','ro','Italiană'),(1711,'it','ru','Итальянский'),(1712,'it','sl','Italijanski'),(1713,'it','so','Italian'),(1714,'it','sq','Italian'),(1715,'it','sr','италијански'),(1716,'it','sv','Italienska'),(1717,'it','ta','Italian'),(1718,'it','th','อิตาลี'),(1719,'it','tr','İtalyanca'),(1720,'it','uk','Italian'),(1721,'it','ur','Italian'),(1722,'it','uz','Italian'),(1723,'it','vi','Italian'),(1724,'it','yi','Italian'),(1725,'it','zh-hans','意大利语'),(1726,'it','zu','Italian'),(1727,'it','zh-hant','義大利語'),(1728,'it','ms','Italian'),(1729,'ja','en','Japanese'),(1730,'ja','es','Japonés'),(1731,'ja','de','Japanisch'),(1732,'ja','fr','Japonais'),(1733,'ja','ar','اليابانية'),(1734,'ja','bs','Japanese'),(1735,'ja','bg','Японски'),(1736,'ja','ca','Japanese'),(1737,'ja','cs','Japonský'),(1738,'ja','sk','Japonština'),(1739,'ja','cy','Japanese'),(1740,'ja','da','Japanese'),(1741,'ja','el','Ιαπωνικα'),(1742,'ja','eo','Japanese'),(1743,'ja','et','Japanese'),(1744,'ja','eu','Japanese'),(1745,'ja','fa','Japanese'),(1746,'ja','fi','japani'),(1747,'ja','ga','Japanese'),(1748,'ja','he','יפנית'),(1749,'ja','hi','Japanese'),(1750,'ja','hr','Japanski'),(1751,'ja','hu','japán'),(1752,'ja','hy','Japanese'),(1753,'ja','id','Japanese'),(1754,'ja','is','Japanese'),(1755,'ja','it','Giapponese'),(1756,'ja','ja','日本語'),(1757,'ja','ko','일어'),(1758,'ja','ku','Japanese'),(1759,'ja','la','Japanese'),(1760,'ja','lv','Japanese'),(1761,'ja','lt','Japanese'),(1762,'ja','mk','Japanese'),(1763,'ja','mt','Japanese'),(1764,'ja','mo','Japanese'),(1765,'ja','mn','Japanese'),(1766,'ja','ne','Japanese'),(1767,'ja','nl','Japans'),(1768,'ja','nb','Japansk'),(1769,'ja','pa','Japanese'),(1770,'ja','pl','japoński'),(1771,'ja','pt-pt','Japonês'),(1772,'ja','pt-br','Japonês'),(1773,'ja','qu','Japanese'),(1774,'ja','ro','Japoneză'),(1775,'ja','ru','Японский'),(1776,'ja','sl','Japonski'),(1777,'ja','so','Japanese'),(1778,'ja','sq','Japanese'),(1779,'ja','sr','јапански'),(1780,'ja','sv','Japanska'),(1781,'ja','ta','Japanese'),(1782,'ja','th','ญี่ปุ่น'),(1783,'ja','tr','Japonca'),(1784,'ja','uk','Japanese'),(1785,'ja','ur','Japanese'),(1786,'ja','uz','Japanese'),(1787,'ja','vi','Japanese'),(1788,'ja','yi','Japanese'),(1789,'ja','zh-hans','日语'),(1790,'ja','zu','Japanese'),(1791,'ja','zh-hant','日語'),(1792,'ja','ms','Japanese'),(1793,'ko','en','Korean'),(1794,'ko','es','Coreano'),(1795,'ko','de','Koreanisch'),(1796,'ko','fr','Coréen'),(1797,'ko','ar','الكورية'),(1798,'ko','bs','Korean'),(1799,'ko','bg','Корейски'),(1800,'ko','ca','Korean'),(1801,'ko','cs','Korejský'),(1802,'ko','sk','Kórejčina'),(1803,'ko','cy','Korean'),(1804,'ko','da','Korean'),(1805,'ko','el','Κορεατικα'),(1806,'ko','eo','Korean'),(1807,'ko','et','Korean'),(1808,'ko','eu','Korean'),(1809,'ko','fa','Korean'),(1810,'ko','fi','korea'),(1811,'ko','ga','Korean'),(1812,'ko','he','קוראנית'),(1813,'ko','hi','Korean'),(1814,'ko','hr','Korejski'),(1815,'ko','hu','koreai'),(1816,'ko','hy','Korean'),(1817,'ko','id','Korean'),(1818,'ko','is','Korean'),(1819,'ko','it','Coreano'),(1820,'ko','ja','韓国語'),(1821,'ko','ko','한국어'),(1822,'ko','ku','Korean'),(1823,'ko','la','Korean'),(1824,'ko','lv','Korean'),(1825,'ko','lt','Korean'),(1826,'ko','mk','Korean'),(1827,'ko','mt','Korean'),(1828,'ko','mo','Korean'),(1829,'ko','mn','Korean'),(1830,'ko','ne','Korean'),(1831,'ko','nl','Koreaans'),(1832,'ko','nb','Koreanske'),(1833,'ko','pa','Korean'),(1834,'ko','pl','koreański'),(1835,'ko','pt-pt','Coreano'),(1836,'ko','pt-br','Coreano'),(1837,'ko','qu','Korean'),(1838,'ko','ro','Coreană'),(1839,'ko','ru','Корейский'),(1840,'ko','sl','Korejski'),(1841,'ko','so','Korean'),(1842,'ko','sq','Korean'),(1843,'ko','sr','корејски'),(1844,'ko','sv','Koreanska'),(1845,'ko','ta','Korean'),(1846,'ko','th','เกาหลี'),(1847,'ko','tr','Kore dili'),(1848,'ko','uk','Korean'),(1849,'ko','ur','Korean'),(1850,'ko','uz','Korean'),(1851,'ko','vi','Korean'),(1852,'ko','yi','Korean'),(1853,'ko','zh-hans','韩语'),(1854,'ko','zu','Korean'),(1855,'ko','zh-hant','韓語'),(1856,'ko','ms','Korean'),(1857,'ku','en','Kurdish'),(1858,'ku','es','Kurdo'),(1859,'ku','de','Kurdisch'),(1860,'ku','fr','Kurde'),(1861,'ku','ar','الكردية'),(1862,'ku','bs','Kurdish'),(1863,'ku','bg','Кюрдски'),(1864,'ku','ca','Kurdish'),(1865,'ku','cs','Kurdský'),(1866,'ku','sk','Kurdština'),(1867,'ku','cy','Kurdish'),(1868,'ku','da','Kurdish'),(1869,'ku','el','Κουρδικα'),(1870,'ku','eo','Kurdish'),(1871,'ku','et','Kurdish'),(1872,'ku','eu','Kurdish'),(1873,'ku','fa','Kurdish'),(1874,'ku','fi','kurdi'),(1875,'ku','ga','Kurdish'),(1876,'ku','he','כורדית'),(1877,'ku','hi','Kurdish'),(1878,'ku','hr','Kurdski'),(1879,'ku','hu','kurd'),(1880,'ku','hy','Kurdish'),(1881,'ku','id','Kurdish'),(1882,'ku','is','Kurdish'),(1883,'ku','it','Curdo'),(1884,'ku','ja','クルド語'),(1885,'ku','ko','쿠르드어'),(1886,'ku','ku','Kurdish'),(1887,'ku','la','Kurdish'),(1888,'ku','lv','Kurdish'),(1889,'ku','lt','Kurdish'),(1890,'ku','mk','Kurdish'),(1891,'ku','mt','Kurdish'),(1892,'ku','mo','Kurdish'),(1893,'ku','mn','Kurdish'),(1894,'ku','ne','Kurdish'),(1895,'ku','nl','Koerdish'),(1896,'ku','nb','Kurdisk'),(1897,'ku','pa','Kurdish'),(1898,'ku','pl','kurdyjski'),(1899,'ku','pt-pt','Curdo'),(1900,'ku','pt-br','Curdo'),(1901,'ku','qu','Kurdish'),(1902,'ku','ro','Kurdă'),(1903,'ku','ru','Курдский'),(1904,'ku','sl','Kurdščina'),(1905,'ku','so','Kurdish'),(1906,'ku','sq','Kurdish'),(1907,'ku','sr','курдски'),(1908,'ku','sv','Kurdiska'),(1909,'ku','ta','Kurdish'),(1910,'ku','th','เคอร์ดิช'),(1911,'ku','tr','Kürtçe'),(1912,'ku','uk','Kurdish'),(1913,'ku','ur','Kurdish'),(1914,'ku','uz','Kurdish'),(1915,'ku','vi','Kurdish'),(1916,'ku','yi','Kurdish'),(1917,'ku','zh-hans','库尔德语'),(1918,'ku','zu','Kurdish'),(1919,'ku','zh-hant','庫爾德語'),(1920,'ku','ms','Kurdish'),(1921,'la','en','Latin'),(1922,'la','es','Latín'),(1923,'la','de','Latein'),(1924,'la','fr','Latin'),(1925,'la','ar','اللاتينية'),(1926,'la','bs','Latin'),(1927,'la','bg','Латински'),(1928,'la','ca','Latin'),(1929,'la','cs','Latina'),(1930,'la','sk','Latinčina'),(1931,'la','cy','Latin'),(1932,'la','da','Latin'),(1933,'la','el','Λατινικη'),(1934,'la','eo','Latin'),(1935,'la','et','Latin'),(1936,'la','eu','Latin'),(1937,'la','fa','Latin'),(1938,'la','fi','latina'),(1939,'la','ga','Latin'),(1940,'la','he','לטינית'),(1941,'la','hi','Latin'),(1942,'la','hr','Latin'),(1943,'la','hu','latin'),(1944,'la','hy','Latin'),(1945,'la','id','Latin'),(1946,'la','is','Latin'),(1947,'la','it','Latino'),(1948,'la','ja','ラテン語'),(1949,'la','ko','라틴어'),(1950,'la','ku','Latin'),(1951,'la','la','Latin'),(1952,'la','lv','Latin'),(1953,'la','lt','Latin'),(1954,'la','mk','Latin'),(1955,'la','mt','Latin'),(1956,'la','mo','Latin'),(1957,'la','mn','Latin'),(1958,'la','ne','Latin'),(1959,'la','nl','Latijn'),(1960,'la','nb','Latin'),(1961,'la','pa','Latin'),(1962,'la','pl','łaciński'),(1963,'la','pt-pt','Latim'),(1964,'la','pt-br','Latim'),(1965,'la','qu','Latin'),(1966,'la','ro','Latină'),(1967,'la','ru','Латинский'),(1968,'la','sl','Latinščina'),(1969,'la','so','Latin'),(1970,'la','sq','Latin'),(1971,'la','sr','латински'),(1972,'la','sv','Latin'),(1973,'la','ta','Latin'),(1974,'la','th','ละติน'),(1975,'la','tr','Latince'),(1976,'la','uk','Latin'),(1977,'la','ur','Latin'),(1978,'la','uz','Latin'),(1979,'la','vi','Latin'),(1980,'la','yi','Latin'),(1981,'la','zh-hans','拉丁语'),(1982,'la','zu','Latin'),(1983,'la','zh-hant','拉丁語'),(1984,'la','ms','Latin'),(1985,'lv','en','Latvian'),(1986,'lv','es','Letón'),(1987,'lv','de','Lettisch'),(1988,'lv','fr','Letton'),(1989,'lv','ar','اللاتفية'),(1990,'lv','bs','Latvian'),(1991,'lv','bg','Латвийски'),(1992,'lv','ca','Latvian'),(1993,'lv','cs','Lotyština'),(1994,'lv','sk','Lotyština'),(1995,'lv','cy','Latvian'),(1996,'lv','da','Latvian'),(1997,'lv','el','Λετονικα'),(1998,'lv','eo','Latvian'),(1999,'lv','et','Latvian'),(2000,'lv','eu','Latvian'),(2001,'lv','fa','Latvian'),(2002,'lv','fi','latvia'),(2003,'lv','ga','Latvian'),(2004,'lv','he','לטבית'),(2005,'lv','hi','Latvian'),(2006,'lv','hr','Letonski'),(2007,'lv','hu','lett'),(2008,'lv','hy','Latvian'),(2009,'lv','id','Latvian'),(2010,'lv','is','Latvian'),(2011,'lv','it','Lettone'),(2012,'lv','ja','ラトビア語'),(2013,'lv','ko','라트비아어'),(2014,'lv','ku','Latvian'),(2015,'lv','la','Latvian'),(2016,'lv','lv','Latviešu'),(2017,'lv','lt','Latvian'),(2018,'lv','mk','Latvian'),(2019,'lv','mt','Latvian'),(2020,'lv','mo','Latvian'),(2021,'lv','mn','Latvian'),(2022,'lv','ne','Latvian'),(2023,'lv','nl','Lets'),(2024,'lv','nb','Latvisk'),(2025,'lv','pa','Latvian'),(2026,'lv','pl','łotewski'),(2027,'lv','pt-pt','Letão'),(2028,'lv','pt-br','Letão'),(2029,'lv','qu','Latvian'),(2030,'lv','ro','Letoniană'),(2031,'lv','ru','латышский'),(2032,'lv','sl','Latvijščina'),(2033,'lv','so','Latvian'),(2034,'lv','sq','Latvian'),(2035,'lv','sr','летонски'),(2036,'lv','sv','Lettiska'),(2037,'lv','ta','Latvian'),(2038,'lv','th','ลัตเวีย'),(2039,'lv','tr','Letonca'),(2040,'lv','uk','Latvian'),(2041,'lv','ur','Latvian'),(2042,'lv','uz','Latvian'),(2043,'lv','vi','Latvian'),(2044,'lv','yi','Latvian'),(2045,'lv','zh-hans','拉脱维亚语'),(2046,'lv','zu','Latvian'),(2047,'lv','zh-hant','拉脫維亞語'),(2048,'lv','ms','Latvian'),(2049,'lt','en','Lithuanian'),(2050,'lt','es','Lituano'),(2051,'lt','de','Litauisch'),(2052,'lt','fr','Lituanien'),(2053,'lt','ar','اللتوانية'),(2054,'lt','bs','Lithuanian'),(2055,'lt','bg','Литовски'),(2056,'lt','ca','Lithuanian'),(2057,'lt','cs','litevský'),(2058,'lt','sk','Litovčina'),(2059,'lt','cy','Lithuanian'),(2060,'lt','da','Lithuanian'),(2061,'lt','el','Λιθουανικα'),(2062,'lt','eo','Lithuanian'),(2063,'lt','et','Lithuanian'),(2064,'lt','eu','Lithuanian'),(2065,'lt','fa','Lithuanian'),(2066,'lt','fi','liettua'),(2067,'lt','ga','Lithuanian'),(2068,'lt','he','ליטאית'),(2069,'lt','hi','Lithuanian'),(2070,'lt','hr','Litvanski'),(2071,'lt','hu','litván'),(2072,'lt','hy','Lithuanian'),(2073,'lt','id','Lithuanian'),(2074,'lt','is','Lithuanian'),(2075,'lt','it','Lituano'),(2076,'lt','ja','リトアニア語'),(2077,'lt','ko','리투아니아어'),(2078,'lt','ku','Lithuanian'),(2079,'lt','la','Lithuanian'),(2080,'lt','lv','Lithuanian'),(2081,'lt','lt','Lietuvos'),(2082,'lt','mk','Lithuanian'),(2083,'lt','mt','Lithuanian'),(2084,'lt','mo','Lithuanian'),(2085,'lt','mn','Lithuanian'),(2086,'lt','ne','Lithuanian'),(2087,'lt','nl','Litouws'),(2088,'lt','nb','Litauisk'),(2089,'lt','pa','Lithuanian'),(2090,'lt','pl','litewski'),(2091,'lt','pt-pt','Lituano'),(2092,'lt','pt-br','Lituano'),(2093,'lt','qu','Lithuanian'),(2094,'lt','ro','Lituaniană'),(2095,'lt','ru','Литовский'),(2096,'lt','sl','Litovščina'),(2097,'lt','so','Lithuanian'),(2098,'lt','sq','Lithuanian'),(2099,'lt','sr','литвански'),(2100,'lt','sv','Litauiska'),(2101,'lt','ta','Lithuanian'),(2102,'lt','th','ลิธัวเนีย'),(2103,'lt','tr','Litvanyaca'),(2104,'lt','uk','Lithuanian'),(2105,'lt','ur','Lithuanian'),(2106,'lt','uz','Lithuanian'),(2107,'lt','vi','Lithuanian'),(2108,'lt','yi','Lithuanian'),(2109,'lt','zh-hans','立陶宛语'),(2110,'lt','zu','Lithuanian'),(2111,'lt','zh-hant','立陶宛語'),(2112,'lt','ms','Lithuanian'),(2113,'mk','en','Macedonian'),(2114,'mk','es','Macedonio'),(2115,'mk','de','Mazedonisch'),(2116,'mk','fr','Macédonien'),(2117,'mk','ar','المقدونية'),(2118,'mk','bs','Macedonian'),(2119,'mk','bg','Македонски'),(2120,'mk','ca','Macedonian'),(2121,'mk','cs','Makedonský'),(2122,'mk','sk','Macedónština'),(2123,'mk','cy','Macedonian'),(2124,'mk','da','Macedonian'),(2125,'mk','el','Μακεδονικο'),(2126,'mk','eo','Macedonian'),(2127,'mk','et','Macedonian'),(2128,'mk','eu','Macedonian'),(2129,'mk','fa','Macedonian'),(2130,'mk','fi','makedonia'),(2131,'mk','ga','Macedonian'),(2132,'mk','he','מקדונית'),(2133,'mk','hi','Macedonian'),(2134,'mk','hr','Makedonski'),(2135,'mk','hu','macedón'),(2136,'mk','hy','Macedonian'),(2137,'mk','id','Macedonian'),(2138,'mk','is','Macedonian'),(2139,'mk','it','Macedone'),(2140,'mk','ja','マケドニア語'),(2141,'mk','ko','마케도니아어'),(2142,'mk','ku','Macedonian'),(2143,'mk','la','Macedonian'),(2144,'mk','lv','Macedonian'),(2145,'mk','lt','Macedonian'),(2146,'mk','mk','македонски'),(2147,'mk','mt','Macedonian'),(2148,'mk','mo','Macedonian'),(2149,'mk','mn','Macedonian'),(2150,'mk','ne','Macedonian'),(2151,'mk','nl','Macedonisch'),(2152,'mk','nb','Makedonsk'),(2153,'mk','pa','Macedonian'),(2154,'mk','pl','macedoński'),(2155,'mk','pt-pt','Macedônio'),(2156,'mk','pt-br','Macedônio'),(2157,'mk','qu','Macedonian'),(2158,'mk','ro','Macedoniană'),(2159,'mk','ru','Македонский'),(2160,'mk','sl','Makedonski'),(2161,'mk','so','Macedonian'),(2162,'mk','sq','Macedonian'),(2163,'mk','sr','македонски'),(2164,'mk','sv','Makedonska'),(2165,'mk','ta','Macedonian'),(2166,'mk','th','มาซิโดเนีย'),(2167,'mk','tr','Makedonyaca'),(2168,'mk','uk','Macedonian'),(2169,'mk','ur','Macedonian'),(2170,'mk','uz','Macedonian'),(2171,'mk','vi','Macedonian'),(2172,'mk','yi','Macedonian'),(2173,'mk','zh-hans','马其顿语'),(2174,'mk','zu','Macedonian'),(2175,'mk','zh-hant','馬其頓語'),(2176,'mk','ms','Macedonian'),(2177,'mt','en','Maltese'),(2178,'mt','es','Maltés'),(2179,'mt','de','Maltesisch'),(2180,'mt','fr','Maltais'),(2181,'mt','ar','المالطية'),(2182,'mt','bs','Maltese'),(2183,'mt','bg','Малтийски'),(2184,'mt','ca','Maltese'),(2185,'mt','cs','Maltština'),(2186,'mt','sk','Maltézština'),(2187,'mt','cy','Maltese'),(2188,'mt','da','Maltese'),(2189,'mt','el','Μαλτεζικα'),(2190,'mt','eo','Maltese'),(2191,'mt','et','Maltese'),(2192,'mt','eu','Maltese'),(2193,'mt','fa','Maltese'),(2194,'mt','fi','malta'),(2195,'mt','ga','Maltese'),(2196,'mt','he','מלטזית'),(2197,'mt','hi','Maltese'),(2198,'mt','hr','Malteški'),(2199,'mt','hu','máltai'),(2200,'mt','hy','Maltese'),(2201,'mt','id','Maltese'),(2202,'mt','is','Maltese'),(2203,'mt','it','Maltese'),(2204,'mt','ja','マルタ語'),(2205,'mt','ko','몰타어'),(2206,'mt','ku','Maltese'),(2207,'mt','la','Maltese'),(2208,'mt','lv','Maltese'),(2209,'mt','lt','Maltese'),(2210,'mt','mk','Maltese'),(2211,'mt','mt','Malti'),(2212,'mt','mo','Maltese'),(2213,'mt','mn','Maltese'),(2214,'mt','ne','Maltese'),(2215,'mt','nl','Maltees'),(2216,'mt','nb','Maltese'),(2217,'mt','pa','Maltese'),(2218,'mt','pl','maltański'),(2219,'mt','pt-pt','Maltês'),(2220,'mt','pt-br','Maltês'),(2221,'mt','qu','Maltese'),(2222,'mt','ro','Malteză'),(2223,'mt','ru','Мальтийский'),(2224,'mt','sl','Malteški'),(2225,'mt','so','Maltese'),(2226,'mt','sq','Maltese'),(2227,'mt','sr','малтешки'),(2228,'mt','sv','Maltesiska'),(2229,'mt','ta','Maltese'),(2230,'mt','th','มอลทีส'),(2231,'mt','tr','Malta dili'),(2232,'mt','uk','Maltese'),(2233,'mt','ur','Maltese'),(2234,'mt','uz','Maltese'),(2235,'mt','vi','Maltese'),(2236,'mt','yi','Maltese'),(2237,'mt','zh-hans','马耳他语'),(2238,'mt','zu','Maltese'),(2239,'mt','zh-hant','馬爾他語'),(2240,'mt','ms','Maltese'),(2241,'mo','en','Moldavian'),(2242,'mo','es','Moldavo'),(2243,'mo','de','Moldavisch'),(2244,'mo','fr','Moldave'),(2245,'mo','ar','المولدوفية'),(2246,'mo','bs','Moldavian'),(2247,'mo','bg','Молдовски'),(2248,'mo','ca','Moldavian'),(2249,'mo','cs','Moldavský'),(2250,'mo','sk','Moldavčina'),(2251,'mo','cy','Moldavian'),(2252,'mo','da','Moldavian'),(2253,'mo','el','Μολδαβικα'),(2254,'mo','eo','Moldavian'),(2255,'mo','et','Moldavian'),(2256,'mo','eu','Moldavian'),(2257,'mo','fa','Moldavian'),(2258,'mo','fi','moldavia'),(2259,'mo','ga','Moldavian'),(2260,'mo','he','מולדובה'),(2261,'mo','hi','Moldavian'),(2262,'mo','hr','Moldavski'),(2263,'mo','hu','moldovai'),(2264,'mo','hy','Moldavian'),(2265,'mo','id','Moldavian'),(2266,'mo','is','Moldavian'),(2267,'mo','it','Moldavo'),(2268,'mo','ja','モルダビア語'),(2269,'mo','ko','몰다비아어'),(2270,'mo','ku','Moldavian'),(2271,'mo','la','Moldavian'),(2272,'mo','lv','Moldavian'),(2273,'mo','lt','Moldavian'),(2274,'mo','mk','Moldavian'),(2275,'mo','mt','Moldavian'),(2276,'mo','mo','Moldavian'),(2277,'mo','mn','Moldavian'),(2278,'mo','ne','Moldavian'),(2279,'mo','nl','Moldavisch'),(2280,'mo','nb','Moldovisk'),(2281,'mo','pa','Moldavian'),(2282,'mo','pl','mołdawski'),(2283,'mo','pt-pt','Moldavo'),(2284,'mo','pt-br','Moldavo'),(2285,'mo','qu','Moldavian'),(2286,'mo','ro','Moldoveană'),(2287,'mo','ru','Молдавский'),(2288,'mo','sl','Moldavsko'),(2289,'mo','so','Moldavian'),(2290,'mo','sq','Moldavian'),(2291,'mo','sr','молдавски'),(2292,'mo','sv','Moldaviska'),(2293,'mo','ta','Moldavian'),(2294,'mo','th','มอลดาเวียน'),(2295,'mo','tr','Moldovyaca'),(2296,'mo','uk','Moldavian'),(2297,'mo','ur','Moldavian'),(2298,'mo','uz','Moldavian'),(2299,'mo','vi','Moldavian'),(2300,'mo','yi','Moldavian'),(2301,'mo','zh-hans','摩尔达维亚语'),(2302,'mo','zu','Moldavian'),(2303,'mo','zh-hant','摩爾達維亞語'),(2304,'mo','ms','Moldavian'),(2305,'mn','en','Mongolian'),(2306,'mn','es','Mongol'),(2307,'mn','de','Mongolisch'),(2308,'mn','fr','Mongol'),(2309,'mn','ar','المنغولية'),(2310,'mn','bs','Mongolian'),(2311,'mn','bg','Монголски'),(2312,'mn','ca','Mongolian'),(2313,'mn','cs','Mongolský'),(2314,'mn','sk','Mongolština'),(2315,'mn','cy','Mongolian'),(2316,'mn','da','Mongolian'),(2317,'mn','el','Μογγολικα'),(2318,'mn','eo','Mongolian'),(2319,'mn','et','Mongolian'),(2320,'mn','eu','Mongolian'),(2321,'mn','fa','Mongolian'),(2322,'mn','fi','mongoli'),(2323,'mn','ga','Mongolian'),(2324,'mn','he','מונגולית'),(2325,'mn','hi','Mongolian'),(2326,'mn','hr','Mongolski'),(2327,'mn','hu','mongol'),(2328,'mn','hy','Mongolian'),(2329,'mn','id','Mongolian'),(2330,'mn','is','Mongolian'),(2331,'mn','it','Mongolo'),(2332,'mn','ja','モンゴル語'),(2333,'mn','ko','몽골어'),(2334,'mn','ku','Mongolian'),(2335,'mn','la','Mongolian'),(2336,'mn','lv','Mongolian'),(2337,'mn','lt','Mongolian'),(2338,'mn','mk','Mongolian'),(2339,'mn','mt','Mongolian'),(2340,'mn','mo','Mongolian'),(2341,'mn','mn','Mongolian'),(2342,'mn','ne','Mongolian'),(2343,'mn','nl','Mongools'),(2344,'mn','nb','Mongolsk'),(2345,'mn','pa','Mongolian'),(2346,'mn','pl','mongolski'),(2347,'mn','pt-pt','Mongolian'),(2348,'mn','pt-br','Mongolian'),(2349,'mn','qu','Mongolian'),(2350,'mn','ro','Mongoleză'),(2351,'mn','ru','Монгольский'),(2352,'mn','sl','Mongolski'),(2353,'mn','so','Mongolian'),(2354,'mn','sq','Mongolian'),(2355,'mn','sr','монголски'),(2356,'mn','sv','Mongoliska'),(2357,'mn','ta','Mongolian'),(2358,'mn','th','มองโกเลีย'),(2359,'mn','tr','Mongolca'),(2360,'mn','uk','Mongolian'),(2361,'mn','ur','Mongolian'),(2362,'mn','uz','Mongolian'),(2363,'mn','vi','Mongolian'),(2364,'mn','yi','Mongolian'),(2365,'mn','zh-hans','蒙古语'),(2366,'mn','zu','Mongolian'),(2367,'mn','zh-hant','蒙古語'),(2368,'mn','ms','Mongolian'),(2369,'ne','en','Nepali'),(2370,'ne','es','Nepalí'),(2371,'ne','de','Nepali'),(2372,'ne','fr','Népalais'),(2373,'ne','ar','النيبالية'),(2374,'ne','bs','Nepali'),(2375,'ne','bg','Непалски'),(2376,'ne','ca','Nepali'),(2377,'ne','cs','Nepálský'),(2378,'ne','sk','Nepálčina'),(2379,'ne','cy','Nepali'),(2380,'ne','da','Nepali'),(2381,'ne','el','Νεπαλι'),(2382,'ne','eo','Nepali'),(2383,'ne','et','Nepali'),(2384,'ne','eu','Nepali'),(2385,'ne','fa','Nepali'),(2386,'ne','fi','nepali'),(2387,'ne','ga','Nepali'),(2388,'ne','he','נפאלית'),(2389,'ne','hi','Nepali'),(2390,'ne','hr','Nepalski'),(2391,'ne','hu','nepáli'),(2392,'ne','hy','Nepali'),(2393,'ne','id','Nepali'),(2394,'ne','is','Nepali'),(2395,'ne','it','Nepalese'),(2396,'ne','ja','ネパール語'),(2397,'ne','ko','네팔어'),(2398,'ne','ku','Nepali'),(2399,'ne','la','Nepali'),(2400,'ne','lv','Nepali'),(2401,'ne','lt','Nepali'),(2402,'ne','mk','Nepali'),(2403,'ne','mt','Nepali'),(2404,'ne','mo','Nepali'),(2405,'ne','mn','Nepali'),(2406,'ne','ne','Nepali'),(2407,'ne','nl','Nepalees'),(2408,'ne','nb','Nepali'),(2409,'ne','pa','Nepali'),(2410,'ne','pl','nepalski'),(2411,'ne','pt-pt','Nepali'),(2412,'ne','pt-br','Nepali'),(2413,'ne','qu','Nepali'),(2414,'ne','ro','Nepaleză'),(2415,'ne','ru','Непальский'),(2416,'ne','sl','Nepalščina'),(2417,'ne','so','Nepali'),(2418,'ne','sq','Nepali'),(2419,'ne','sr','непалски'),(2420,'ne','sv','Nepalesiska'),(2421,'ne','ta','Nepali'),(2422,'ne','th','เนปาล'),(2423,'ne','tr','Nepal dili'),(2424,'ne','uk','Nepali'),(2425,'ne','ur','Nepali'),(2426,'ne','uz','Nepali'),(2427,'ne','vi','Nepali'),(2428,'ne','yi','Nepali'),(2429,'ne','zh-hans','尼泊尔语'),(2430,'ne','zu','Nepali'),(2431,'ne','zh-hant','尼泊爾語'),(2432,'ne','ms','Nepali'),(2433,'nl','en','Dutch'),(2434,'nl','es','Holandés'),(2435,'nl','de','Niederländisch'),(2436,'nl','fr','Néerlandais'),(2437,'nl','ar','الهولندية'),(2438,'nl','bs','Dutch'),(2439,'nl','bg','Холандски'),(2440,'nl','ca','Dutch'),(2441,'nl','cs','Holandský'),(2442,'nl','sk','Holandčina'),(2443,'nl','cy','Dutch'),(2444,'nl','da','Dutch'),(2445,'nl','el','Ολλανδικα'),(2446,'nl','eo','Dutch'),(2447,'nl','et','Dutch'),(2448,'nl','eu','Dutch'),(2449,'nl','fa','Dutch'),(2450,'nl','fi','hollanti'),(2451,'nl','ga','Dutch'),(2452,'nl','he','הולנדית'),(2453,'nl','hi','Dutch'),(2454,'nl','hr','Holandski'),(2455,'nl','hu','holland'),(2456,'nl','hy','Dutch'),(2457,'nl','id','Dutch'),(2458,'nl','is','Dutch'),(2459,'nl','it','Olandese'),(2460,'nl','ja','オランダ語'),(2461,'nl','ko','화란어'),(2462,'nl','ku','Dutch'),(2463,'nl','la','Dutch'),(2464,'nl','lv','Dutch'),(2465,'nl','lt','Dutch'),(2466,'nl','mk','Dutch'),(2467,'nl','mt','Dutch'),(2468,'nl','mo','Dutch'),(2469,'nl','mn','Dutch'),(2470,'nl','ne','Dutch'),(2471,'nl','nl','Nederlands'),(2472,'nl','nb','Nederlandsk'),(2473,'nl','pa','Dutch'),(2474,'nl','pl','holenderski'),(2475,'nl','pt-pt','Holandês'),(2476,'nl','pt-br','Holandês'),(2477,'nl','qu','Dutch'),(2478,'nl','ro','Olaneză'),(2479,'nl','ru','Голландский'),(2480,'nl','sl','Nizozemščina'),(2481,'nl','so','Dutch'),(2482,'nl','sq','Dutch'),(2483,'nl','sr','холандски'),(2484,'nl','sv','Nederländska'),(2485,'nl','ta','Dutch'),(2486,'nl','th','ดัตช์'),(2487,'nl','tr','Hollandaca'),(2488,'nl','uk','Dutch'),(2489,'nl','ur','Dutch'),(2490,'nl','uz','Dutch'),(2491,'nl','vi','Dutch'),(2492,'nl','yi','Dutch'),(2493,'nl','zh-hans','荷兰语'),(2494,'nl','zu','Dutch'),(2495,'nl','zh-hant','荷蘭語'),(2496,'nl','ms','Dutch'),(2497,'nb','en','Norwegian Bokmål'),(2498,'nb','es','Bokmål'),(2499,'nb','de','Norwegisch (Buchsprache)'),(2500,'nb','fr','Norvégien Bokmål'),(2501,'nb','ar','البوكمالية النرويجية'),(2502,'nb','bs','Norwegian Bokmål'),(2503,'nb','bg','Норвежки книжовен'),(2504,'nb','ca','Norwegian Bokmål'),(2505,'nb','cs','Norwegian bokmål'),(2506,'nb','sk','Nórsky jazyk Bokmål'),(2507,'nb','cy','Norwegian Bokmål'),(2508,'nb','da','Norwegian Bokmål'),(2509,'nb','el','Νορβηγικα'),(2510,'nb','eo','Norwegian Bokmål'),(2511,'nb','et','Norwegian Bokmål'),(2512,'nb','eu','Norwegian Bokmål'),(2513,'nb','fa','Norwegian Bokmål'),(2514,'nb','fi','kirjanorja'),(2515,'nb','ga','Norwegian Bokmål'),(2516,'nb','he','נורווגית'),(2517,'nb','hi','Norwegian Bokmål'),(2518,'nb','hr','Književni norveški'),(2519,'nb','hu','norvég bokmål'),(2520,'nb','hy','Norwegian Bokmål'),(2521,'nb','id','Norwegian Bokmål'),(2522,'nb','is','Norwegian Bokmål'),(2523,'nb','it','Norvegese Bokmål'),(2524,'nb','ja','ノルウェー・ブークモール'),(2525,'nb','ko','노르웨이 보크말어'),(2526,'nb','ku','Norwegian Bokmål'),(2527,'nb','la','Norwegian Bokmål'),(2528,'nb','lv','Norwegian Bokmål'),(2529,'nb','lt','Norwegian Bokmål'),(2530,'nb','mk','Norwegian Bokmål'),(2531,'nb','mt','Norwegian Bokmål'),(2532,'nb','mo','Norwegian Bokmål'),(2533,'nb','mn','Norwegian Bokmål'),(2534,'nb','ne','Norwegian Bokmål'),(2535,'nb','nl','Noors Bokmål'),(2536,'nb','nb','Norsk bokmål'),(2537,'nb','pa','Norwegian Bokmål'),(2538,'nb','pl','norweski bokmål'),(2539,'nb','pt-pt','Norueguês'),(2540,'nb','pt-br','Norueguês'),(2541,'nb','qu','Norwegian Bokmål'),(2542,'nb','ro','Bokmål (norvegiană)'),(2543,'nb','ru','Норвежский букмол'),(2544,'nb','sl','Knjižna norveščina'),(2545,'nb','so','Norwegian Bokmål'),(2546,'nb','sq','Norwegian Bokmål'),(2547,'nb','sr','Норвешки бокмал'),(2548,'nb','sv','Norskt Bokmål'),(2549,'nb','ta','Norwegian Bokmål'),(2550,'nb','th','นอร์วิเจียนบอกมาล'),(2551,'nb','tr','Bokmal Norveç dili'),(2552,'nb','uk','Norwegian Bokmål'),(2553,'nb','ur','Norwegian Bokmål'),(2554,'nb','uz','Norwegian Bokmål'),(2555,'nb','vi','Norwegian Bokmål'),(2556,'nb','yi','Norwegian Bokmål'),(2557,'nb','zh-hans','挪威布克莫尔语'),(2558,'nb','zu','Norwegian Bokmål'),(2559,'nb','zh-hant','挪威布克莫爾語'),(2560,'nb','ms','Norwegian Bokmål'),(2561,'pa','en','Punjabi'),(2562,'pa','es','Panyabí'),(2563,'pa','de','Pandschabi'),(2564,'pa','fr','Panjabi'),(2565,'pa','ar','البنجابية'),(2566,'pa','bs','Punjabi'),(2567,'pa','bg','Панджабски'),(2568,'pa','ca','Punjabi'),(2569,'pa','cs','Punjabi'),(2570,'pa','sk','Pandžábčina'),(2571,'pa','cy','Punjabi'),(2572,'pa','da','Punjabi'),(2573,'pa','el','Panjabi'),(2574,'pa','eo','Punjabi'),(2575,'pa','et','Punjabi'),(2576,'pa','eu','Punjabi'),(2577,'pa','fa','Punjabi'),(2578,'pa','fi','pandzabi'),(2579,'pa','ga','Punjabi'),(2580,'pa','he','פנג\'אבית'),(2581,'pa','hi','Punjabi'),(2582,'pa','hr','Pendžabljanin'),(2583,'pa','hu','pandzsábi'),(2584,'pa','hy','Punjabi'),(2585,'pa','id','Punjabi'),(2586,'pa','is','Punjabi'),(2587,'pa','it','Panjabi'),(2588,'pa','ja','パンジャーブ語'),(2589,'pa','ko','펀자브어'),(2590,'pa','ku','Punjabi'),(2591,'pa','la','Punjabi'),(2592,'pa','lv','Punjabi'),(2593,'pa','lt','Punjabi'),(2594,'pa','mk','Punjabi'),(2595,'pa','mt','Punjabi'),(2596,'pa','mo','Punjabi'),(2597,'pa','mn','Punjabi'),(2598,'pa','ne','Punjabi'),(2599,'pa','nl','Punjabi'),(2600,'pa','nb','Punjabi'),(2601,'pa','pa','Punjabi'),(2602,'pa','pl','pendżabi'),(2603,'pa','pt-pt','Panjabi'),(2604,'pa','pt-br','Panjabi'),(2605,'pa','qu','Punjabi'),(2606,'pa','ro','Punjabi'),(2607,'pa','ru','Панджаби'),(2608,'pa','sl','Pandžabščina'),(2609,'pa','so','Punjabi'),(2610,'pa','sq','Punjabi'),(2611,'pa','sr','панџаби'),(2612,'pa','sv','Punjabi'),(2613,'pa','ta','Punjabi'),(2614,'pa','th','ปัญจาบ'),(2615,'pa','tr','Pencapça'),(2616,'pa','uk','Punjabi'),(2617,'pa','ur','Punjabi'),(2618,'pa','uz','Punjabi'),(2619,'pa','vi','Punjabi'),(2620,'pa','yi','Punjabi'),(2621,'pa','zh-hans','旁遮普语'),(2622,'pa','zu','Punjabi'),(2623,'pa','zh-hant','旁遮普語'),(2624,'pa','ms','Punjabi'),(2625,'pl','en','Polish'),(2626,'pl','es','Polaco'),(2627,'pl','de','Polnisch'),(2628,'pl','fr','Polonais'),(2629,'pl','ar','البولندية'),(2630,'pl','bs','Polish'),(2631,'pl','bg','Полски'),(2632,'pl','ca','Polish'),(2633,'pl','cs','Polský'),(2634,'pl','sk','Polština'),(2635,'pl','cy','Polish'),(2636,'pl','da','Polish'),(2637,'pl','el','Πολωνικα'),(2638,'pl','eo','Polish'),(2639,'pl','et','Polish'),(2640,'pl','eu','Polish'),(2641,'pl','fa','Polish'),(2642,'pl','fi','puola'),(2643,'pl','ga','Polish'),(2644,'pl','he','פולנית'),(2645,'pl','hi','Polish'),(2646,'pl','hr','Poljski'),(2647,'pl','hu','lengyel'),(2648,'pl','hy','Polish'),(2649,'pl','id','Polish'),(2650,'pl','is','Polish'),(2651,'pl','it','Polacco'),(2652,'pl','ja','ポーランド語'),(2653,'pl','ko','폴란드어'),(2654,'pl','ku','Polish'),(2655,'pl','la','Polish'),(2656,'pl','lv','Polish'),(2657,'pl','lt','Polish'),(2658,'pl','mk','Polish'),(2659,'pl','mt','Polish'),(2660,'pl','mo','Polish'),(2661,'pl','mn','Polish'),(2662,'pl','ne','Polish'),(2663,'pl','nl','Pools'),(2664,'pl','nb','Polsk'),(2665,'pl','pa','Polish'),(2666,'pl','pl','polski'),(2667,'pl','pt-pt','Polonês'),(2668,'pl','pt-br','Polonês'),(2669,'pl','qu','Polish'),(2670,'pl','ro','Poloneză'),(2671,'pl','ru','Польский'),(2672,'pl','sl','Poljski'),(2673,'pl','so','Polish'),(2674,'pl','sq','Polish'),(2675,'pl','sr','пољски'),(2676,'pl','sv','Polska'),(2677,'pl','ta','Polish'),(2678,'pl','th','โปแลนด์'),(2679,'pl','tr','Polonyaca'),(2680,'pl','uk','Polish'),(2681,'pl','ur','Polish'),(2682,'pl','uz','Polish'),(2683,'pl','vi','Polish'),(2684,'pl','yi','Polish'),(2685,'pl','zh-hans','波兰语'),(2686,'pl','zu','Polish'),(2687,'pl','zh-hant','波蘭語'),(2688,'pl','ms','Polish'),(2689,'pt-pt','en','Portuguese (Portugal)'),(2690,'pt-pt','es','Portugués, Portugal'),(2691,'pt-pt','de','Portugiesisch, Portugal'),(2692,'pt-pt','fr','Portugais - du Portugal'),(2693,'pt-pt','ar','البرتغالية ، البرتغال'),(2694,'pt-pt','bs','Portuguese, Portugal'),(2695,'pt-pt','bg','Португалски (Португалия)'),(2696,'pt-pt','ca','Portuguese, Portugal'),(2697,'pt-pt','cs','Portugalština ( Portugalsko)'),(2698,'pt-pt','sk','Portugalština'),(2699,'pt-pt','cy','Portuguese, Portugal'),(2700,'pt-pt','da','Portuguese, Portugal'),(2701,'pt-pt','el','Πορτογαλικα'),(2702,'pt-pt','eo','Portuguese, Portugal'),(2703,'pt-pt','et','Portuguese, Portugal'),(2704,'pt-pt','eu','Portuguese, Portugal'),(2705,'pt-pt','fa','Portuguese, Portugal'),(2706,'pt-pt','fi','portugali'),(2707,'pt-pt','ga','Portuguese, Portugal'),(2708,'pt-pt','he','פורטוגזית'),(2709,'pt-pt','hi','Portuguese, Portugal'),(2710,'pt-pt','hr','Portugalski (Portugal)'),(2711,'pt-pt','hu','portugál'),(2712,'pt-pt','hy','Portuguese, Portugal'),(2713,'pt-pt','id','Portuguese, Portugal'),(2714,'pt-pt','is','Portuguese, Portugal'),(2715,'pt-pt','it','Portoghese, Portogallo'),(2716,'pt-pt','ja','ポルトガル語'),(2717,'pt-pt','ko','포르투갈 포르투갈어'),(2718,'pt-pt','ku','Portuguese, Portugal'),(2719,'pt-pt','la','Portuguese, Portugal'),(2720,'pt-pt','lv','Portuguese, Portugal'),(2721,'pt-pt','lt','Portuguese, Portugal'),(2722,'pt-pt','mk','Portuguese, Portugal'),(2723,'pt-pt','mt','Portuguese, Portugal'),(2724,'pt-pt','mo','Portuguese, Portugal'),(2725,'pt-pt','mn','Portuguese, Portugal'),(2726,'pt-pt','ne','Portuguese, Portugal'),(2727,'pt-pt','nl','Portugees, Portugal'),(2728,'pt-pt','nb','Portugisisk (Portugal)'),(2729,'pt-pt','pa','Portuguese, Portugal'),(2730,'pt-pt','pl','portugalski, Portugalia'),(2731,'pt-pt','pt-pt','Português'),(2732,'pt-pt','pt-br','Português'),(2733,'pt-pt','qu','Portuguese, Portugal'),(2734,'pt-pt','ro','Portugheză (Portugalia)'),(2735,'pt-pt','ru','Португальский, Португалия'),(2736,'pt-pt','sl','Portugalščina ( Portugalska )'),(2737,'pt-pt','so','Portuguese, Portugal'),(2738,'pt-pt','sq','Portuguese, Portugal'),(2739,'pt-pt','sr','Португалски (Португалија)'),(2740,'pt-pt','sv','Portugisiska, Portugal'),(2741,'pt-pt','ta','Portuguese, Portugal'),(2742,'pt-pt','th','โปรตุเกส'),(2743,'pt-pt','tr','Portekizce, Portekiz'),(2744,'pt-pt','uk','Portuguese, Portugal'),(2745,'pt-pt','ur','Portuguese, Portugal'),(2746,'pt-pt','uz','Portuguese, Portugal'),(2747,'pt-pt','vi','Portuguese, Portugal'),(2748,'pt-pt','yi','Portuguese, Portugal'),(2749,'pt-pt','zh-hans','葡萄牙语(葡萄牙)'),(2750,'pt-pt','zu','Portuguese, Portugal'),(2751,'pt-pt','zh-hant','葡萄牙語(葡萄牙)'),(2752,'pt-pt','ms','Portuguese, Portugal'),(2753,'pt-br','en','Portuguese (Brazil)'),(2754,'pt-br','es','Portugués, Brasil'),(2755,'pt-br','de','Portugiesisch, Brasilien'),(2756,'pt-br','fr','Portugais - du Brésil'),(2757,'pt-br','ar','البرتغالية ،البرازيل'),(2758,'pt-br','bs','Portuguese, Brazil'),(2759,'pt-br','bg','Португалски (Бразилия)'),(2760,'pt-br','ca','Portuguese, Brazil'),(2761,'pt-br','cs','Portugalština ( Brazílie)'),(2762,'pt-br','sk','Brazílska Portugalština'),(2763,'pt-br','cy','Portuguese, Brazil'),(2764,'pt-br','da','Portuguese, Brazil'),(2765,'pt-br','el','Πορτογαλικα'),(2766,'pt-br','eo','Portuguese, Brazil'),(2767,'pt-br','et','Portuguese, Brazil'),(2768,'pt-br','eu','Portuguese, Brazil'),(2769,'pt-br','fa','Portuguese, Brazil'),(2770,'pt-br','fi','Brasilian portugali'),(2771,'pt-br','ga','Portuguese, Brazil'),(2772,'pt-br','he','פורטוגזית - ברזיל'),(2773,'pt-br','hi','Portuguese, Brazil'),(2774,'pt-br','hr','Portugalski (Brazil)'),(2775,'pt-br','hu','brazil'),(2776,'pt-br','hy','Portuguese, Brazil'),(2777,'pt-br','id','Portuguese, Brazil'),(2778,'pt-br','is','Portuguese, Brazil'),(2779,'pt-br','it','Portoghese, Brasile'),(2780,'pt-br','ja','ポルトガル語(ブラジル)'),(2781,'pt-br','ko','브라질 포르투갈어'),(2782,'pt-br','ku','Portuguese, Brazil'),(2783,'pt-br','la','Portuguese, Brazil'),(2784,'pt-br','lv','Portuguese, Brazil'),(2785,'pt-br','lt','Portuguese, Brazil'),(2786,'pt-br','mk','Portuguese, Brazil'),(2787,'pt-br','mt','Portuguese, Brazil'),(2788,'pt-br','mo','Portuguese, Brazil'),(2789,'pt-br','mn','Portuguese, Brazil'),(2790,'pt-br','ne','Portuguese, Brazil'),(2791,'pt-br','nl','Portugees, Brazilië'),(2792,'pt-br','nb','Portugisisk (Brasil)'),(2793,'pt-br','pa','Portuguese, Brazil'),(2794,'pt-br','pl','portugalski, Brazylia'),(2795,'pt-br','pt-pt','Português'),(2796,'pt-br','pt-br','Português'),(2797,'pt-br','qu','Portuguese, Brazil'),(2798,'pt-br','ro','Portugheză (Brazilia)'),(2799,'pt-br','ru','Португальский, Бразилия'),(2800,'pt-br','sl','Portugalščina ( Brazilija )'),(2801,'pt-br','so','Portuguese, Brazil'),(2802,'pt-br','sq','Portuguese, Brazil'),(2803,'pt-br','sr','Португалски (Бразил)'),(2804,'pt-br','sv','Portugisiska, Brasilien'),(2805,'pt-br','ta','Portuguese, Brazil'),(2806,'pt-br','th','โปรตุเกสบราซิล'),(2807,'pt-br','tr','Portekizce, Brezilya'),(2808,'pt-br','uk','Portuguese, Brazil'),(2809,'pt-br','ur','Portuguese, Brazil'),(2810,'pt-br','uz','Portuguese, Brazil'),(2811,'pt-br','vi','Portuguese, Brazil'),(2812,'pt-br','yi','Portuguese, Brazil'),(2813,'pt-br','zh-hans','葡萄牙语(巴西)'),(2814,'pt-br','zu','Portuguese, Brazil'),(2815,'pt-br','zh-hant','葡萄牙語(巴西)'),(2816,'pt-br','ms','Portuguese, Brazil'),(2817,'qu','en','Quechua'),(2818,'qu','es','Quechua'),(2819,'qu','de','Quechua'),(2820,'qu','fr','Quechua'),(2821,'qu','ar','الكويتشوا'),(2822,'qu','bs','Quechua'),(2823,'qu','bg','Кечуа'),(2824,'qu','ca','Quechua'),(2825,'qu','cs','Quechua'),(2826,'qu','sk','Jazyk Quechua'),(2827,'qu','cy','Quechua'),(2828,'qu','da','Quechua'),(2829,'qu','el','Κετσουα'),(2830,'qu','eo','Quechua'),(2831,'qu','et','Quechua'),(2832,'qu','eu','Quechua'),(2833,'qu','fa','Quechua'),(2834,'qu','fi','ketsua'),(2835,'qu','ga','Quechua'),(2836,'qu','he','קצ\'ואה'),(2837,'qu','hi','Quechua'),(2838,'qu','hr','Quechua'),(2839,'qu','hu','quechua'),(2840,'qu','hy','Quechua'),(2841,'qu','id','Quechua'),(2842,'qu','is','Quechua'),(2843,'qu','it','Quechua'),(2844,'qu','ja','ケチュア語'),(2845,'qu','ko','케추아어'),(2846,'qu','ku','Quechua'),(2847,'qu','la','Quechua'),(2848,'qu','lv','Quechua'),(2849,'qu','lt','Quechua'),(2850,'qu','mk','Quechua'),(2851,'qu','mt','Quechua'),(2852,'qu','mo','Quechua'),(2853,'qu','mn','Quechua'),(2854,'qu','ne','Quechua'),(2855,'qu','nl','Quechua'),(2856,'qu','nb','Quechua'),(2857,'qu','pa','Quechua'),(2858,'qu','pl','keczua'),(2859,'qu','pt-pt','Quechua'),(2860,'qu','pt-br','Quechua'),(2861,'qu','qu','Quechua'),(2862,'qu','ro','Quechuană'),(2863,'qu','ru','Кечуа'),(2864,'qu','sl','Quechua'),(2865,'qu','so','Quechua'),(2866,'qu','sq','Quechua'),(2867,'qu','sr','Кечуа'),(2868,'qu','sv','Quechua'),(2869,'qu','ta','Quechua'),(2870,'qu','th','คิวชัว'),(2871,'qu','tr','Quechua dili'),(2872,'qu','uk','Quechua'),(2873,'qu','ur','Quechua'),(2874,'qu','uz','Quechua'),(2875,'qu','vi','Quechua'),(2876,'qu','yi','Quechua'),(2877,'qu','zh-hans','盖丘亚语'),(2878,'qu','zu','Quechua'),(2879,'qu','zh-hant','蓋丘亞語'),(2880,'qu','ms','Quechua'),(2881,'ro','en','Romanian'),(2882,'ro','es','Rumano'),(2883,'ro','de','Rumänisch'),(2884,'ro','fr','Roumain'),(2885,'ro','ar','الرومانية'),(2886,'ro','bs','Romanian'),(2887,'ro','bg','Румънски'),(2888,'ro','ca','Romanian'),(2889,'ro','cs','Rumunština'),(2890,'ro','sk','Rumunčina'),(2891,'ro','cy','Romanian'),(2892,'ro','da','Romanian'),(2893,'ro','el','Ρουμανικα'),(2894,'ro','eo','Romanian'),(2895,'ro','et','Romanian'),(2896,'ro','eu','Romanian'),(2897,'ro','fa','Romanian'),(2898,'ro','fi','romania'),(2899,'ro','ga','Romanian'),(2900,'ro','he','רומנית'),(2901,'ro','hi','Romanian'),(2902,'ro','hr','Rumunjski'),(2903,'ro','hu','román'),(2904,'ro','hy','Romanian'),(2905,'ro','id','Romanian'),(2906,'ro','is','Romanian'),(2907,'ro','it','Rumeno'),(2908,'ro','ja','ルーマニア語'),(2909,'ro','ko','로마니아어'),(2910,'ro','ku','Romanian'),(2911,'ro','la','Romanian'),(2912,'ro','lv','Romanian'),(2913,'ro','lt','Romanian'),(2914,'ro','mk','Romanian'),(2915,'ro','mt','Romanian'),(2916,'ro','mo','Romanian'),(2917,'ro','mn','Romanian'),(2918,'ro','ne','Romanian'),(2919,'ro','nl','Roemeens'),(2920,'ro','nb','Rumensk'),(2921,'ro','pa','Romanian'),(2922,'ro','pl','rumuński'),(2923,'ro','pt-pt','Romeno'),(2924,'ro','pt-br','Romeno'),(2925,'ro','qu','Romanian'),(2926,'ro','ro','Română'),(2927,'ro','ru','Румынский'),(2928,'ro','sl','Romunščina'),(2929,'ro','so','Romanian'),(2930,'ro','sq','Romanian'),(2931,'ro','sr','румунски'),(2932,'ro','sv','Rumänska'),(2933,'ro','ta','Romanian'),(2934,'ro','th','โรมาเนีย'),(2935,'ro','tr','Rumence'),(2936,'ro','uk','Romanian'),(2937,'ro','ur','Romanian'),(2938,'ro','uz','Romanian'),(2939,'ro','vi','Romanian'),(2940,'ro','yi','Romanian'),(2941,'ro','zh-hans','罗马尼亚语'),(2942,'ro','zu','Romanian'),(2943,'ro','zh-hant','羅馬尼亞語'),(2944,'ro','ms','Romanian'),(2945,'ru','en','Russian'),(2946,'ru','es','Ruso'),(2947,'ru','de','Russisch'),(2948,'ru','fr','Russe'),(2949,'ru','ar','الروسية'),(2950,'ru','bs','Russian'),(2951,'ru','bg','Руски'),(2952,'ru','ca','Russian'),(2953,'ru','cs','Ruský'),(2954,'ru','sk','Ruština'),(2955,'ru','cy','Russian'),(2956,'ru','da','Russian'),(2957,'ru','el','Ρωσικα'),(2958,'ru','eo','Russian'),(2959,'ru','et','Russian'),(2960,'ru','eu','Russian'),(2961,'ru','fa','Russian'),(2962,'ru','fi','venäjä'),(2963,'ru','ga','Russian'),(2964,'ru','he','רוסית'),(2965,'ru','hi','Russian'),(2966,'ru','hr','Ruski'),(2967,'ru','hu','orosz'),(2968,'ru','hy','Russian'),(2969,'ru','id','Russian'),(2970,'ru','is','Russian'),(2971,'ru','it','Russo'),(2972,'ru','ja','ロシア語'),(2973,'ru','ko','러시아어'),(2974,'ru','ku','Russian'),(2975,'ru','la','Russian'),(2976,'ru','lv','Russian'),(2977,'ru','lt','Russian'),(2978,'ru','mk','Russian'),(2979,'ru','mt','Russian'),(2980,'ru','mo','Russian'),(2981,'ru','mn','Russian'),(2982,'ru','ne','Russian'),(2983,'ru','nl','Russisch'),(2984,'ru','nb','Russisk'),(2985,'ru','pa','Russian'),(2986,'ru','pl','rosyjski'),(2987,'ru','pt-pt','Russo'),(2988,'ru','pt-br','Russo'),(2989,'ru','qu','Russian'),(2990,'ru','ro','Rusă'),(2991,'ru','ru','Русский'),(2992,'ru','sl','Ruščina'),(2993,'ru','so','Russian'),(2994,'ru','sq','Russian'),(2995,'ru','sr','руски'),(2996,'ru','sv','Ryska'),(2997,'ru','ta','Russian'),(2998,'ru','th','รัสเซีย'),(2999,'ru','tr','Rusça'),(3000,'ru','uk','Russian'),(3001,'ru','ur','Russian'),(3002,'ru','uz','Russian'),(3003,'ru','vi','Russian'),(3004,'ru','yi','Russian'),(3005,'ru','zh-hans','俄语'),(3006,'ru','zu','Russian'),(3007,'ru','zh-hant','俄語'),(3008,'ru','ms','Russian'),(3009,'sl','en','Slovenian'),(3010,'sl','es','Esloveno'),(3011,'sl','de','Slowenisch'),(3012,'sl','fr','Slovène'),(3013,'sl','ar','السلوفانية'),(3014,'sl','bs','Slovenian'),(3015,'sl','bg','Словенски'),(3016,'sl','ca','Slovenian'),(3017,'sl','cs','Slovinština'),(3018,'sl','sk','Slovinčina'),(3019,'sl','cy','Slovenian'),(3020,'sl','da','Slovenian'),(3021,'sl','el','Σλοβενικα'),(3022,'sl','eo','Slovenian'),(3023,'sl','et','Slovenian'),(3024,'sl','eu','Slovenian'),(3025,'sl','fa','Slovenian'),(3026,'sl','fi','sloveeni'),(3027,'sl','ga','Slovenian'),(3028,'sl','he','סלובנית'),(3029,'sl','hi','Slovenian'),(3030,'sl','hr','Slovenac'),(3031,'sl','hu','szlovén'),(3032,'sl','hy','Slovenian'),(3033,'sl','id','Slovenian'),(3034,'sl','is','Slovenian'),(3035,'sl','it','Sloveno'),(3036,'sl','ja','スロベニア語'),(3037,'sl','ko','슬로베니아어'),(3038,'sl','ku','Slovenian'),(3039,'sl','la','Slovenian'),(3040,'sl','lv','Slovenian'),(3041,'sl','lt','Slovenian'),(3042,'sl','mk','Slovenian'),(3043,'sl','mt','Slovenian'),(3044,'sl','mo','Slovenian'),(3045,'sl','mn','Slovenian'),(3046,'sl','ne','Slovenian'),(3047,'sl','nl','Sloveens'),(3048,'sl','nb','Slovensk'),(3049,'sl','pa','Slovenian'),(3050,'sl','pl','słoweński'),(3051,'sl','pt-pt','Esloveno'),(3052,'sl','pt-br','Esloveno'),(3053,'sl','qu','Slovenian'),(3054,'sl','ro','Slovenă'),(3055,'sl','ru','Словенский'),(3056,'sl','sl','Slovenščina'),(3057,'sl','so','Slovenian'),(3058,'sl','sq','Slovenian'),(3059,'sl','sr','словеначки'),(3060,'sl','sv','Slovenska'),(3061,'sl','ta','Slovenian'),(3062,'sl','th','สโลวีเนียน'),(3063,'sl','tr','Sloven dili'),(3064,'sl','uk','Slovenian'),(3065,'sl','ur','Slovenian'),(3066,'sl','uz','Slovenian'),(3067,'sl','vi','Slovenian'),(3068,'sl','yi','Slovenian'),(3069,'sl','zh-hans','斯洛文尼亚语'),(3070,'sl','zu','Slovenian'),(3071,'sl','zh-hant','斯洛文尼亞語'),(3072,'sl','ms','Slovenian'),(3073,'so','en','Somali'),(3074,'so','es','Somalí'),(3075,'so','de','Somali'),(3076,'so','fr','Somali'),(3077,'so','ar','الصومالية'),(3078,'so','bs','Somali'),(3079,'so','bg','Сомалийски'),(3080,'so','ca','Somali'),(3081,'so','cs','Somali'),(3082,'so','sk','Somálčina'),(3083,'so','cy','Somali'),(3084,'so','da','Somali'),(3085,'so','el','Somali'),(3086,'so','eo','Somali'),(3087,'so','et','Somali'),(3088,'so','eu','Somali'),(3089,'so','fa','Somali'),(3090,'so','fi','somali'),(3091,'so','ga','Somali'),(3092,'so','he','סומלית'),(3093,'so','hi','Somali'),(3094,'so','hr','Somalijski'),(3095,'so','hu','szomáli'),(3096,'so','hy','Somali'),(3097,'so','id','Somali'),(3098,'so','is','Somali'),(3099,'so','it','Somalo'),(3100,'so','ja','ソマリ語'),(3101,'so','ko','소말리아어'),(3102,'so','ku','Somali'),(3103,'so','la','Somali'),(3104,'so','lv','Somali'),(3105,'so','lt','Somali'),(3106,'so','mk','Somali'),(3107,'so','mt','Somali'),(3108,'so','mo','Somali'),(3109,'so','mn','Somali'),(3110,'so','ne','Somali'),(3111,'so','nl','Somalisch'),(3112,'so','nb','Somali'),(3113,'so','pa','Somali'),(3114,'so','pl','somalijski'),(3115,'so','pt-pt','Somali'),(3116,'so','pt-br','Somali'),(3117,'so','qu','Somali'),(3118,'so','ro','Somaleză'),(3119,'so','ru','Сомалийский'),(3120,'so','sl','Somalski'),(3121,'so','so','Somali'),(3122,'so','sq','Somali'),(3123,'so','sr','Сомалијски'),(3124,'so','sv','Somaliska'),(3125,'so','ta','Somali'),(3126,'so','th','โซมาลี'),(3127,'so','tr','Somalice'),(3128,'so','uk','Somali'),(3129,'so','ur','Somali'),(3130,'so','uz','Somali'),(3131,'so','vi','Somali'),(3132,'so','yi','Somali'),(3133,'so','zh-hans','索马里语'),(3134,'so','zu','Somali'),(3135,'so','zh-hant','索馬里語'),(3136,'so','ms','Somali'),(3137,'sq','en','Albanian'),(3138,'sq','es','Albanés'),(3139,'sq','de','Albanisch'),(3140,'sq','fr','Albanais'),(3141,'sq','ar','الألبانية'),(3142,'sq','bs','Albanian'),(3143,'sq','bg','Албански'),(3144,'sq','ca','Albanian'),(3145,'sq','cs','Albánský'),(3146,'sq','sk','Albánčina'),(3147,'sq','cy','Albanian'),(3148,'sq','da','Albanian'),(3149,'sq','el','Αλβανικα'),(3150,'sq','eo','Albanian'),(3151,'sq','et','Albanian'),(3152,'sq','eu','Albanian'),(3153,'sq','fa','Albanian'),(3154,'sq','fi','albania'),(3155,'sq','ga','Albanian'),(3156,'sq','he','אלבנית'),(3157,'sq','hi','Albanian'),(3158,'sq','hr','Albanac'),(3159,'sq','hu','albán'),(3160,'sq','hy','Albanian'),(3161,'sq','id','Albanian'),(3162,'sq','is','Albanian'),(3163,'sq','it','Albanese'),(3164,'sq','ja','アルバニア語'),(3165,'sq','ko','알바니아어'),(3166,'sq','ku','Albanian'),(3167,'sq','la','Albanian'),(3168,'sq','lv','Albanian'),(3169,'sq','lt','Albanian'),(3170,'sq','mk','Albanian'),(3171,'sq','mt','Albanian'),(3172,'sq','mo','Albanian'),(3173,'sq','mn','Albanian'),(3174,'sq','ne','Albanian'),(3175,'sq','nl','Albaans'),(3176,'sq','nb','Albansk'),(3177,'sq','pa','Albanian'),(3178,'sq','pl','albański'),(3179,'sq','pt-pt','Albanês'),(3180,'sq','pt-br','Albanês'),(3181,'sq','qu','Albanian'),(3182,'sq','ro','Albaneză'),(3183,'sq','ru','Албанский'),(3184,'sq','sl','Albanski'),(3185,'sq','so','Albanian'),(3186,'sq','sq','Albanian'),(3187,'sq','sr','албански'),(3188,'sq','sv','Albanska'),(3189,'sq','ta','Albanian'),(3190,'sq','th','อัลเบเนีย'),(3191,'sq','tr','Arnavutça'),(3192,'sq','uk','Albanian'),(3193,'sq','ur','Albanian'),(3194,'sq','uz','Albanian'),(3195,'sq','vi','Albanian'),(3196,'sq','yi','Albanian'),(3197,'sq','zh-hans','阿尔巴尼亚语'),(3198,'sq','zu','Albanian'),(3199,'sq','zh-hant','阿爾巴尼亞語'),(3200,'sq','ms','Albanian'),(3201,'sr','en','Serbian'),(3202,'sr','es','Serbio'),(3203,'sr','de','Serbisch'),(3204,'sr','fr','Serbe'),(3205,'sr','ar','الصربية'),(3206,'sr','bs','Serbian'),(3207,'sr','bg','Сръбски'),(3208,'sr','ca','Serbian'),(3209,'sr','cs','Srbský'),(3210,'sr','sk','Srbština'),(3211,'sr','cy','Serbian'),(3212,'sr','da','Serbian'),(3213,'sr','el','Σερβικα'),(3214,'sr','eo','Serbian'),(3215,'sr','et','Serbian'),(3216,'sr','eu','Serbian'),(3217,'sr','fa','Serbian'),(3218,'sr','fi','serbia'),(3219,'sr','ga','Serbian'),(3220,'sr','he','סרבית'),(3221,'sr','hi','Serbian'),(3222,'sr','hr','Srpski'),(3223,'sr','hu','szerb'),(3224,'sr','hy','Serbian'),(3225,'sr','id','Serbian'),(3226,'sr','is','Serbian'),(3227,'sr','it','Serbo'),(3228,'sr','ja','セルビア語'),(3229,'sr','ko','세르비아어'),(3230,'sr','ku','Serbian'),(3231,'sr','la','Serbian'),(3232,'sr','lv','Serbian'),(3233,'sr','lt','Serbian'),(3234,'sr','mk','Serbian'),(3235,'sr','mt','Serbian'),(3236,'sr','mo','Serbian'),(3237,'sr','mn','Serbian'),(3238,'sr','ne','Serbian'),(3239,'sr','nl','Servisch'),(3240,'sr','nb','Serbisk'),(3241,'sr','pa','Serbian'),(3242,'sr','pl','serbski'),(3243,'sr','pt-pt','Sérvio'),(3244,'sr','pt-br','Sérvio'),(3245,'sr','qu','Serbian'),(3246,'sr','ro','Sârbă'),(3247,'sr','ru','Сербский'),(3248,'sr','sl','Srbski'),(3249,'sr','so','Serbian'),(3250,'sr','sq','Serbian'),(3251,'sr','sr','српски'),(3252,'sr','sv','Serbiska'),(3253,'sr','ta','Serbian'),(3254,'sr','th','เซอร์เบีย'),(3255,'sr','tr','Sırpça'),(3256,'sr','uk','Serbian'),(3257,'sr','ur','Serbian'),(3258,'sr','uz','Serbian'),(3259,'sr','vi','Serbian'),(3260,'sr','yi','Serbian'),(3261,'sr','zh-hans','赛尔维亚语'),(3262,'sr','zu','Serbian'),(3263,'sr','zh-hant','賽爾維亞語'),(3264,'sr','ms','Serbian'),(3265,'sv','en','Swedish'),(3266,'sv','es','Sueco'),(3267,'sv','de','Schwedisch'),(3268,'sv','fr','Suédois'),(3269,'sv','ar','السويدية'),(3270,'sv','bs','Swedish'),(3271,'sv','bg','Шведски'),(3272,'sv','ca','Swedish'),(3273,'sv','cs','Švédský'),(3274,'sv','sk','Švédština'),(3275,'sv','cy','Swedish'),(3276,'sv','da','Swedish'),(3277,'sv','el','Σουηδικη'),(3278,'sv','eo','Swedish'),(3279,'sv','et','Swedish'),(3280,'sv','eu','Swedish'),(3281,'sv','fa','Swedish'),(3282,'sv','fi','ruotsi'),(3283,'sv','ga','Swedish'),(3284,'sv','he','שוודית'),(3285,'sv','hi','Swedish'),(3286,'sv','hr','švedski'),(3287,'sv','hu','svéd'),(3288,'sv','hy','Swedish'),(3289,'sv','id','Swedish'),(3290,'sv','is','Swedish'),(3291,'sv','it','Svedese'),(3292,'sv','ja','スウェーデン語'),(3293,'sv','ko','스웨덴어'),(3294,'sv','ku','Swedish'),(3295,'sv','la','Swedish'),(3296,'sv','lv','Swedish'),(3297,'sv','lt','Swedish'),(3298,'sv','mk','Swedish'),(3299,'sv','mt','Swedish'),(3300,'sv','mo','Swedish'),(3301,'sv','mn','Swedish'),(3302,'sv','ne','Swedish'),(3303,'sv','nl','Zweeds'),(3304,'sv','nb','Swedish'),(3305,'sv','pa','Swedish'),(3306,'sv','pl','szwedzki'),(3307,'sv','pt-pt','Sueco'),(3308,'sv','pt-br','Sueco'),(3309,'sv','qu','Swedish'),(3310,'sv','ro','Suedeză'),(3311,'sv','ru','Шведский'),(3312,'sv','sl','Švedščina'),(3313,'sv','so','Swedish'),(3314,'sv','sq','Swedish'),(3315,'sv','sr','шведски'),(3316,'sv','sv','Svenska'),(3317,'sv','ta','Swedish'),(3318,'sv','th','สวีเดน'),(3319,'sv','tr','İsveççe'),(3320,'sv','uk','Swedish'),(3321,'sv','ur','Swedish'),(3322,'sv','uz','Swedish'),(3323,'sv','vi','Swedish'),(3324,'sv','yi','Swedish'),(3325,'sv','zh-hans','瑞典语'),(3326,'sv','zu','Swedish'),(3327,'sv','zh-hant','瑞典語'),(3328,'sv','ms','Swedish'),(3329,'ta','en','Tamil'),(3330,'ta','es','Tamil'),(3331,'ta','de','Tamil'),(3332,'ta','fr','Tamoul'),(3333,'ta','ar','التاميلية'),(3334,'ta','bs','Tamil'),(3335,'ta','bg','Тамилски'),(3336,'ta','ca','Tamil'),(3337,'ta','cs','Tamil'),(3338,'ta','sk','Tamilčina'),(3339,'ta','cy','Tamil'),(3340,'ta','da','Tamil'),(3341,'ta','el','Ταμιλ'),(3342,'ta','eo','Tamil'),(3343,'ta','et','Tamil'),(3344,'ta','eu','Tamil'),(3345,'ta','fa','Tamil'),(3346,'ta','fi','tamili'),(3347,'ta','ga','Tamil'),(3348,'ta','he','טמילית'),(3349,'ta','hi','Tamil'),(3350,'ta','hr','Tamil'),(3351,'ta','hu','tamil'),(3352,'ta','hy','Tamil'),(3353,'ta','id','Tamil'),(3354,'ta','is','Tamil'),(3355,'ta','it','Tamil'),(3356,'ta','ja','タミル語'),(3357,'ta','ko','타밀어'),(3358,'ta','ku','Tamil'),(3359,'ta','la','Tamil'),(3360,'ta','lv','Tamil'),(3361,'ta','lt','Tamil'),(3362,'ta','mk','Tamil'),(3363,'ta','mt','Tamil'),(3364,'ta','mo','Tamil'),(3365,'ta','mn','Tamil'),(3366,'ta','ne','Tamil'),(3367,'ta','nl','Tamil'),(3368,'ta','nb','Tamil'),(3369,'ta','pa','Tamil'),(3370,'ta','pl','tamilski'),(3371,'ta','pt-pt','Tamil'),(3372,'ta','pt-br','Tamil'),(3373,'ta','qu','Tamil'),(3374,'ta','ro','Tamilă'),(3375,'ta','ru','Тамильский'),(3376,'ta','sl','Tamilščina'),(3377,'ta','so','Tamil'),(3378,'ta','sq','Tamil'),(3379,'ta','sr','тамилски'),(3380,'ta','sv','Tamil'),(3381,'ta','ta','Tamil'),(3382,'ta','th','ทมิฬ'),(3383,'ta','tr','Tamil dili'),(3384,'ta','uk','Tamil'),(3385,'ta','ur','Tamil'),(3386,'ta','uz','Tamil'),(3387,'ta','vi','Tamil'),(3388,'ta','yi','Tamil'),(3389,'ta','zh-hans','泰米尔语'),(3390,'ta','zu','Tamil'),(3391,'ta','zh-hant','泰米爾語'),(3392,'ta','ms','Tamil'),(3393,'th','en','Thai'),(3394,'th','es','Tailandés'),(3395,'th','de','Thai'),(3396,'th','fr','Thaï'),(3397,'th','ar','التايلندية'),(3398,'th','bs','Thai'),(3399,'th','bg','Тайски'),(3400,'th','ca','Thai'),(3401,'th','cs','Thai'),(3402,'th','sk','Thajština'),(3403,'th','cy','Thai'),(3404,'th','da','Thai'),(3405,'th','el','Thai'),(3406,'th','eo','Thai'),(3407,'th','et','Thai'),(3408,'th','eu','Thai'),(3409,'th','fa','Thai'),(3410,'th','fi','thai'),(3411,'th','ga','Thai'),(3412,'th','he','תאילנדית'),(3413,'th','hi','Thai'),(3414,'th','hr','Thai'),(3415,'th','hu','tájföldi'),(3416,'th','hy','Thai'),(3417,'th','id','Thai'),(3418,'th','is','Thai'),(3419,'th','it','Thai'),(3420,'th','ja','タイ語'),(3421,'th','ko','태국어'),(3422,'th','ku','Thai'),(3423,'th','la','Thai'),(3424,'th','lv','Thai'),(3425,'th','lt','Thai'),(3426,'th','mk','Thai'),(3427,'th','mt','Thai'),(3428,'th','mo','Thai'),(3429,'th','mn','Thai'),(3430,'th','ne','Thai'),(3431,'th','nl','Thai'),(3432,'th','nb','Thai'),(3433,'th','pa','Thai'),(3434,'th','pl','tajski'),(3435,'th','pt-pt','Tailandês'),(3436,'th','pt-br','Tailandês'),(3437,'th','qu','Thai'),(3438,'th','ro','Tailandeză'),(3439,'th','ru','Тайский'),(3440,'th','sl','Tajski'),(3441,'th','so','Thai'),(3442,'th','sq','Thai'),(3443,'th','sr','Тајландски'),(3444,'th','sv','Thailändska'),(3445,'th','ta','Thai'),(3446,'th','th','ไทย'),(3447,'th','tr','Tayca'),(3448,'th','uk','Thai'),(3449,'th','ur','Thai'),(3450,'th','uz','Thai'),(3451,'th','vi','Thai'),(3452,'th','yi','Thai'),(3453,'th','zh-hans','泰语'),(3454,'th','zu','Thai'),(3455,'th','zh-hant','泰語'),(3456,'th','ms','Thai'),(3457,'tr','en','Turkish'),(3458,'tr','es','Turco'),(3459,'tr','de','Türkisch'),(3460,'tr','fr','Turc'),(3461,'tr','ar','التركية'),(3462,'tr','bs','Turkish'),(3463,'tr','bg','Турски'),(3464,'tr','ca','Turkish'),(3465,'tr','cs','Turečtina'),(3466,'tr','sk','Turečtina'),(3467,'tr','cy','Turkish'),(3468,'tr','da','Turkish'),(3469,'tr','el','Τουρκικα'),(3470,'tr','eo','Turkish'),(3471,'tr','et','Turkish'),(3472,'tr','eu','Turkish'),(3473,'tr','fa','Turkish'),(3474,'tr','fi','turkki'),(3475,'tr','ga','Turkish'),(3476,'tr','he','תורכית'),(3477,'tr','hi','Turkish'),(3478,'tr','hr','Turski'),(3479,'tr','hu','török'),(3480,'tr','hy','Turkish'),(3481,'tr','id','Turkish'),(3482,'tr','is','Turkish'),(3483,'tr','it','Turco'),(3484,'tr','ja','トルコ語'),(3485,'tr','ko','터어키어'),(3486,'tr','ku','Turkish'),(3487,'tr','la','Turkish'),(3488,'tr','lv','Turkish'),(3489,'tr','lt','Turkish'),(3490,'tr','mk','Turkish'),(3491,'tr','mt','Turkish'),(3492,'tr','mo','Turkish'),(3493,'tr','mn','Turkish'),(3494,'tr','ne','Turkish'),(3495,'tr','nl','Turks'),(3496,'tr','nb','Turkish'),(3497,'tr','pa','Turkish'),(3498,'tr','pl','turecki'),(3499,'tr','pt-pt','Turco'),(3500,'tr','pt-br','Turco'),(3501,'tr','qu','Turkish'),(3502,'tr','ro','Turcă'),(3503,'tr','ru','Турецкий'),(3504,'tr','sl','Turščina'),(3505,'tr','so','Turkish'),(3506,'tr','sq','Turkish'),(3507,'tr','sr','турски'),(3508,'tr','sv','Turkiska'),(3509,'tr','ta','Turkish'),(3510,'tr','th','ตุรกี'),(3511,'tr','tr','Türkçe'),(3512,'tr','uk','Turkish'),(3513,'tr','ur','Turkish'),(3514,'tr','uz','Turkish'),(3515,'tr','vi','Turkish'),(3516,'tr','yi','Turkish'),(3517,'tr','zh-hans','土耳其语'),(3518,'tr','zu','Turkish'),(3519,'tr','zh-hant','土耳其語'),(3520,'tr','ms','Turkish'),(3521,'uk','en','Ukrainian'),(3522,'uk','es','Ucraniano'),(3523,'uk','de','Ukrainisch'),(3524,'uk','fr','Ukrainien'),(3525,'uk','ar','الأوكرانية'),(3526,'uk','bs','Ukrainian'),(3527,'uk','bg','Украински'),(3528,'uk','ca','Ukrainian'),(3529,'uk','cs','Ukrajinský'),(3530,'uk','sk','Ukrajinčina'),(3531,'uk','cy','Ukrainian'),(3532,'uk','da','Ukrainian'),(3533,'uk','el','Ουκρανικα'),(3534,'uk','eo','Ukrainian'),(3535,'uk','et','Ukrainian'),(3536,'uk','eu','Ukrainian'),(3537,'uk','fa','Ukrainian'),(3538,'uk','fi','ukraina'),(3539,'uk','ga','Ukrainian'),(3540,'uk','he','אוקראינית'),(3541,'uk','hi','Ukrainian'),(3542,'uk','hr','Ukrajinski'),(3543,'uk','hu','ukrán'),(3544,'uk','hy','Ukrainian'),(3545,'uk','id','Ukrainian'),(3546,'uk','is','Ukrainian'),(3547,'uk','it','Ucraino'),(3548,'uk','ja','ウクライナ語'),(3549,'uk','ko','우크라이나어'),(3550,'uk','ku','Ukrainian'),(3551,'uk','la','Ukrainian'),(3552,'uk','lv','Ukrainian'),(3553,'uk','lt','Ukrainian'),(3554,'uk','mk','Ukrainian'),(3555,'uk','mt','Ukrainian'),(3556,'uk','mo','Ukrainian'),(3557,'uk','mn','Ukrainian'),(3558,'uk','ne','Ukrainian'),(3559,'uk','nl','Oekraïens'),(3560,'uk','nb','Ukrainsk'),(3561,'uk','pa','Ukrainian'),(3562,'uk','pl','ukraiński'),(3563,'uk','pt-pt','Ucraniano'),(3564,'uk','pt-br','Ucraniano'),(3565,'uk','qu','Ukrainian'),(3566,'uk','ro','Ucrainiană'),(3567,'uk','ru','Украинский'),(3568,'uk','sl','Ukrajinski'),(3569,'uk','so','Ukrainian'),(3570,'uk','sq','Ukrainian'),(3571,'uk','sr','украјински'),(3572,'uk','sv','Ukrainska'),(3573,'uk','ta','Ukrainian'),(3574,'uk','th','ยูเครน'),(3575,'uk','tr','Ukraynaca'),(3576,'uk','uk','Ukrainian'),(3577,'uk','ur','Ukrainian'),(3578,'uk','uz','Ukrainian'),(3579,'uk','vi','Ukrainian'),(3580,'uk','yi','Ukrainian'),(3581,'uk','zh-hans','乌克兰语'),(3582,'uk','zu','Ukrainian'),(3583,'uk','zh-hant','烏克蘭語'),(3584,'uk','ms','Ukrainian'),(3585,'ur','en','Urdu'),(3586,'ur','es','Urdu'),(3587,'ur','de','Urdu'),(3588,'ur','fr','Ourdu'),(3589,'ur','ar','الأردية'),(3590,'ur','bs','Urdu'),(3591,'ur','bg','Урду'),(3592,'ur','ca','Urdu'),(3593,'ur','cs','Urdu'),(3594,'ur','sk','Urdština'),(3595,'ur','cy','Urdu'),(3596,'ur','da','Urdu'),(3597,'ur','el','Ουρντου'),(3598,'ur','eo','Urdu'),(3599,'ur','et','Urdu'),(3600,'ur','eu','Urdu'),(3601,'ur','fa','Urdu'),(3602,'ur','fi','urdu'),(3603,'ur','ga','Urdu'),(3604,'ur','he','אורדו'),(3605,'ur','hi','Urdu'),(3606,'ur','hr','Urdu'),(3607,'ur','hu','urdu'),(3608,'ur','hy','Urdu'),(3609,'ur','id','Urdu'),(3610,'ur','is','Urdu'),(3611,'ur','it','Urdu'),(3612,'ur','ja','ウルドゥー語'),(3613,'ur','ko','우르두어'),(3614,'ur','ku','Urdu'),(3615,'ur','la','Urdu'),(3616,'ur','lv','Urdu'),(3617,'ur','lt','Urdu'),(3618,'ur','mk','Urdu'),(3619,'ur','mt','Urdu'),(3620,'ur','mo','Urdu'),(3621,'ur','mn','Urdu'),(3622,'ur','ne','Urdu'),(3623,'ur','nl','Urdu'),(3624,'ur','nb','Urdu'),(3625,'ur','pa','Urdu'),(3626,'ur','pl','urdu'),(3627,'ur','pt-pt','Urdu'),(3628,'ur','pt-br','Urdu'),(3629,'ur','qu','Urdu'),(3630,'ur','ro','Urdu'),(3631,'ur','ru','Урду'),(3632,'ur','sl','Urdujščina'),(3633,'ur','so','Urdu'),(3634,'ur','sq','Urdu'),(3635,'ur','sr','урду'),(3636,'ur','sv','Urdu'),(3637,'ur','ta','Urdu'),(3638,'ur','th','อุรดู'),(3639,'ur','tr','Urduca'),(3640,'ur','uk','Urdu'),(3641,'ur','ur','اردو '),(3642,'ur','uz','Urdu'),(3643,'ur','vi','Urdu'),(3644,'ur','yi','Urdu'),(3645,'ur','zh-hans','乌尔都语'),(3646,'ur','zu','Urdu'),(3647,'ur','zh-hant','烏爾都語'),(3648,'ur','ms','Urdu'),(3649,'uz','en','Uzbek'),(3650,'uz','es','Uzbeko'),(3651,'uz','de','Usbekisch'),(3652,'uz','fr','Ouzbek'),(3653,'uz','ar','الاوزباكية'),(3654,'uz','bs','Uzbek'),(3655,'uz','bg','Узбекски'),(3656,'uz','ca','Uzbek'),(3657,'uz','cs','Uzbek'),(3658,'uz','sk','Uzbekčina'),(3659,'uz','cy','Uzbek'),(3660,'uz','da','Uzbek'),(3661,'uz','el','Ουζμπεκικα'),(3662,'uz','eo','Uzbek'),(3663,'uz','et','Uzbek'),(3664,'uz','eu','Uzbek'),(3665,'uz','fa','Uzbek'),(3666,'uz','fi','uzbekki'),(3667,'uz','ga','Uzbek'),(3668,'uz','he','אוזבקית'),(3669,'uz','hi','Uzbek'),(3670,'uz','hr','Uzbečki'),(3671,'uz','hu','üzbég'),(3672,'uz','hy','Uzbek'),(3673,'uz','id','Uzbek'),(3674,'uz','is','Uzbek'),(3675,'uz','it','Uzbeco'),(3676,'uz','ja','ウズベク語'),(3677,'uz','ko','우즈베크어'),(3678,'uz','ku','Uzbek'),(3679,'uz','la','Uzbek'),(3680,'uz','lv','Uzbek'),(3681,'uz','lt','Uzbek'),(3682,'uz','mk','Uzbek'),(3683,'uz','mt','Uzbek'),(3684,'uz','mo','Uzbek'),(3685,'uz','mn','Uzbek'),(3686,'uz','ne','Uzbek'),(3687,'uz','nl','Oezbeeks'),(3688,'uz','nb','Usbekisk'),(3689,'uz','pa','Uzbek'),(3690,'uz','pl','uzbecki'),(3691,'uz','pt-pt','Uzbeque'),(3692,'uz','pt-br','Uzbeque'),(3693,'uz','qu','Uzbek'),(3694,'uz','ro','Uzbecă'),(3695,'uz','ru','Узбекский'),(3696,'uz','sl','Uzbek'),(3697,'uz','so','Uzbek'),(3698,'uz','sq','Uzbek'),(3699,'uz','sr','Узбек'),(3700,'uz','sv','Uzbekiska'),(3701,'uz','ta','Uzbek'),(3702,'uz','th','อุซเบก'),(3703,'uz','tr','Özbekçe'),(3704,'uz','uk','Uzbek'),(3705,'uz','ur','Uzbek'),(3706,'uz','uz','Uzbek'),(3707,'uz','vi','Uzbek'),(3708,'uz','yi','Uzbek'),(3709,'uz','zh-hans','乌兹别克语'),(3710,'uz','zu','Uzbek'),(3711,'uz','zh-hant','烏茲別克語'),(3712,'uz','ms','Uzbek'),(3713,'vi','en','Vietnamese'),(3714,'vi','es','Vietnamita'),(3715,'vi','de','Vietnamesisch'),(3716,'vi','fr','Vietnamien'),(3717,'vi','ar','الفيتنامية'),(3718,'vi','bs','Vietnamese'),(3719,'vi','bg','Виетнамски'),(3720,'vi','ca','Vietnamese'),(3721,'vi','cs','Vietnamský'),(3722,'vi','sk','Vietnamčina'),(3723,'vi','cy','Vietnamese'),(3724,'vi','da','Vietnamese'),(3725,'vi','el','Βιετναμεζικα'),(3726,'vi','eo','Vietnamese'),(3727,'vi','et','Vietnamese'),(3728,'vi','eu','Vietnamese'),(3729,'vi','fa','Vietnamese'),(3730,'vi','fi','vietnam'),(3731,'vi','ga','Vietnamese'),(3732,'vi','he','וייטנאמית'),(3733,'vi','hi','Vietnamese'),(3734,'vi','hr','Vijetnamski'),(3735,'vi','hu','vietnámi'),(3736,'vi','hy','Vietnamese'),(3737,'vi','id','Vietnamese'),(3738,'vi','is','Vietnamese'),(3739,'vi','it','Vietnamita'),(3740,'vi','ja','ベトナム語'),(3741,'vi','ko','베트남어'),(3742,'vi','ku','Vietnamese'),(3743,'vi','la','Vietnamese'),(3744,'vi','lv','Vietnamese'),(3745,'vi','lt','Vietnamese'),(3746,'vi','mk','Vietnamese'),(3747,'vi','mt','Vietnamese'),(3748,'vi','mo','Vietnamese'),(3749,'vi','mn','Vietnamese'),(3750,'vi','ne','Vietnamese'),(3751,'vi','nl','Vietnamees'),(3752,'vi','nb','Vietnamesisk'),(3753,'vi','pa','Vietnamese'),(3754,'vi','pl','wietnamski'),(3755,'vi','pt-pt','Vietnamita'),(3756,'vi','pt-br','Vietnamita'),(3757,'vi','qu','Vietnamese'),(3758,'vi','ro','Vietnameză'),(3759,'vi','ru','Вьетнамский'),(3760,'vi','sl','Vietnamščina'),(3761,'vi','so','Vietnamese'),(3762,'vi','sq','Vietnamese'),(3763,'vi','sr','вијетнамски'),(3764,'vi','sv','Vietnamesiska'),(3765,'vi','ta','Vietnamese'),(3766,'vi','th','เวียดนาม'),(3767,'vi','tr','Vietnamca'),(3768,'vi','uk','Vietnamese'),(3769,'vi','ur','Vietnamese'),(3770,'vi','uz','Vietnamese'),(3771,'vi','vi','Tiếng Việt'),(3772,'vi','yi','Vietnamese'),(3773,'vi','zh-hans','越南语'),(3774,'vi','zu','Vietnamese'),(3775,'vi','zh-hant','越南語'),(3776,'vi','ms','Vietnamese'),(3777,'yi','en','Yiddish'),(3778,'yi','es','Yidis'),(3779,'yi','de','Jiddisch'),(3780,'yi','fr','Yiddish'),(3781,'yi','ar','اليديشية'),(3782,'yi','bs','Yiddish'),(3783,'yi','bg','Идиш'),(3784,'yi','ca','Yiddish'),(3785,'yi','cs','Jidiš'),(3786,'yi','sk','Jidiš'),(3787,'yi','cy','Yiddish'),(3788,'yi','da','Yiddish'),(3789,'yi','el','Γιντις'),(3790,'yi','eo','Yiddish'),(3791,'yi','et','Yiddish'),(3792,'yi','eu','Yiddish'),(3793,'yi','fa','Yiddish'),(3794,'yi','fi','jiddi'),(3795,'yi','ga','Yiddish'),(3796,'yi','he','יידיש'),(3797,'yi','hi','Yiddish'),(3798,'yi','hr','Jidiš'),(3799,'yi','hu','jiddis'),(3800,'yi','hy','Yiddish'),(3801,'yi','id','Yiddish'),(3802,'yi','is','Yiddish'),(3803,'yi','it','Yiddish'),(3804,'yi','ja','イディッシュ語'),(3805,'yi','ko','이디시어'),(3806,'yi','ku','Yiddish'),(3807,'yi','la','Yiddish'),(3808,'yi','lv','Yiddish'),(3809,'yi','lt','Yiddish'),(3810,'yi','mk','Yiddish'),(3811,'yi','mt','Yiddish'),(3812,'yi','mo','Yiddish'),(3813,'yi','mn','Yiddish'),(3814,'yi','ne','Yiddish'),(3815,'yi','nl','Jiddisch'),(3816,'yi','nb','Yiddish'),(3817,'yi','pa','Yiddish'),(3818,'yi','pl','jidysz'),(3819,'yi','pt-pt','Yiddish'),(3820,'yi','pt-br','Yiddish'),(3821,'yi','qu','Yiddish'),(3822,'yi','ro','Idiş'),(3823,'yi','ru','Идиш'),(3824,'yi','sl','Jidiš'),(3825,'yi','so','Yiddish'),(3826,'yi','sq','Yiddish'),(3827,'yi','sr','јидиш'),(3828,'yi','sv','Jiddisch'),(3829,'yi','ta','Yiddish'),(3830,'yi','th','ยิชดิช'),(3831,'yi','tr','Eski İbranice'),(3832,'yi','uk','Yiddish'),(3833,'yi','ur','Yiddish'),(3834,'yi','uz','Yiddish'),(3835,'yi','vi','Yiddish'),(3836,'yi','yi','Yiddish'),(3837,'yi','zh-hans','依地语'),(3838,'yi','zu','Yiddish'),(3839,'yi','zh-hant','依地語'),(3840,'yi','ms','Yiddish'),(3841,'zh-hans','en','Chinese (Simplified)'),(3842,'zh-hans','es','Chino simplificado'),(3843,'zh-hans','de','Vereinfachtes Chinesisch'),(3844,'zh-hans','fr','Chinois simplifié'),(3845,'zh-hans','ar','الصينية المبسطة'),(3846,'zh-hans','bs','Chinese (Simplified)'),(3847,'zh-hans','bg','Китайски (опростен)'),(3848,'zh-hans','ca','Chinese (Simplified)'),(3849,'zh-hans','cs','Čínština ( Zjednodušený )'),(3850,'zh-hans','sk','Zjednodušená Čínština'),(3851,'zh-hans','cy','Chinese (Simplified)'),(3852,'zh-hans','da','Chinese (Simplified)'),(3853,'zh-hans','el','Κινεζικα (Απλοποιημένα)'),(3854,'zh-hans','eo','Chinese (Simplified)'),(3855,'zh-hans','et','Chinese (Simplified)'),(3856,'zh-hans','eu','Chinese (Simplified)'),(3857,'zh-hans','fa','Chinese (Simplified)'),(3858,'zh-hans','fi','kiina'),(3859,'zh-hans','ga','Chinese (Simplified)'),(3860,'zh-hans','he','סינית'),(3861,'zh-hans','hi','Chinese (Simplified)'),(3862,'zh-hans','hr','Kineski (pojednostavljeni)'),(3863,'zh-hans','hu','egyszerűsített kínai'),(3864,'zh-hans','hy','Chinese (Simplified)'),(3865,'zh-hans','id','Chinese (Simplified)'),(3866,'zh-hans','is','Chinese (Simplified)'),(3867,'zh-hans','it','Cinese semplificato'),(3868,'zh-hans','ja','簡体中国語'),(3869,'zh-hans','ko','중국어 간체'),(3870,'zh-hans','ku','Chinese (Simplified)'),(3871,'zh-hans','la','Chinese (Simplified)'),(3872,'zh-hans','lv','Chinese (Simplified)'),(3873,'zh-hans','lt','Chinese (Simplified)'),(3874,'zh-hans','mk','Chinese (Simplified)'),(3875,'zh-hans','mt','Chinese (Simplified)'),(3876,'zh-hans','mo','Chinese (Simplified)'),(3877,'zh-hans','mn','Chinese (Simplified)'),(3878,'zh-hans','ne','Chinese (Simplified)'),(3879,'zh-hans','nl','Vereenvoudigd Chinees'),(3880,'zh-hans','nb','Kinesisk (forenklet)'),(3881,'zh-hans','pa','Chinese (Simplified)'),(3882,'zh-hans','pl','chiński uproszczony'),(3883,'zh-hans','pt-pt','Chinês (Simplificado)'),(3884,'zh-hans','pt-br','Chinês (Simplificado)'),(3885,'zh-hans','qu','Chinese (Simplified)'),(3886,'zh-hans','ro','Chineza simplificată'),(3887,'zh-hans','ru','Китайский (упрощенный)'),(3888,'zh-hans','sl','Kitajščina (poenostavljena )'),(3889,'zh-hans','so','Chinese (Simplified)'),(3890,'zh-hans','sq','Chinese (Simplified)'),(3891,'zh-hans','sr','Кинески (поједностављени)'),(3892,'zh-hans','sv','Förenklad kinesiska'),(3893,'zh-hans','ta','Chinese (Simplified)'),(3894,'zh-hans','th','จีนประยุกต์'),(3895,'zh-hans','tr','Modern Çince'),(3896,'zh-hans','uk','Chinese (Simplified)'),(3897,'zh-hans','ur','Chinese (Simplified)'),(3898,'zh-hans','uz','Chinese (Simplified)'),(3899,'zh-hans','vi','Chinese (Simplified)'),(3900,'zh-hans','yi','Chinese (Simplified)'),(3901,'zh-hans','zh-hans','简体中文'),(3902,'zh-hans','zu','Chinese (Simplified)'),(3903,'zh-hans','zh-hant','簡體中文'),(3904,'zh-hans','ms','Chinese (Simplified)'),(3905,'zu','en','Zulu'),(3906,'zu','es','Zulú'),(3907,'zu','de','Zulu'),(3908,'zu','fr','Zoulou'),(3909,'zu','ar','الزولو'),(3910,'zu','bs','Zulu'),(3911,'zu','bg','Зулу'),(3912,'zu','ca','Zulu'),(3913,'zu','cs','Zulu'),(3914,'zu','sk','Jazyk Zulu'),(3915,'zu','cy','Zulu'),(3916,'zu','da','Zulu'),(3917,'zu','el','Ζουλου'),(3918,'zu','eo','Zulu'),(3919,'zu','et','Zulu'),(3920,'zu','eu','Zulu'),(3921,'zu','fa','Zulu'),(3922,'zu','fi','zulu'),(3923,'zu','ga','Zulu'),(3924,'zu','he','זולו '),(3925,'zu','hi','Zulu'),(3926,'zu','hr','Zulu'),(3927,'zu','hu','zulu'),(3928,'zu','hy','Zulu'),(3929,'zu','id','Zulu'),(3930,'zu','is','Zulu'),(3931,'zu','it','Zulu'),(3932,'zu','ja','ズールー語'),(3933,'zu','ko','줄루어'),(3934,'zu','ku','Zulu'),(3935,'zu','la','Zulu'),(3936,'zu','lv','Zulu'),(3937,'zu','lt','Zulu'),(3938,'zu','mk','Zulu'),(3939,'zu','mt','Zulu'),(3940,'zu','mo','Zulu'),(3941,'zu','mn','Zulu'),(3942,'zu','ne','Zulu'),(3943,'zu','nl','Zulu'),(3944,'zu','nb','Zulu'),(3945,'zu','pa','Zulu'),(3946,'zu','pl','zuluski'),(3947,'zu','pt-pt','Zulu'),(3948,'zu','pt-br','Zulu'),(3949,'zu','qu','Zulu'),(3950,'zu','ro','Zulu'),(3951,'zu','ru','Зулу'),(3952,'zu','sl','Zulu'),(3953,'zu','so','Zulu'),(3954,'zu','sq','Zulu'),(3955,'zu','sr','зулу'),(3956,'zu','sv','Zulu'),(3957,'zu','ta','Zulu'),(3958,'zu','th','ซูลู'),(3959,'zu','tr','Zulu dili'),(3960,'zu','uk','Zulu'),(3961,'zu','ur','Zulu'),(3962,'zu','uz','Zulu'),(3963,'zu','vi','Zulu'),(3964,'zu','yi','Zulu'),(3965,'zu','zh-hans','祖鲁语'),(3966,'zu','zu','Zulu'),(3967,'zu','zh-hant','祖魯語'),(3968,'zu','ms','Zulu'),(3969,'zh-hant','en','Chinese (Traditional)'),(3970,'zh-hant','es','Chino tradicional'),(3971,'zh-hant','de','Traditionelles Chinesisch'),(3972,'zh-hant','fr','Chinois traditionnel'),(3973,'zh-hant','ar','الصينية التقليدية'),(3974,'zh-hant','bs','Chinese (Traditional)'),(3975,'zh-hant','bg','Китайски (традиционен)'),(3976,'zh-hant','ca','Chinese (Traditional)'),(3977,'zh-hant','cs','Čínština (tradiční )'),(3978,'zh-hant','sk','Tradičná Čínština'),(3979,'zh-hant','cy','Chinese (Traditional)'),(3980,'zh-hant','da','Chinese (Traditional)'),(3981,'zh-hant','el','Κινεζικα (Παραδοσιακά)'),(3982,'zh-hant','eo','Chinese (Traditional)'),(3983,'zh-hant','et','Chinese (Traditional)'),(3984,'zh-hant','eu','Chinese (Traditional)'),(3985,'zh-hant','fa','Chinese (Traditional)'),(3986,'zh-hant','fi','perinteinen kiina'),(3987,'zh-hant','ga','Chinese (Traditional)'),(3988,'zh-hant','he','סינית מסורתית'),(3989,'zh-hant','hi','Chinese (Traditional)'),(3990,'zh-hant','hr','Kineski (tradicionalni)'),(3991,'zh-hant','hu','hagyományos kínai'),(3992,'zh-hant','hy','Chinese (Traditional)'),(3993,'zh-hant','id','Chinese (Traditional)'),(3994,'zh-hant','is','Chinese (Traditional)'),(3995,'zh-hant','it','Cinese tradizionale'),(3996,'zh-hant','ja','繁体中国語'),(3997,'zh-hant','ko','중국어 번체'),(3998,'zh-hant','ku','Chinese (Traditional)'),(3999,'zh-hant','la','Chinese (Traditional)'),(4000,'zh-hant','lv','Chinese (Traditional)'),(4001,'zh-hant','lt','Chinese (Traditional)'),(4002,'zh-hant','mk','Chinese (Traditional)'),(4003,'zh-hant','mt','Chinese (Traditional)'),(4004,'zh-hant','mo','Chinese (Traditional)'),(4005,'zh-hant','mn','Chinese (Traditional)'),(4006,'zh-hant','ne','Chinese (Traditional)'),(4007,'zh-hant','nl','Traditioneel Chinees'),(4008,'zh-hant','nb','Kinesisk (tradisjonell)'),(4009,'zh-hant','pa','Chinese (Traditional)'),(4010,'zh-hant','pl','chiński tradycyjny'),(4011,'zh-hant','pt-pt','Chinês (Tradicional)'),(4012,'zh-hant','pt-br','Chinês (Tradicional)'),(4013,'zh-hant','qu','Chinese (Traditional)'),(4014,'zh-hant','ro','Chineza tradiţională'),(4015,'zh-hant','ru','Китайский (традиционный)'),(4016,'zh-hant','sl','Kitajščina (tradicionalna)'),(4017,'zh-hant','so','Chinese (Traditional)'),(4018,'zh-hant','sq','Chinese (Traditional)'),(4019,'zh-hant','sr','Кинески (традиционални)'),(4020,'zh-hant','sv','Traditionell kinesiska'),(4021,'zh-hant','ta','Chinese (Traditional)'),(4022,'zh-hant','th','จีนดั้งเดิม'),(4023,'zh-hant','tr','Klasik Çince'),(4024,'zh-hant','uk','Chinese (Traditional)'),(4025,'zh-hant','ur','Chinese (Traditional)'),(4026,'zh-hant','uz','Chinese (Traditional)'),(4027,'zh-hant','vi','Chinese (Traditional)'),(4028,'zh-hant','yi','Chinese (Traditional)'),(4029,'zh-hant','zh-hans','繁体中文'),(4030,'zh-hant','zu','Chinese (Traditional)'),(4031,'zh-hant','zh-hant','繁體中文'),(4032,'zh-hant','ms','Chinese (Traditional)'),(4033,'ms','en','Malay'),(4034,'ms','es','Malayo'),(4035,'ms','de','Malaiisch'),(4036,'ms','fr','Malay'),(4037,'ms','ar','لغة الملايو'),(4038,'ms','bs','Malay'),(4039,'ms','bg','Малайски'),(4040,'ms','ca','Malay'),(4041,'ms','cs','Malajský'),(4042,'ms','sk','Malay'),(4043,'ms','cy','Malay'),(4044,'ms','da','Malay'),(4045,'ms','el','Malay'),(4046,'ms','eo','Malay'),(4047,'ms','et','Malay'),(4048,'ms','eu','Malay'),(4049,'ms','fa','Malay'),(4050,'ms','fi','Malay'),(4051,'ms','ga','Malay'),(4052,'ms','he','מלאית'),(4053,'ms','hi','Malay'),(4054,'ms','hr','Malajski'),(4055,'ms','hu','Malay'),(4056,'ms','hy','Malay'),(4057,'ms','id','Malay'),(4058,'ms','is','Malay'),(4059,'ms','it','Malay'),(4060,'ms','ja','Malay'),(4061,'ms','ko','Malay'),(4062,'ms','ku','Malay'),(4063,'ms','la','Malay'),(4064,'ms','lv','Malay'),(4065,'ms','lt','Malay'),(4066,'ms','mk','Malay'),(4067,'ms','mt','Malay'),(4068,'ms','mo','Malay'),(4069,'ms','mn','Malay'),(4070,'ms','ne','Malay'),(4071,'ms','nl','Malay'),(4072,'ms','nb','Malay'),(4073,'ms','pa','Malay'),(4074,'ms','pl','Malay'),(4075,'ms','pt-pt','Malaio'),(4076,'ms','pt-br','Malaio'),(4077,'ms','qu','Malay'),(4078,'ms','ro','Malay'),(4079,'ms','ru','Malay'),(4080,'ms','sl','Malajščina'),(4081,'ms','so','Malay'),(4082,'ms','sq','Malay'),(4083,'ms','sr','малајски'),(4084,'ms','sv','Malay'),(4085,'ms','ta','Malay'),(4086,'ms','th','Malay'),(4087,'ms','tr','Malay'),(4088,'ms','uk','Malay'),(4089,'ms','ur','Malay'),(4090,'ms','uz','Malay'),(4091,'ms','vi','Malay'),(4092,'ms','yi','Malay'),(4093,'ms','zh-hans','Malay'),(4094,'ms','zu','Malay'),(4095,'ms','zh-hant','Malay'),(4096,'ms','ms','Melayu'); /*!40000 ALTER TABLE `g516db_icl_languages_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_locale_map` -- DROP TABLE IF EXISTS `g516db_icl_locale_map`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_locale_map` ( `code` varchar(7) NOT NULL, `locale` varchar(8) NOT NULL, UNIQUE KEY `code` (`code`,`locale`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_locale_map` -- LOCK TABLES `g516db_icl_locale_map` WRITE; /*!40000 ALTER TABLE `g516db_icl_locale_map` DISABLE KEYS */; INSERT INTO `g516db_icl_locale_map` VALUES ('en','en_US'),('ja','ja'),('ko','ko_KR'),('zh-hans','zh_CN'); /*!40000 ALTER TABLE `g516db_icl_locale_map` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_message_status` -- DROP TABLE IF EXISTS `g516db_icl_message_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_message_status` ( `id` bigint(20) unsigned NOT NULL auto_increment, `rid` bigint(20) unsigned NOT NULL, `object_id` bigint(20) unsigned NOT NULL, `from_language` varchar(10) NOT NULL, `to_language` varchar(10) NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `md5` varchar(32) NOT NULL, `object_type` varchar(64) NOT NULL, `status` smallint(6) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `rid` (`rid`), KEY `object_id` (`object_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_message_status` -- LOCK TABLES `g516db_icl_message_status` WRITE; /*!40000 ALTER TABLE `g516db_icl_message_status` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_message_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_node` -- DROP TABLE IF EXISTS `g516db_icl_node`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_node` ( `nid` bigint(20) NOT NULL, `md5` varchar(32) NOT NULL, `links_fixed` tinyint(4) NOT NULL default '0', PRIMARY KEY (`nid`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_node` -- LOCK TABLES `g516db_icl_node` WRITE; /*!40000 ALTER TABLE `g516db_icl_node` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_node` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_reminders` -- DROP TABLE IF EXISTS `g516db_icl_reminders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_reminders` ( `id` bigint(20) NOT NULL, `message` text NOT NULL, `url` text NOT NULL, `can_delete` tinyint(4) NOT NULL, `show` tinyint(4) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_reminders` -- LOCK TABLES `g516db_icl_reminders` WRITE; /*!40000 ALTER TABLE `g516db_icl_reminders` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_reminders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_string_positions` -- DROP TABLE IF EXISTS `g516db_icl_string_positions`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_string_positions` ( `id` bigint(20) unsigned NOT NULL auto_increment, `string_id` bigint(20) NOT NULL, `kind` tinyint(4) default NULL, `position_in_page` varchar(255) NOT NULL, PRIMARY KEY (`id`), KEY `string_id` (`string_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_string_positions` -- LOCK TABLES `g516db_icl_string_positions` WRITE; /*!40000 ALTER TABLE `g516db_icl_string_positions` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_string_positions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_string_status` -- DROP TABLE IF EXISTS `g516db_icl_string_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_string_status` ( `id` bigint(20) unsigned NOT NULL auto_increment, `rid` bigint(20) NOT NULL, `string_translation_id` bigint(20) NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `md5` varchar(32) NOT NULL, PRIMARY KEY (`id`), KEY `string_translation_id` (`string_translation_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_string_status` -- LOCK TABLES `g516db_icl_string_status` WRITE; /*!40000 ALTER TABLE `g516db_icl_string_status` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_string_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_string_translations` -- DROP TABLE IF EXISTS `g516db_icl_string_translations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_string_translations` ( `id` bigint(20) unsigned NOT NULL auto_increment, `string_id` bigint(20) unsigned NOT NULL, `language` varchar(10) NOT NULL, `status` tinyint(4) NOT NULL, `value` text, `translator_id` bigint(20) unsigned default NULL, `translation_service` varchar(16) NOT NULL default '', `batch_id` int(11) NOT NULL default '0', `translation_date` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `string_language` (`string_id`,`language`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_string_translations` -- LOCK TABLES `g516db_icl_string_translations` WRITE; /*!40000 ALTER TABLE `g516db_icl_string_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_string_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_strings` -- DROP TABLE IF EXISTS `g516db_icl_strings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_strings` ( `id` bigint(20) unsigned NOT NULL auto_increment, `language` varchar(7) NOT NULL, `context` varchar(160) NOT NULL, `name` varchar(160) NOT NULL, `value` text NOT NULL, `string_package_id` bigint(20) unsigned default NULL, `type` varchar(40) NOT NULL default 'LINE', `title` varchar(160) default NULL, `status` tinyint(4) NOT NULL, `gettext_context` text NOT NULL, `domain_name_context_md5` varchar(32) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `uc_domain_name_context_md5` (`domain_name_context_md5`), KEY `language_context` (`language`,`context`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_strings` -- LOCK TABLES `g516db_icl_strings` WRITE; /*!40000 ALTER TABLE `g516db_icl_strings` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_strings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_translate` -- DROP TABLE IF EXISTS `g516db_icl_translate`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_translate` ( `tid` bigint(20) unsigned NOT NULL auto_increment, `job_id` bigint(20) unsigned NOT NULL, `content_id` bigint(20) unsigned NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `field_type` varchar(160) NOT NULL, `field_format` varchar(16) NOT NULL, `field_translate` tinyint(4) NOT NULL, `field_data` longtext NOT NULL, `field_data_translated` longtext NOT NULL, `field_finished` tinyint(4) NOT NULL default '0', PRIMARY KEY (`tid`), KEY `job_id` (`job_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_translate` -- LOCK TABLES `g516db_icl_translate` WRITE; /*!40000 ALTER TABLE `g516db_icl_translate` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_translate` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_translate_job` -- DROP TABLE IF EXISTS `g516db_icl_translate_job`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_translate_job` ( `job_id` bigint(20) unsigned NOT NULL auto_increment, `rid` bigint(20) unsigned NOT NULL, `translator_id` int(10) unsigned NOT NULL, `translated` tinyint(3) unsigned NOT NULL default '0', `manager_id` int(10) unsigned NOT NULL, `revision` int(10) unsigned default NULL, PRIMARY KEY (`job_id`), KEY `rid` (`rid`,`translator_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_translate_job` -- LOCK TABLES `g516db_icl_translate_job` WRITE; /*!40000 ALTER TABLE `g516db_icl_translate_job` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_translate_job` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_translation_batches` -- DROP TABLE IF EXISTS `g516db_icl_translation_batches`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_translation_batches` ( `id` int(11) NOT NULL auto_increment, `batch_name` text NOT NULL, `tp_id` int(11) default NULL, `ts_url` text, `last_update` datetime default NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_translation_batches` -- LOCK TABLES `g516db_icl_translation_batches` WRITE; /*!40000 ALTER TABLE `g516db_icl_translation_batches` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_icl_translation_batches` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_translation_status` -- DROP TABLE IF EXISTS `g516db_icl_translation_status`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_translation_status` ( `rid` bigint(20) NOT NULL auto_increment, `translation_id` bigint(20) NOT NULL, `status` tinyint(4) NOT NULL, `translator_id` bigint(20) NOT NULL, `needs_update` tinyint(4) NOT NULL, `md5` varchar(32) NOT NULL, `translation_service` varchar(16) NOT NULL, `batch_id` int(11) NOT NULL default '0', `translation_package` text NOT NULL, `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, `links_fixed` tinyint(4) NOT NULL default '0', `_prevstate` longtext, PRIMARY KEY (`rid`), UNIQUE KEY `translation_id` (`translation_id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_translation_status` -- LOCK TABLES `g516db_icl_translation_status` WRITE; /*!40000 ALTER TABLE `g516db_icl_translation_status` DISABLE KEYS */; INSERT INTO `g516db_icl_translation_status` VALUES (1,634,10,0,0,'','',0,'','2015-09-02 00:59:50',0,NULL),(2,637,9,0,0,'','',0,'','2015-09-02 02:01:03',0,NULL),(3,638,9,0,0,'','',0,'','2015-09-02 02:06:25',0,NULL); /*!40000 ALTER TABLE `g516db_icl_translation_status` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_icl_translations` -- DROP TABLE IF EXISTS `g516db_icl_translations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_icl_translations` ( `translation_id` bigint(20) NOT NULL auto_increment, `element_type` varchar(36) NOT NULL default 'post_post', `element_id` bigint(20) default NULL, `trid` bigint(20) NOT NULL, `language_code` varchar(7) NOT NULL, `source_language_code` varchar(7) default NULL, PRIMARY KEY (`translation_id`), UNIQUE KEY `trid_lang` (`trid`,`language_code`), UNIQUE KEY `el_type_id` (`element_type`,`element_id`), KEY `trid` (`trid`), KEY `id_type_language` (`element_id`,`element_type`,`language_code`) ) ENGINE=MyISAM AUTO_INCREMENT=698 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_icl_translations` -- LOCK TABLES `g516db_icl_translations` WRITE; /*!40000 ALTER TABLE `g516db_icl_translations` DISABLE KEYS */; INSERT INTO `g516db_icl_translations` VALUES (1,'post_forum',1655,1655,'en',NULL),(2,'post_forum',1687,1687,'en',NULL),(3,'post_forum',1634,1634,'en',NULL),(4,'post_forum',1644,1644,'en',NULL),(5,'post_forum',1659,1659,'en',NULL),(6,'post_forum',1662,1662,'en',NULL),(7,'post_forum',1667,1667,'en',NULL),(8,'post_forum',1677,1677,'en',NULL),(9,'post_forum',2277,2277,'en',NULL),(10,'post_forum',2280,2280,'en',NULL),(11,'post_forum',2282,2282,'en',NULL),(12,'post_forum',2288,2288,'en',NULL),(13,'post_nav_menu_item',3208,3208,'en',NULL),(14,'post_nav_menu_item',3290,3290,'en',NULL),(15,'post_nav_menu_item',3291,3291,'en',NULL),(16,'post_nav_menu_item',3292,3292,'en',NULL),(17,'post_nav_menu_item',3295,3295,'en',NULL),(18,'post_nav_menu_item',3296,3296,'en',NULL),(19,'post_nav_menu_item',3297,3297,'en',NULL),(20,'post_nav_menu_item',3298,3298,'en',NULL),(21,'post_nav_menu_item',3299,3299,'en',NULL),(22,'post_nav_menu_item',3300,3300,'en',NULL),(23,'post_nav_menu_item',2708,2708,'en',NULL),(24,'post_nav_menu_item',2709,2709,'en',NULL),(25,'post_nav_menu_item',2710,2710,'en',NULL),(26,'post_nav_menu_item',2711,2711,'en',NULL),(27,'post_nav_menu_item',2712,2712,'en',NULL),(28,'post_nav_menu_item',2713,2713,'en',NULL),(29,'post_nav_menu_item',2714,2714,'en',NULL),(33,'post_nav_menu_item',2718,2718,'en',NULL),(34,'post_nav_menu_item',2719,2719,'en',NULL),(35,'post_nav_menu_item',2720,2720,'en',NULL),(36,'post_nav_menu_item',2721,2721,'en',NULL),(37,'post_nav_menu_item',2722,2722,'en',NULL),(38,'post_nav_menu_item',2723,2723,'en',NULL),(39,'post_nav_menu_item',2724,2724,'en',NULL),(40,'post_nav_menu_item',2725,2725,'en',NULL),(41,'post_nav_menu_item',2726,2726,'en',NULL),(49,'post_nav_menu_item',2734,2734,'en',NULL),(50,'post_nav_menu_item',2735,2735,'en',NULL),(51,'post_nav_menu_item',2736,2736,'en',NULL),(54,'post_nav_menu_item',2739,2739,'en',NULL),(57,'post_nav_menu_item',2742,2742,'en',NULL),(58,'post_nav_menu_item',2743,2743,'en',NULL),(59,'post_nav_menu_item',2744,2744,'en',NULL),(60,'post_nav_menu_item',2745,2745,'en',NULL),(66,'post_nav_menu_item',2751,2751,'en',NULL),(67,'post_nav_menu_item',2752,2752,'en',NULL),(69,'post_nav_menu_item',2754,2754,'en',NULL),(70,'post_nav_menu_item',2755,2755,'en',NULL),(71,'post_nav_menu_item',2756,2756,'en',NULL),(72,'post_nav_menu_item',2757,2757,'en',NULL),(73,'post_nav_menu_item',2758,2758,'en',NULL),(74,'post_nav_menu_item',2759,2759,'en',NULL),(75,'post_nav_menu_item',2760,2760,'en',NULL),(76,'post_nav_menu_item',2761,2761,'en',NULL),(79,'post_nav_menu_item',2764,2764,'en',NULL),(80,'post_nav_menu_item',2765,2765,'en',NULL),(91,'post_nav_menu_item',3031,3031,'en',NULL),(101,'post_nav_menu_item',3041,3041,'en',NULL),(110,'post_nav_menu_item',3050,3050,'en',NULL),(112,'post_nav_menu_item',3052,3052,'en',NULL),(113,'post_nav_menu_item',3053,3053,'en',NULL),(132,'post_nav_menu_item',3072,3072,'en',NULL),(134,'post_nav_menu_item',3074,3074,'en',NULL),(139,'post_nav_menu_item',3079,3079,'en',NULL),(140,'post_nav_menu_item',3080,3080,'en',NULL),(141,'post_nav_menu_item',3081,3081,'en',NULL),(142,'post_nav_menu_item',3082,3082,'en',NULL),(143,'post_nav_menu_item',3083,3083,'en',NULL),(144,'post_nav_menu_item',3084,3084,'en',NULL),(150,'post_nav_menu_item',3095,3095,'en',NULL),(151,'post_nav_menu_item',3097,3097,'en',NULL),(152,'post_nav_menu_item',3096,3096,'en',NULL),(153,'post_nav_menu_item',3128,3128,'en',NULL),(154,'post_nav_menu_item',3129,3129,'en',NULL),(156,'post_nav_menu_item',3200,3200,'en',NULL),(157,'post_nav_menu_item',3209,3209,'en',NULL),(158,'post_option-tree',5,5,'en',NULL),(159,'post_ourteam',801,801,'en',NULL),(160,'post_ourteam',803,803,'en',NULL),(161,'post_ourteam',804,804,'en',NULL),(162,'post_ourteam',805,805,'en',NULL),(163,'post_ourteam',817,817,'en',NULL),(164,'post_ourteam',818,818,'en',NULL),(166,'post_page',536,536,'en',NULL),(175,'post_page',1441,1441,'en',NULL),(176,'post_page',1442,1442,'en',NULL),(177,'post_page',1443,1443,'en',NULL),(178,'post_page',1444,1444,'en',NULL),(179,'post_page',1445,1445,'en',NULL),(180,'post_page',1454,1454,'en',NULL),(190,'post_page',1632,1632,'en',NULL),(192,'post_page',1689,1689,'en',NULL),(194,'post_page',1752,1752,'en',NULL),(196,'post_page',1791,1791,'en',NULL),(199,'post_page',3123,3123,'en',NULL),(200,'post_page',3125,3125,'en',NULL),(202,'post_page',3197,3197,'en',NULL),(203,'post_page',3206,3206,'en',NULL),(204,'post_polylang_mo',3245,3245,'en',NULL),(205,'post_polylang_mo',3246,3246,'en',NULL),(206,'post_polylang_mo',3247,3247,'en',NULL),(207,'post_polylang_mo',3248,3248,'en',NULL),(277,'post_reply',1642,1642,'en',NULL),(278,'post_reply',1656,1656,'en',NULL),(279,'post_reply',1657,1657,'en',NULL),(280,'post_reply',1676,1676,'en',NULL),(281,'post_reply',1680,1680,'en',NULL),(282,'post_reply',1685,1685,'en',NULL),(283,'post_tmm',2052,2052,'en',NULL),(284,'post_topic',1636,1636,'en',NULL),(285,'post_topic',1638,1638,'en',NULL),(286,'post_topic',1640,1640,'en',NULL),(287,'post_topic',1646,1646,'en',NULL),(288,'post_topic',1648,1648,'en',NULL),(289,'post_topic',1650,1650,'en',NULL),(290,'post_topic',1661,1661,'en',NULL),(291,'post_topic',1672,1672,'en',NULL),(292,'post_topic',1683,1683,'en',NULL),(293,'post_topic',2284,2284,'en',NULL),(294,'post_topic',2285,2285,'en',NULL),(295,'post_topic',2291,2291,'en',NULL),(296,'post_tribe_events',304,304,'en',NULL),(297,'post_tribe_events',305,305,'en',NULL),(298,'post_tribe_events',308,308,'en',NULL),(299,'post_tribe_events',310,310,'en',NULL),(300,'post_tribe_events',312,312,'en',NULL),(301,'post_tribe_events',313,313,'en',NULL),(302,'post_tribe_events',314,314,'en',NULL),(303,'post_tribe_events',315,315,'en',NULL),(304,'post_tribe_events',860,860,'en',NULL),(305,'post_tribe_events',965,965,'en',NULL),(306,'post_tribe_events',1067,1067,'en',NULL),(307,'post_tribe_events',1069,1069,'en',NULL),(308,'post_tribe_events',1071,1071,'en',NULL),(309,'post_tribe_events',1074,1074,'en',NULL),(310,'post_tribe_events',2089,2089,'en',NULL),(311,'post_tribe_events',2090,2090,'en',NULL),(312,'post_tribe_events',2091,2091,'en',NULL),(313,'post_tribe_events',2092,2092,'en',NULL),(314,'post_tribe_events',2094,2094,'en',NULL),(315,'post_tribe_events',2095,2095,'en',NULL),(316,'post_tribe_events',2093,2093,'en',NULL),(317,'post_tribe_events',2973,2973,'en',NULL),(318,'post_tribe_organizer',323,323,'en',NULL),(319,'post_tribe_organizer',1077,1077,'en',NULL),(320,'post_tribe_venue',319,319,'en',NULL),(321,'post_tribe_venue',324,324,'en',NULL),(322,'post_tribe_venue',374,374,'en',NULL),(323,'post_tribe_venue',1078,1078,'en',NULL),(324,'post_tribe_venue',2055,2055,'en',NULL),(325,'post_tribe_venue',2974,2974,'en',NULL),(326,'post_wpcf7_contact_form',3020,3020,'en',NULL),(327,'post_wpcf7_contact_form',888,888,'en',NULL),(328,'post_wpcf7_contact_form',1059,1059,'en',NULL),(329,'post_wpcf7_contact_form',1701,1701,'en',NULL),(330,'post_wpcf7_contact_form',4,4,'en',NULL),(512,'tax_category',1,3302,'en',NULL),(513,'tax_category',2,3303,'en',NULL),(514,'tax_category',3,3304,'en',NULL),(515,'tax_category',4,3305,'en',NULL),(516,'tax_category',5,3306,'en',NULL),(517,'tax_category',6,3307,'en',NULL),(518,'tax_category',7,3308,'en',NULL),(519,'tax_category',8,3309,'en',NULL),(520,'tax_category',9,3310,'en',NULL),(521,'tax_category',10,3311,'en',NULL),(522,'tax_category',49,3350,'en',NULL),(523,'tax_category',53,3354,'en',NULL),(524,'tax_category',57,3358,'en',NULL),(525,'tax_category',61,3362,'en',NULL),(527,'tax_post_tag',11,3374,'en',NULL),(528,'tax_post_tag',12,3375,'en',NULL),(529,'tax_post_tag',13,3376,'en',NULL),(530,'tax_post_tag',14,3377,'en',NULL),(531,'tax_post_tag',15,3378,'en',NULL),(532,'tax_post_tag',16,3379,'en',NULL),(533,'tax_post_tag',17,3380,'en',NULL),(534,'tax_nav_menu',32,3413,'en',NULL),(535,'tax_nav_menu',33,3414,'en',NULL),(536,'tax_nav_menu',34,3415,'en',NULL),(537,'tax_nav_menu',35,3416,'en',NULL),(538,'tax_nav_menu',36,3417,'en',NULL),(539,'tax_nav_menu',37,3418,'en',NULL),(540,'tax_nav_menu',38,3419,'en',NULL),(541,'tax_nav_menu',39,3420,'en',NULL),(543,'tax_nav_menu',43,3424,'en',NULL),(549,'tax_post_format',41,3466,'en',NULL),(550,'tax_post_format',42,3467,'en',NULL),(552,'tax_topic-tag',18,3486,'en',NULL),(553,'tax_topic-tag',24,3492,'en',NULL),(554,'tax_topic-tag',25,3493,'en',NULL),(555,'tax_topic-tag',26,3494,'en',NULL),(556,'tax_topic-tag',27,3495,'en',NULL),(557,'tax_topic-tag',28,3496,'en',NULL),(558,'tax_topic-tag',29,3497,'en',NULL),(559,'tax_topic-tag',30,3498,'en',NULL),(560,'tax_topic-tag',31,3499,'en',NULL),(567,'comment',1,3501,'en',NULL),(568,'comment',7,3507,'en',NULL),(569,'comment',8,3508,'en',NULL),(570,'comment',9,3509,'en',NULL),(571,'comment',10,3510,'en',NULL),(572,'comment',11,3511,'en',NULL),(573,'comment',12,3512,'en',NULL),(574,'comment',13,3513,'en',NULL),(575,'comment',14,3514,'en',NULL),(576,'comment',15,3515,'en',NULL),(577,'comment',16,3516,'en',NULL),(578,'comment',17,3517,'en',NULL),(579,'comment',18,3518,'en',NULL),(580,'comment',19,3519,'en',NULL),(581,'comment',20,3520,'en',NULL),(582,'comment',21,3521,'en',NULL),(583,'comment',22,3522,'en',NULL),(584,'comment',23,3523,'en',NULL),(585,'comment',24,3524,'en',NULL),(586,'comment',25,3525,'en',NULL),(587,'comment',26,3526,'en',NULL),(588,'comment',27,3527,'en',NULL),(589,'comment',28,3528,'en',NULL),(590,'comment',29,3529,'en',NULL),(591,'comment',30,3530,'en',NULL),(592,'comment',31,3531,'en',NULL),(593,'comment',32,3532,'en',NULL),(594,'comment',33,3533,'en',NULL),(595,'comment',34,3534,'en',NULL),(596,'comment',35,3535,'en',NULL),(597,'comment',36,3536,'en',NULL),(598,'comment',37,3537,'en',NULL),(599,'comment',38,3538,'en',NULL),(600,'comment',39,3539,'en',NULL),(601,'comment',40,3540,'en',NULL),(602,'comment',41,3541,'en',NULL),(603,'comment',42,3542,'en',NULL),(604,'comment',43,3543,'en',NULL),(605,'comment',44,3544,'en',NULL),(606,'comment',45,3545,'en',NULL),(607,'comment',46,3546,'en',NULL),(608,'comment',47,3547,'en',NULL),(609,'comment',48,3548,'en',NULL),(610,'comment',49,3549,'en',NULL),(611,'comment',50,3550,'en',NULL),(612,'comment',51,3551,'en',NULL),(613,'comment',52,3552,'en',NULL),(614,'comment',53,3553,'en',NULL),(615,'comment',54,3554,'en',NULL),(616,'comment',55,3555,'en',NULL),(617,'comment',2,3502,'en',NULL),(618,'comment',3,3503,'en',NULL),(619,'comment',4,3504,'en',NULL),(620,'comment',5,3505,'en',NULL),(621,'comment',6,3506,'en',NULL),(630,'tax_category',101,3350,'zh-hans','en'),(631,'tax_category',102,3350,'ja','en'),(632,'tax_category',103,3350,'ko','en'),(633,'tax_ourteam-category',22,3556,'en',NULL),(634,'post_page',3304,3132,'zh-hans','en'),(637,'post_page',3318,3132,'ja','en'),(638,'post_page',3321,3132,'ko','en'),(639,'tax_nav_menu',105,3557,'en',NULL),(641,'post_page',3383,3559,'en',NULL),(642,'post_nav_menu_item',3385,3560,'en',NULL),(643,'post_page',3382,3561,'en',NULL),(644,'post_nav_menu_item',3391,3562,'en',NULL),(645,'tax_nav_menu',106,3563,'en',NULL),(646,'post_nav_menu_item',3393,3564,'en',NULL),(650,'post_nav_menu_item',3409,3568,'en',NULL),(653,'post_page',3417,3571,'en',NULL),(654,'post_page',3419,3572,'en',NULL),(655,'post_nav_menu_item',3421,3573,'en',NULL),(656,'post_nav_menu_item',3422,3574,'en',NULL),(658,'post_page',3435,3576,'en',NULL),(659,'post_page',3437,3577,'en',NULL),(660,'post_nav_menu_item',3440,3578,'en',NULL),(661,'post_nav_menu_item',3441,3579,'en',NULL),(662,'post_page',3443,3580,'en',NULL),(663,'post_nav_menu_item',3446,3581,'en',NULL),(664,'post_page',3448,3582,'en',NULL),(666,'post_page',3453,3584,'en',NULL),(667,'post_nav_menu_item',3472,3585,'en',NULL),(668,'post_nav_menu_item',3474,3586,'en',NULL),(669,'post_page',3475,3587,'en',NULL),(670,'post_nav_menu_item',3478,3588,'en',NULL),(671,'post_page',3479,3589,'en',NULL),(672,'post_nav_menu_item',3481,3590,'en',NULL),(673,'post_nav_menu_item',3482,3591,'en',NULL),(674,'tax_post_tag',107,3592,'en',NULL),(675,'tax_post_tag',108,3593,'en',NULL),(676,'tax_post_tag',109,3594,'en',NULL),(678,'tax_post_tag',110,3596,'en',NULL),(680,'post_page',3537,3598,'en',NULL),(681,'post_page',3549,3599,'en',NULL),(682,'post_nav_menu_item',3551,3600,'en',NULL),(683,'post_nav_menu_item',3552,3601,'en',NULL),(684,'post_page',3586,3602,'en',NULL),(685,'post_page',3588,3603,'en',NULL),(686,'tax_post_tag',111,3604,'en',NULL),(687,'post_nav_menu_item',3590,3605,'en',NULL),(688,'post_nav_menu_item',3591,3606,'en',NULL),(689,'post_nav_menu_item',3592,3607,'en',NULL),(690,'post_nav_menu_item',3593,3608,'en',NULL),(691,'post_page',3594,3609,'en',NULL),(692,'post_page',3596,3610,'en',NULL),(693,'post_nav_menu_item',3598,3611,'en',NULL),(694,'post_nav_menu_item',3599,3612,'en',NULL),(695,'post_nav_menu_item',3672,3613,'en',NULL),(696,'post_nav_menu_item',3673,3614,'en',NULL),(697,'post_nav_menu_item',3674,3615,'en',NULL); /*!40000 ALTER TABLE `g516db_icl_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_links` -- DROP TABLE IF EXISTS `g516db_links`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_links` ( `link_id` bigint(20) unsigned NOT NULL auto_increment, `link_url` varchar(255) NOT NULL default '', `link_name` varchar(255) NOT NULL default '', `link_image` varchar(255) NOT NULL default '', `link_target` varchar(25) NOT NULL default '', `link_description` varchar(255) NOT NULL default '', `link_visible` varchar(20) NOT NULL default 'Y', `link_owner` bigint(20) unsigned NOT NULL default '1', `link_rating` int(11) NOT NULL default '0', `link_updated` datetime NOT NULL default '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL default '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL default '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_links` -- LOCK TABLES `g516db_links` WRITE; /*!40000 ALTER TABLE `g516db_links` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_options` -- DROP TABLE IF EXISTS `g516db_options`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_options` ( `option_id` bigint(20) unsigned NOT NULL auto_increment, `option_name` varchar(64) NOT NULL default '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL default 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`) ) ENGINE=MyISAM AUTO_INCREMENT=2602 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_options` -- LOCK TABLES `g516db_options` WRITE; /*!40000 ALTER TABLE `g516db_options` DISABLE KEYS */; INSERT INTO `g516db_options` VALUES (1,'siteurl','http://genewyork.com','yes'),(2,'home','http://genewyork.com','yes'),(3,'blogname','GENY School','yes'),(4,'blogdescription','ESL Language and Private Career School','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','genywebmaster@gmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','49','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','0','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'gzipcompression','0','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:23:{i:0;s:19:\"akismet/akismet.php\";i:1;s:19:\"bbpress/bbpress.php\";i:2;s:43:\"better-font-awesome/better-font-awesome.php\";i:3;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:4;s:24:\"buddypress/bp-loader.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:9:\"hello.php\";i:7;s:27:\"js_composer/js_composer.php\";i:8;s:41:\"media-file-cleaner/media-file-cleaner.php\";i:9;s:21:\"megamenu/megamenu.php\";i:10;s:25:\"option-tree/ot-loader.php\";i:11;s:23:\"revslider/revslider.php\";i:12;s:40:\"sitepress-multilingual-cms/sitepress.php\";i:13;s:23:\"slider-image/slider.php\";i:14;s:23:\"tag-pages/tag-pages.php\";i:15;s:20:\"team-members/tmm.php\";i:16;s:43:\"the-events-calendar/the-events-calendar.php\";i:17;s:33:\"theme-my-login/theme-my-login.php\";i:18;s:17:\"top-10/top-10.php\";i:19;s:25:\"tz-plazart/tz-plazart.php\";i:20;s:41:\"wordpress-importer/wordpress-importer.php\";i:21;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:22;s:23:\"wpml-cms-nav/plugin.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'advanced_edit','0','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:60:\"/Users/oneway/Code/GENY-wp/wp-content/themes/ethic/style.css\";i:1;s:86:\"/Users/oneway/Code/GENY-wp/wp-content/plugins/sitepress-multilingual-cms/sitepress.php\";i:3;s:0:\"\";}','no'),(41,'template','ethic','yes'),(42,'stylesheet','ethic','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','33056','yes'),(50,'uploads_use_yearmonth_folders','1','yes'),(51,'upload_path','','yes'),(52,'blog_public','0','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:1:{s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_text','a:3:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:12:\"Contact Info\";s:4:\"text\";s:144:\"519 8th Avenue 2nd Floor\r\n</br>\r\nNew York , NY 10018\r\n</br>\r\nPhone: (646) 794-8333\r\n</br>\r\nFax: (212) 564-9358\r\n</br>\r\nEmail: info@genewyork.com\";s:6:\"filter\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(81,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(82,'uninstall_plugins','a:3:{s:33:\"theme-my-login/theme-my-login.php\";a:2:{i:0;s:20:\"Theme_My_Login_Admin\";i:1;s:9:\"uninstall\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";s:14:\"__return_false\";s:41:\"media-file-cleaner/media-file-cleaner.php\";s:14:\"wpmc_uninstall\";}','no'),(83,'timezone_string','','yes'),(84,'page_for_posts','0','yes'),(85,'page_on_front','536','yes'),(86,'default_post_format','0','yes'),(87,'link_manager_enabled','0','yes'),(88,'finished_splitting_shared_terms','1','yes'),(89,'initial_db_version','33055','yes'),(90,'g516db_user_roles','a:10:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:108:{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:9:\"add_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:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:10:\"copy_posts\";b:1;s:34:\"wpml_manage_translation_management\";b:1;s:21:\"wpml_manage_languages\";b:1;s:41:\"wpml_manage_theme_and_plugin_localization\";b:1;s:19:\"wpml_manage_support\";b:1;s:36:\"wpml_manage_woocommerce_multilingual\";b:1;s:37:\"wpml_operate_woocommerce_multilingual\";b:1;s:29:\"wpml_manage_media_translation\";b:1;s:22:\"wpml_manage_navigation\";b:1;s:24:\"wpml_manage_sticky_links\";b:1;s:30:\"wpml_manage_string_translation\";b:1;s:33:\"wpml_manage_translation_analytics\";b:1;s:25:\"wpml_manage_wp_menus_sync\";b:1;s:32:\"wpml_manage_taxonomy_translation\";b:1;s:27:\"wpml_manage_troubleshooting\";b:1;s:31:\"wpml_manage_translation_options\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:65:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:25:\"read_private_tribe_events\";b:1;s:17:\"edit_tribe_events\";b:1;s:24:\"edit_others_tribe_events\";b:1;s:25:\"edit_private_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:26:\"delete_others_tribe_events\";b:1;s:27:\"delete_private_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:29:\"read_private_tribe_organizers\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:28:\"edit_others_tribe_organizers\";b:1;s:29:\"edit_private_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:30:\"delete_others_tribe_organizers\";b:1;s:31:\"delete_private_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:25:\"read_private_tribe_venues\";b:1;s:17:\"edit_tribe_venues\";b:1;s:24:\"edit_others_tribe_venues\";b:1;s:25:\"edit_private_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:26:\"delete_others_tribe_venues\";b:1;s:27:\"delete_private_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:25:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:17:\"edit_tribe_events\";b:1;s:27:\"edit_published_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:29:\"delete_published_tribe_events\";b:1;s:20:\"publish_tribe_events\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:31:\"edit_published_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:33:\"delete_published_tribe_organizers\";b:1;s:24:\"publish_tribe_organizers\";b:1;s:17:\"edit_tribe_venues\";b:1;s:27:\"edit_published_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;s:29:\"delete_published_tribe_venues\";b:1;s:20:\"publish_tribe_venues\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:11:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:17:\"edit_tribe_events\";b:1;s:19:\"delete_tribe_events\";b:1;s:21:\"edit_tribe_organizers\";b:1;s:23:\"delete_tribe_organizers\";b:1;s:17:\"edit_tribe_venues\";b:1;s:19:\"delete_tribe_venues\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"bbp_keymaster\";a:2:{s:4:\"name\";s:9:\"Keymaster\";s:12:\"capabilities\";a:29:{s:9:\"keep_gate\";b:1;s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:18:\"edit_others_forums\";b:1;s:13:\"delete_forums\";b:1;s:20:\"delete_others_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:13:\"bbp_spectator\";a:2:{s:4:\"name\";s:9:\"Spectator\";s:12:\"capabilities\";a:1:{s:8:\"spectate\";b:1;}}s:11:\"bbp_blocked\";a:2:{s:4:\"name\";s:7:\"Blocked\";s:12:\"capabilities\";a:28:{s:8:\"spectate\";b:0;s:11:\"participate\";b:0;s:8:\"moderate\";b:0;s:8:\"throttle\";b:0;s:10:\"view_trash\";b:0;s:14:\"publish_forums\";b:0;s:11:\"edit_forums\";b:0;s:18:\"edit_others_forums\";b:0;s:13:\"delete_forums\";b:0;s:20:\"delete_others_forums\";b:0;s:19:\"read_private_forums\";b:0;s:18:\"read_hidden_forums\";b:0;s:14:\"publish_topics\";b:0;s:11:\"edit_topics\";b:0;s:18:\"edit_others_topics\";b:0;s:13:\"delete_topics\";b:0;s:20:\"delete_others_topics\";b:0;s:19:\"read_private_topics\";b:0;s:15:\"publish_replies\";b:0;s:12:\"edit_replies\";b:0;s:19:\"edit_others_replies\";b:0;s:14:\"delete_replies\";b:0;s:21:\"delete_others_replies\";b:0;s:20:\"read_private_replies\";b:0;s:17:\"manage_topic_tags\";b:0;s:15:\"edit_topic_tags\";b:0;s:17:\"delete_topic_tags\";b:0;s:17:\"assign_topic_tags\";b:0;}}s:13:\"bbp_moderator\";a:2:{s:4:\"name\";s:9:\"Moderator\";s:12:\"capabilities\";a:25:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:8:\"moderate\";b:1;s:8:\"throttle\";b:1;s:10:\"view_trash\";b:1;s:14:\"publish_forums\";b:1;s:11:\"edit_forums\";b:1;s:19:\"read_private_forums\";b:1;s:18:\"read_hidden_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:18:\"edit_others_topics\";b:1;s:13:\"delete_topics\";b:1;s:20:\"delete_others_topics\";b:1;s:19:\"read_private_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:19:\"edit_others_replies\";b:1;s:14:\"delete_replies\";b:1;s:21:\"delete_others_replies\";b:1;s:20:\"read_private_replies\";b:1;s:17:\"manage_topic_tags\";b:1;s:15:\"edit_topic_tags\";b:1;s:17:\"delete_topic_tags\";b:1;s:17:\"assign_topic_tags\";b:1;}}s:15:\"bbp_participant\";a:2:{s:4:\"name\";s:11:\"Participant\";s:12:\"capabilities\";a:8:{s:8:\"spectate\";b:1;s:11:\"participate\";b:1;s:19:\"read_private_forums\";b:1;s:14:\"publish_topics\";b:1;s:11:\"edit_topics\";b:1;s:15:\"publish_replies\";b:1;s:12:\"edit_replies\";b:1;s:17:\"assign_topic_tags\";b:1;}}}','yes'),(91,'widget_search','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(92,'widget_recent-posts','a:1:{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:10:{s:19:\"wp_inactive_widgets\";a:0:{}s:23:\"plazart-sidebar-default\";a:1:{i:0;s:21:\"icl_lang_sel_widget-6\";}s:21:\"plazart-sidebar-login\";a:0:{}s:22:\"plazart-sidebar-header\";a:0:{}s:16:\"plazart-footer-1\";a:1:{i:0;s:10:\"nav_menu-2\";}s:16:\"plazart-footer-2\";a:1:{i:0;s:10:\"nav_menu-3\";}s:16:\"plazart-footer-3\";a:2:{i:0;s:10:\"nav_menu-6\";i:1;s:10:\"nav_menu-5\";}s:16:\"plazart-footer-4\";a:1:{i:0;s:6:\"text-2\";}s:9:\"mega-menu\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(98,'cron','a:6:{i:1442346720;a:1:{s:20:\"wp_maybe_auto_update\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1442364004;a:1:{s:24:\"update_wpml_config_index\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1442376044;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:1442376353;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:1442419256;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;}}}s:7:\"version\";i:2;}','yes'),(108,'_transient_random_seed','791c3c789085f00e6ee9fe972518be17','yes'),(129,'theme_mods_twentyfifteen','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1440604864;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'),(130,'current_theme','Ethic WordPress Theme','yes'),(131,'theme_mods_ethic','a:3:{i:0;b:0;s:19:\"ot_set_google_fonts\";a:0:{}s:18:\"nav_menu_locations\";a:5:{s:7:\"primary\";s:2:\"43\";s:9:\"menu-left\";s:3:\"106\";s:11:\"menu-cavans\";N;s:10:\"menu-right\";N;s:15:\"max_mega_menu_1\";s:3:\"105\";}}','yes'),(132,'theme_switched','','yes'),(133,'revslider_checktables','1','yes'),(134,'revslider-static-css','.tp-caption a {\ncolor:#ff7302;\ntext-shadow:none;\n-webkit-transition:all 0.2s ease-out;\n-moz-transition:all 0.2s ease-out;\n-o-transition:all 0.2s ease-out;\n-ms-transition:all 0.2s ease-out;\n}\n\n.tp-caption a:hover {\ncolor:#ffa902;\n}','yes'),(135,'revslider-update-check-short','1442272790','yes'),(138,'bp-deactivated-components','a:0:{}','yes'),(139,'bb-config-location','/Users/oneway/Code/GENY-wp/bb-config.php','yes'),(140,'bp-xprofile-base-group-name','Base','yes'),(141,'bp-xprofile-fullname-field-name','Name','yes'),(142,'bp-blogs-first-install','','yes'),(143,'bp-disable-profile-sync','','yes'),(144,'hide-loggedout-adminbar','','yes'),(145,'bp-disable-avatar-uploads','','yes'),(146,'bp-disable-group-avatar-uploads','','yes'),(147,'bp-disable-account-deletion','','yes'),(148,'bp-disable-blogforum-comments','1','yes'),(149,'_bp_theme_package_id','legacy','yes'),(150,'bp_restrict_group_creation','','yes'),(151,'_bp_enable_akismet','1','yes'),(152,'_bp_enable_heartbeat_refresh','1','yes'),(153,'_bp_force_buddybar','','yes'),(154,'_bp_retain_bp_default','','yes'),(155,'widget_bp_core_login_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(156,'widget_bp_core_members_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(157,'widget_bp_core_whos_online_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(158,'widget_bp_core_recently_active_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(159,'widget_bp_groups_widget','','yes'),(160,'widget_bp_messages_sitewide_notices_widget','','yes'),(165,'wpcf7','a:1:{s:7:\"version\";s:5:\"4.2.2\";}','yes'),(168,'ald_tptn_settings','a:68:{s:14:\"activate_daily\";s:1:\"1\";s:16:\"activate_overall\";s:1:\"1\";s:9:\"cache_fix\";s:1:\"1\";s:14:\"daily_midnight\";s:1:\"1\";s:11:\"daily_range\";s:1:\"1\";s:10:\"hour_range\";s:1:\"0\";s:23:\"uninstall_clean_options\";s:1:\"1\";s:22:\"uninstall_clean_tables\";s:0:\"\";s:11:\"show_credit\";s:0:\"\";s:14:\"add_to_content\";s:1:\"1\";s:14:\"count_on_pages\";s:1:\"1\";s:11:\"add_to_feed\";s:0:\"\";s:11:\"add_to_home\";s:0:\"\";s:24:\"add_to_category_archives\";s:0:\"\";s:19:\"add_to_tag_archives\";s:0:\"\";s:15:\"add_to_archives\";s:0:\"\";s:15:\"count_disp_form\";s:55:\"(Visited %totalcount% times, %dailycount% visits today)\";s:20:\"count_disp_form_zero\";s:13:\"No visits yet\";s:18:\"dynamic_post_count\";s:0:\"\";s:13:\"track_authors\";s:0:\"\";s:12:\"track_admins\";s:1:\"1\";s:13:\"track_editors\";s:1:\"1\";s:11:\"pv_in_admin\";s:1:\"1\";s:21:\"show_count_non_admins\";s:1:\"1\";s:5:\"limit\";s:2:\"10\";s:10:\"post_types\";s:41:\"post=post&page=page&attachment=attachment\";s:18:\"exclude_categories\";s:0:\"\";s:17:\"exclude_cat_slugs\";s:0:\"\";s:16:\"exclude_post_ids\";s:0:\"\";s:5:\"title\";s:22:\"<h3>Popular Posts</h3>\";s:11:\"title_daily\";s:22:\"<h3>Daily Popular</h3>\";s:12:\"blank_output\";s:0:\"\";s:17:\"blank_output_text\";s:16:\"No top posts yet\";s:12:\"show_excerpt\";s:0:\"\";s:14:\"excerpt_length\";s:2:\"10\";s:9:\"show_date\";s:0:\"\";s:11:\"show_author\";s:0:\"\";s:12:\"title_length\";s:2:\"60\";s:15:\"disp_list_count\";s:1:\"1\";s:15:\"link_new_window\";s:0:\"\";s:13:\"link_nofollow\";s:0:\"\";s:19:\"exclude_on_post_ids\";s:0:\"\";s:11:\"before_list\";s:4:\"<ul>\";s:10:\"after_list\";s:5:\"</ul>\";s:16:\"before_list_item\";s:4:\"<li>\";s:15:\"after_list_item\";s:5:\"</li>\";s:13:\"post_thumb_op\";s:9:\"text_only\";s:10:\"thumb_size\";s:14:\"tptn_thumbnail\";s:11:\"thumb_width\";s:3:\"150\";s:12:\"thumb_height\";s:3:\"150\";s:10:\"thumb_crop\";s:1:\"1\";s:10:\"thumb_html\";s:4:\"html\";s:10:\"thumb_meta\";s:10:\"post-image\";s:11:\"scan_images\";s:1:\"1\";s:13:\"thumb_default\";s:12:\"/default.png\";s:18:\"thumb_default_show\";s:1:\"1\";s:10:\"custom_CSS\";s:0:\"\";s:21:\"include_default_style\";s:0:\"\";s:7:\"cron_on\";s:0:\"\";s:9:\"cron_hour\";s:1:\"0\";s:8:\"cron_min\";s:1:\"0\";s:15:\"cron_recurrence\";s:6:\"weekly\";s:5:\"cache\";s:0:\"\";s:10:\"cache_time\";s:4:\"3600\";s:12:\"show_metabox\";s:1:\"1\";s:19:\"show_metabox_admins\";s:0:\"\";s:7:\"how_old\";s:1:\"0\";s:11:\"tptn_styles\";s:8:\"no_style\";}','yes'),(169,'tptn_db_version','5.0','yes'),(170,'pagenavi_options','a:15:{s:10:\"pages_text\";s:36:\"Page %CURRENT_PAGE% of %TOTAL_PAGES%\";s:12:\"current_text\";s:13:\"%PAGE_NUMBER%\";s:9:\"page_text\";s:13:\"%PAGE_NUMBER%\";s:10:\"first_text\";s:13:\"« First\";s:9:\"last_text\";s:12:\"Last »\";s:9:\"prev_text\";s:7:\"«\";s:9:\"next_text\";s:7:\"»\";s:12:\"dotleft_text\";s:3:\"...\";s:13:\"dotright_text\";s:3:\"...\";s:9:\"num_pages\";i:5;s:23:\"num_larger_page_numbers\";i:3;s:28:\"larger_page_numbers_multiple\";i:10;s:11:\"always_show\";b:0;s:16:\"use_pagenavi_css\";b:1;s:5:\"style\";i:1;}','yes'),(173,'recently_activated','a:1:{s:33:\"duplicate-post/duplicate-post.php\";i:1442100180;}','yes'),(175,'ot_hide_cleanup','1','yes'),(176,'tribe_events_calendar_options','a:6:{s:16:\"tribeEnableViews\";a:3:{i:0;s:4:\"list\";i:1;s:5:\"month\";i:2;s:3:\"day\";}s:14:\"schema-version\";s:6:\"3.12.1\";s:27:\"recurring_events_are_hidden\";s:6:\"hidden\";s:21:\"previous_ecp_versions\";a:2:{i:0;s:1:\"0\";i:1;s:6:\"3.11.2\";}s:18:\"latest_ecp_version\";s:6:\"3.12.1\";s:19:\"last-update-message\";s:6:\"3.11.2\";}','yes'),(177,'tribe_last_save_post','1442343361','yes'),(178,'better-font-awesome_options','a:4:{s:7:\"version\";s:6:\"latest\";s:8:\"minified\";i:1;s:18:\"remove_existing_fa\";s:0:\"\";s:18:\"hide_admin_notices\";s:0:\"\";}','yes'),(181,'_transient_timeout_bfa-css','1443196880','no'),(182,'_transient_bfa-css','a:1:{s:5:\"4.4.0\";s:32318:\"/*!\n * Font Awesome 4.4.0 by @davegandy - http://fontawesome.io - @fontawesome\n * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n font-family: \'FontAwesome\';\n src: url(\'../fonts/fontawesome-webfont.eot?v=4.4.0\');\n src: url(\'../fonts/fontawesome-webfont.eot?#iefix&v=4.4.0\') format(\'embedded-opentype\'), url(\'../fonts/fontawesome-webfont.woff2?v=4.4.0\') format(\'woff2\'), url(\'../fonts/fontawesome-webfont.woff?v=4.4.0\') format(\'woff\'), url(\'../fonts/fontawesome-webfont.ttf?v=4.4.0\') format(\'truetype\'), url(\'../fonts/fontawesome-webfont.svg?v=4.4.0#fontawesomeregular\') format(\'svg\');\n font-weight: normal;\n font-style: normal;\n}\n.fa {\n display: inline-block;\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n font-size: 1.33333333em;\n line-height: 0.75em;\n vertical-align: -15%;\n}\n.fa-2x {\n font-size: 2em;\n}\n.fa-3x {\n font-size: 3em;\n}\n.fa-4x {\n font-size: 4em;\n}\n.fa-5x {\n font-size: 5em;\n}\n.fa-fw {\n width: 1.28571429em;\n text-align: center;\n}\n.fa-ul {\n padding-left: 0;\n margin-left: 2.14285714em;\n list-style-type: none;\n}\n.fa-ul > li {\n position: relative;\n}\n.fa-li {\n position: absolute;\n left: -2.14285714em;\n width: 2.14285714em;\n top: 0.14285714em;\n text-align: center;\n}\n.fa-li.fa-lg {\n left: -1.85714286em;\n}\n.fa-border {\n padding: .2em .25em .15em;\n border: solid 0.08em #eeeeee;\n border-radius: .1em;\n}\n.fa-pull-left {\n float: left;\n}\n.fa-pull-right {\n float: right;\n}\n.fa.fa-pull-left {\n margin-right: .3em;\n}\n.fa.fa-pull-right {\n margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n float: right;\n}\n.pull-left {\n float: left;\n}\n.fa.pull-left {\n margin-right: .3em;\n}\n.fa.pull-right {\n margin-left: .3em;\n}\n.fa-spin {\n -webkit-animation: fa-spin 2s infinite linear;\n animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n -webkit-animation: fa-spin 1s infinite steps(8);\n animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n@keyframes fa-spin {\n 0% {\n -webkit-transform: rotate(0deg);\n transform: rotate(0deg);\n }\n 100% {\n -webkit-transform: rotate(359deg);\n transform: rotate(359deg);\n }\n}\n.fa-rotate-90 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n -webkit-transform: rotate(90deg);\n -ms-transform: rotate(90deg);\n transform: rotate(90deg);\n}\n.fa-rotate-180 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n -webkit-transform: rotate(180deg);\n -ms-transform: rotate(180deg);\n transform: rotate(180deg);\n}\n.fa-rotate-270 {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n -webkit-transform: rotate(270deg);\n -ms-transform: rotate(270deg);\n transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n -webkit-transform: scale(-1, 1);\n -ms-transform: scale(-1, 1);\n transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n -webkit-transform: scale(1, -1);\n -ms-transform: scale(1, -1);\n transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n filter: none;\n}\n.fa-stack {\n position: relative;\n display: inline-block;\n width: 2em;\n height: 2em;\n line-height: 2em;\n vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n position: absolute;\n left: 0;\n width: 100%;\n text-align: center;\n}\n.fa-stack-1x {\n line-height: inherit;\n}\n.fa-stack-2x {\n font-size: 2em;\n}\n.fa-inverse {\n color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n readers do not read off random characters that represent icons */\n.fa-glass:before {\n content: \"\\f000\";\n}\n.fa-music:before {\n content: \"\\f001\";\n}\n.fa-search:before {\n content: \"\\f002\";\n}\n.fa-envelope-o:before {\n content: \"\\f003\";\n}\n.fa-heart:before {\n content: \"\\f004\";\n}\n.fa-star:before {\n content: \"\\f005\";\n}\n.fa-star-o:before {\n content: \"\\f006\";\n}\n.fa-user:before {\n content: \"\\f007\";\n}\n.fa-film:before {\n content: \"\\f008\";\n}\n.fa-th-large:before {\n content: \"\\f009\";\n}\n.fa-th:before {\n content: \"\\f00a\";\n}\n.fa-th-list:before {\n content: \"\\f00b\";\n}\n.fa-check:before {\n content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n content: \"\\f00d\";\n}\n.fa-search-plus:before {\n content: \"\\f00e\";\n}\n.fa-search-minus:before {\n content: \"\\f010\";\n}\n.fa-power-off:before {\n content: \"\\f011\";\n}\n.fa-signal:before {\n content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n content: \"\\f013\";\n}\n.fa-trash-o:before {\n content: \"\\f014\";\n}\n.fa-home:before {\n content: \"\\f015\";\n}\n.fa-file-o:before {\n content: \"\\f016\";\n}\n.fa-clock-o:before {\n content: \"\\f017\";\n}\n.fa-road:before {\n content: \"\\f018\";\n}\n.fa-download:before {\n content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n content: \"\\f01b\";\n}\n.fa-inbox:before {\n content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n content: \"\\f01e\";\n}\n.fa-refresh:before {\n content: \"\\f021\";\n}\n.fa-list-alt:before {\n content: \"\\f022\";\n}\n.fa-lock:before {\n content: \"\\f023\";\n}\n.fa-flag:before {\n content: \"\\f024\";\n}\n.fa-headphones:before {\n content: \"\\f025\";\n}\n.fa-volume-off:before {\n content: \"\\f026\";\n}\n.fa-volume-down:before {\n content: \"\\f027\";\n}\n.fa-volume-up:before {\n content: \"\\f028\";\n}\n.fa-qrcode:before {\n content: \"\\f029\";\n}\n.fa-barcode:before {\n content: \"\\f02a\";\n}\n.fa-tag:before {\n content: \"\\f02b\";\n}\n.fa-tags:before {\n content: \"\\f02c\";\n}\n.fa-book:before {\n content: \"\\f02d\";\n}\n.fa-bookmark:before {\n content: \"\\f02e\";\n}\n.fa-print:before {\n content: \"\\f02f\";\n}\n.fa-camera:before {\n content: \"\\f030\";\n}\n.fa-font:before {\n content: \"\\f031\";\n}\n.fa-bold:before {\n content: \"\\f032\";\n}\n.fa-italic:before {\n content: \"\\f033\";\n}\n.fa-text-height:before {\n content: \"\\f034\";\n}\n.fa-text-width:before {\n content: \"\\f035\";\n}\n.fa-align-left:before {\n content: \"\\f036\";\n}\n.fa-align-center:before {\n content: \"\\f037\";\n}\n.fa-align-right:before {\n content: \"\\f038\";\n}\n.fa-align-justify:before {\n content: \"\\f039\";\n}\n.fa-list:before {\n content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n content: \"\\f03b\";\n}\n.fa-indent:before {\n content: \"\\f03c\";\n}\n.fa-video-camera:before {\n content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n content: \"\\f03e\";\n}\n.fa-pencil:before {\n content: \"\\f040\";\n}\n.fa-map-marker:before {\n content: \"\\f041\";\n}\n.fa-adjust:before {\n content: \"\\f042\";\n}\n.fa-tint:before {\n content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n content: \"\\f044\";\n}\n.fa-share-square-o:before {\n content: \"\\f045\";\n}\n.fa-check-square-o:before {\n content: \"\\f046\";\n}\n.fa-arrows:before {\n content: \"\\f047\";\n}\n.fa-step-backward:before {\n content: \"\\f048\";\n}\n.fa-fast-backward:before {\n content: \"\\f049\";\n}\n.fa-backward:before {\n content: \"\\f04a\";\n}\n.fa-play:before {\n content: \"\\f04b\";\n}\n.fa-pause:before {\n content: \"\\f04c\";\n}\n.fa-stop:before {\n content: \"\\f04d\";\n}\n.fa-forward:before {\n content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n content: \"\\f050\";\n}\n.fa-step-forward:before {\n content: \"\\f051\";\n}\n.fa-eject:before {\n content: \"\\f052\";\n}\n.fa-chevron-left:before {\n content: \"\\f053\";\n}\n.fa-chevron-right:before {\n content: \"\\f054\";\n}\n.fa-plus-circle:before {\n content: \"\\f055\";\n}\n.fa-minus-circle:before {\n content: \"\\f056\";\n}\n.fa-times-circle:before {\n content: \"\\f057\";\n}\n.fa-check-circle:before {\n content: \"\\f058\";\n}\n.fa-question-circle:before {\n content: \"\\f059\";\n}\n.fa-info-circle:before {\n content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n content: \"\\f05d\";\n}\n.fa-ban:before {\n content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n content: \"\\f060\";\n}\n.fa-arrow-right:before {\n content: \"\\f061\";\n}\n.fa-arrow-up:before {\n content: \"\\f062\";\n}\n.fa-arrow-down:before {\n content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n content: \"\\f064\";\n}\n.fa-expand:before {\n content: \"\\f065\";\n}\n.fa-compress:before {\n content: \"\\f066\";\n}\n.fa-plus:before {\n content: \"\\f067\";\n}\n.fa-minus:before {\n content: \"\\f068\";\n}\n.fa-asterisk:before {\n content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n content: \"\\f06a\";\n}\n.fa-gift:before {\n content: \"\\f06b\";\n}\n.fa-leaf:before {\n content: \"\\f06c\";\n}\n.fa-fire:before {\n content: \"\\f06d\";\n}\n.fa-eye:before {\n content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n content: \"\\f071\";\n}\n.fa-plane:before {\n content: \"\\f072\";\n}\n.fa-calendar:before {\n content: \"\\f073\";\n}\n.fa-random:before {\n content: \"\\f074\";\n}\n.fa-comment:before {\n content: \"\\f075\";\n}\n.fa-magnet:before {\n content: \"\\f076\";\n}\n.fa-chevron-up:before {\n content: \"\\f077\";\n}\n.fa-chevron-down:before {\n content: \"\\f078\";\n}\n.fa-retweet:before {\n content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n content: \"\\f07a\";\n}\n.fa-folder:before {\n content: \"\\f07b\";\n}\n.fa-folder-open:before {\n content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n content: \"\\f080\";\n}\n.fa-twitter-square:before {\n content: \"\\f081\";\n}\n.fa-facebook-square:before {\n content: \"\\f082\";\n}\n.fa-camera-retro:before {\n content: \"\\f083\";\n}\n.fa-key:before {\n content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n content: \"\\f085\";\n}\n.fa-comments:before {\n content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n content: \"\\f088\";\n}\n.fa-star-half:before {\n content: \"\\f089\";\n}\n.fa-heart-o:before {\n content: \"\\f08a\";\n}\n.fa-sign-out:before {\n content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n content: \"\\f08d\";\n}\n.fa-external-link:before {\n content: \"\\f08e\";\n}\n.fa-sign-in:before {\n content: \"\\f090\";\n}\n.fa-trophy:before {\n content: \"\\f091\";\n}\n.fa-github-square:before {\n content: \"\\f092\";\n}\n.fa-upload:before {\n content: \"\\f093\";\n}\n.fa-lemon-o:before {\n content: \"\\f094\";\n}\n.fa-phone:before {\n content: \"\\f095\";\n}\n.fa-square-o:before {\n content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n content: \"\\f097\";\n}\n.fa-phone-square:before {\n content: \"\\f098\";\n}\n.fa-twitter:before {\n content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n content: \"\\f09a\";\n}\n.fa-github:before {\n content: \"\\f09b\";\n}\n.fa-unlock:before {\n content: \"\\f09c\";\n}\n.fa-credit-card:before {\n content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n content: \"\\f0a1\";\n}\n.fa-bell:before {\n content: \"\\f0f3\";\n}\n.fa-certificate:before {\n content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n content: \"\\f0ab\";\n}\n.fa-globe:before {\n content: \"\\f0ac\";\n}\n.fa-wrench:before {\n content: \"\\f0ad\";\n}\n.fa-tasks:before {\n content: \"\\f0ae\";\n}\n.fa-filter:before {\n content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n content: \"\\f0c1\";\n}\n.fa-cloud:before {\n content: \"\\f0c2\";\n}\n.fa-flask:before {\n content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n content: \"\\f0c7\";\n}\n.fa-square:before {\n content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n content: \"\\f0cc\";\n}\n.fa-underline:before {\n content: \"\\f0cd\";\n}\n.fa-table:before {\n content: \"\\f0ce\";\n}\n.fa-magic:before {\n content: \"\\f0d0\";\n}\n.fa-truck:before {\n content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n content: \"\\f0d5\";\n}\n.fa-money:before {\n content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n content: \"\\f0da\";\n}\n.fa-columns:before {\n content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n content: \"\\f0de\";\n}\n.fa-envelope:before {\n content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n content: \"\\f0eb\";\n}\n.fa-exchange:before {\n content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n content: \"\\f0ee\";\n}\n.fa-user-md:before {\n content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n content: \"\\f0a2\";\n}\n.fa-coffee:before {\n content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n content: \"\\f0f6\";\n}\n.fa-building-o:before {\n content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n content: \"\\f0f9\";\n}\n.fa-medkit:before {\n content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n content: \"\\f0fb\";\n}\n.fa-beer:before {\n content: \"\\f0fc\";\n}\n.fa-h-square:before {\n content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n content: \"\\f103\";\n}\n.fa-angle-left:before {\n content: \"\\f104\";\n}\n.fa-angle-right:before {\n content: \"\\f105\";\n}\n.fa-angle-up:before {\n content: \"\\f106\";\n}\n.fa-angle-down:before {\n content: \"\\f107\";\n}\n.fa-desktop:before {\n content: \"\\f108\";\n}\n.fa-laptop:before {\n content: \"\\f109\";\n}\n.fa-tablet:before {\n content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n content: \"\\f10b\";\n}\n.fa-circle-o:before {\n content: \"\\f10c\";\n}\n.fa-quote-left:before {\n content: \"\\f10d\";\n}\n.fa-quote-right:before {\n content: \"\\f10e\";\n}\n.fa-spinner:before {\n content: \"\\f110\";\n}\n.fa-circle:before {\n content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n content: \"\\f112\";\n}\n.fa-github-alt:before {\n content: \"\\f113\";\n}\n.fa-folder-o:before {\n content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n content: \"\\f115\";\n}\n.fa-smile-o:before {\n content: \"\\f118\";\n}\n.fa-frown-o:before {\n content: \"\\f119\";\n}\n.fa-meh-o:before {\n content: \"\\f11a\";\n}\n.fa-gamepad:before {\n content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n content: \"\\f11c\";\n}\n.fa-flag-o:before {\n content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n content: \"\\f11e\";\n}\n.fa-terminal:before {\n content: \"\\f120\";\n}\n.fa-code:before {\n content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n content: \"\\f123\";\n}\n.fa-location-arrow:before {\n content: \"\\f124\";\n}\n.fa-crop:before {\n content: \"\\f125\";\n}\n.fa-code-fork:before {\n content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n content: \"\\f127\";\n}\n.fa-question:before {\n content: \"\\f128\";\n}\n.fa-info:before {\n content: \"\\f129\";\n}\n.fa-exclamation:before {\n content: \"\\f12a\";\n}\n.fa-superscript:before {\n content: \"\\f12b\";\n}\n.fa-subscript:before {\n content: \"\\f12c\";\n}\n.fa-eraser:before {\n content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n content: \"\\f12e\";\n}\n.fa-microphone:before {\n content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n content: \"\\f131\";\n}\n.fa-shield:before {\n content: \"\\f132\";\n}\n.fa-calendar-o:before {\n content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n content: \"\\f134\";\n}\n.fa-rocket:before {\n content: \"\\f135\";\n}\n.fa-maxcdn:before {\n content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n content: \"\\f13a\";\n}\n.fa-html5:before {\n content: \"\\f13b\";\n}\n.fa-css3:before {\n content: \"\\f13c\";\n}\n.fa-anchor:before {\n content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n content: \"\\f13e\";\n}\n.fa-bullseye:before {\n content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n content: \"\\f142\";\n}\n.fa-rss-square:before {\n content: \"\\f143\";\n}\n.fa-play-circle:before {\n content: \"\\f144\";\n}\n.fa-ticket:before {\n content: \"\\f145\";\n}\n.fa-minus-square:before {\n content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n content: \"\\f147\";\n}\n.fa-level-up:before {\n content: \"\\f148\";\n}\n.fa-level-down:before {\n content: \"\\f149\";\n}\n.fa-check-square:before {\n content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n content: \"\\f14c\";\n}\n.fa-share-square:before {\n content: \"\\f14d\";\n}\n.fa-compass:before {\n content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n content: \"\\f153\";\n}\n.fa-gbp:before {\n content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n content: \"\\f15a\";\n}\n.fa-file:before {\n content: \"\\f15b\";\n}\n.fa-file-text:before {\n content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n content: \"\\f165\";\n}\n.fa-youtube-square:before {\n content: \"\\f166\";\n}\n.fa-youtube:before {\n content: \"\\f167\";\n}\n.fa-xing:before {\n content: \"\\f168\";\n}\n.fa-xing-square:before {\n content: \"\\f169\";\n}\n.fa-youtube-play:before {\n content: \"\\f16a\";\n}\n.fa-dropbox:before {\n content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n content: \"\\f16c\";\n}\n.fa-instagram:before {\n content: \"\\f16d\";\n}\n.fa-flickr:before {\n content: \"\\f16e\";\n}\n.fa-adn:before {\n content: \"\\f170\";\n}\n.fa-bitbucket:before {\n content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n content: \"\\f172\";\n}\n.fa-tumblr:before {\n content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n content: \"\\f178\";\n}\n.fa-apple:before {\n content: \"\\f179\";\n}\n.fa-windows:before {\n content: \"\\f17a\";\n}\n.fa-android:before {\n content: \"\\f17b\";\n}\n.fa-linux:before {\n content: \"\\f17c\";\n}\n.fa-dribbble:before {\n content: \"\\f17d\";\n}\n.fa-skype:before {\n content: \"\\f17e\";\n}\n.fa-foursquare:before {\n content: \"\\f180\";\n}\n.fa-trello:before {\n content: \"\\f181\";\n}\n.fa-female:before {\n content: \"\\f182\";\n}\n.fa-male:before {\n content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n content: \"\\f184\";\n}\n.fa-sun-o:before {\n content: \"\\f185\";\n}\n.fa-moon-o:before {\n content: \"\\f186\";\n}\n.fa-archive:before {\n content: \"\\f187\";\n}\n.fa-bug:before {\n content: \"\\f188\";\n}\n.fa-vk:before {\n content: \"\\f189\";\n}\n.fa-weibo:before {\n content: \"\\f18a\";\n}\n.fa-renren:before {\n content: \"\\f18b\";\n}\n.fa-pagelines:before {\n content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n content: \"\\f192\";\n}\n.fa-wheelchair:before {\n content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n content: \"\\f197\";\n}\n.fa-slack:before {\n content: \"\\f198\";\n}\n.fa-envelope-square:before {\n content: \"\\f199\";\n}\n.fa-wordpress:before {\n content: \"\\f19a\";\n}\n.fa-openid:before {\n content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n content: \"\\f19d\";\n}\n.fa-yahoo:before {\n content: \"\\f19e\";\n}\n.fa-google:before {\n content: \"\\f1a0\";\n}\n.fa-reddit:before {\n content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n content: \"\\f1a4\";\n}\n.fa-delicious:before {\n content: \"\\f1a5\";\n}\n.fa-digg:before {\n content: \"\\f1a6\";\n}\n.fa-pied-piper:before {\n content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n content: \"\\f1a8\";\n}\n.fa-drupal:before {\n content: \"\\f1a9\";\n}\n.fa-joomla:before {\n content: \"\\f1aa\";\n}\n.fa-language:before {\n content: \"\\f1ab\";\n}\n.fa-fax:before {\n content: \"\\f1ac\";\n}\n.fa-building:before {\n content: \"\\f1ad\";\n}\n.fa-child:before {\n content: \"\\f1ae\";\n}\n.fa-paw:before {\n content: \"\\f1b0\";\n}\n.fa-spoon:before {\n content: \"\\f1b1\";\n}\n.fa-cube:before {\n content: \"\\f1b2\";\n}\n.fa-cubes:before {\n content: \"\\f1b3\";\n}\n.fa-behance:before {\n content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n content: \"\\f1b5\";\n}\n.fa-steam:before {\n content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n content: \"\\f1b7\";\n}\n.fa-recycle:before {\n content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n content: \"\\f1ba\";\n}\n.fa-tree:before {\n content: \"\\f1bb\";\n}\n.fa-spotify:before {\n content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n content: \"\\f1be\";\n}\n.fa-database:before {\n content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n content: \"\\f1c9\";\n}\n.fa-vine:before {\n content: \"\\f1ca\";\n}\n.fa-codepen:before {\n content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-rebel:before {\n content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n content: \"\\f1d1\";\n}\n.fa-git-square:before {\n content: \"\\f1d2\";\n}\n.fa-git:before {\n content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n content: \"\\f1d5\";\n}\n.fa-qq:before {\n content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n content: \"\\f1d9\";\n}\n.fa-history:before {\n content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n content: \"\\f1db\";\n}\n.fa-header:before {\n content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n content: \"\\f1dd\";\n}\n.fa-sliders:before {\n content: \"\\f1de\";\n}\n.fa-share-alt:before {\n content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n content: \"\\f1e1\";\n}\n.fa-bomb:before {\n content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n content: \"\\f1e3\";\n}\n.fa-tty:before {\n content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n content: \"\\f1e5\";\n}\n.fa-plug:before {\n content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n content: \"\\f1e7\";\n}\n.fa-twitch:before {\n content: \"\\f1e8\";\n}\n.fa-yelp:before {\n content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n content: \"\\f1ea\";\n}\n.fa-wifi:before {\n content: \"\\f1eb\";\n}\n.fa-calculator:before {\n content: \"\\f1ec\";\n}\n.fa-paypal:before {\n content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n content: \"\\f1f7\";\n}\n.fa-trash:before {\n content: \"\\f1f8\";\n}\n.fa-copyright:before {\n content: \"\\f1f9\";\n}\n.fa-at:before {\n content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n content: \"\\f200\";\n}\n.fa-line-chart:before {\n content: \"\\f201\";\n}\n.fa-lastfm:before {\n content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n content: \"\\f203\";\n}\n.fa-toggle-off:before {\n content: \"\\f204\";\n}\n.fa-toggle-on:before {\n content: \"\\f205\";\n}\n.fa-bicycle:before {\n content: \"\\f206\";\n}\n.fa-bus:before {\n content: \"\\f207\";\n}\n.fa-ioxhost:before {\n content: \"\\f208\";\n}\n.fa-angellist:before {\n content: \"\\f209\";\n}\n.fa-cc:before {\n content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n content: \"\\f20b\";\n}\n.fa-meanpath:before {\n content: \"\\f20c\";\n}\n.fa-buysellads:before {\n content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n content: \"\\f20e\";\n}\n.fa-dashcube:before {\n content: \"\\f210\";\n}\n.fa-forumbee:before {\n content: \"\\f211\";\n}\n.fa-leanpub:before {\n content: \"\\f212\";\n}\n.fa-sellsy:before {\n content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n content: \"\\f215\";\n}\n.fa-skyatlas:before {\n content: \"\\f216\";\n}\n.fa-cart-plus:before {\n content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n content: \"\\f218\";\n}\n.fa-diamond:before {\n content: \"\\f219\";\n}\n.fa-ship:before {\n content: \"\\f21a\";\n}\n.fa-user-secret:before {\n content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n content: \"\\f21c\";\n}\n.fa-street-view:before {\n content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n content: \"\\f21e\";\n}\n.fa-venus:before {\n content: \"\\f221\";\n}\n.fa-mars:before {\n content: \"\\f222\";\n}\n.fa-mercury:before {\n content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n content: \"\\f225\";\n}\n.fa-venus-double:before {\n content: \"\\f226\";\n}\n.fa-mars-double:before {\n content: \"\\f227\";\n}\n.fa-venus-mars:before {\n content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n content: \"\\f22b\";\n}\n.fa-neuter:before {\n content: \"\\f22c\";\n}\n.fa-genderless:before {\n content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n content: \"\\f231\";\n}\n.fa-whatsapp:before {\n content: \"\\f232\";\n}\n.fa-server:before {\n content: \"\\f233\";\n}\n.fa-user-plus:before {\n content: \"\\f234\";\n}\n.fa-user-times:before {\n content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n content: \"\\f236\";\n}\n.fa-viacoin:before {\n content: \"\\f237\";\n}\n.fa-train:before {\n content: \"\\f238\";\n}\n.fa-subway:before {\n content: \"\\f239\";\n}\n.fa-medium:before {\n content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n content: \"\\f23c\";\n}\n.fa-opencart:before {\n content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery-full:before {\n content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n content: \"\\f245\";\n}\n.fa-i-cursor:before {\n content: \"\\f246\";\n}\n.fa-object-group:before {\n content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n content: \"\\f248\";\n}\n.fa-sticky-note:before {\n content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n content: \"\\f24c\";\n}\n.fa-clone:before {\n content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n content: \"\\f253\";\n}\n.fa-hourglass:before {\n content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n content: \"\\f25b\";\n}\n.fa-trademark:before {\n content: \"\\f25c\";\n}\n.fa-registered:before {\n content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n content: \"\\f25e\";\n}\n.fa-gg:before {\n content: \"\\f260\";\n}\n.fa-gg-circle:before {\n content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n content: \"\\f264\";\n}\n.fa-get-pocket:before {\n content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n content: \"\\f266\";\n}\n.fa-safari:before {\n content: \"\\f267\";\n}\n.fa-chrome:before {\n content: \"\\f268\";\n}\n.fa-firefox:before {\n content: \"\\f269\";\n}\n.fa-opera:before {\n content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n content: \"\\f26c\";\n}\n.fa-contao:before {\n content: \"\\f26d\";\n}\n.fa-500px:before {\n content: \"\\f26e\";\n}\n.fa-amazon:before {\n content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n content: \"\\f274\";\n}\n.fa-industry:before {\n content: \"\\f275\";\n}\n.fa-map-pin:before {\n content: \"\\f276\";\n}\n.fa-map-signs:before {\n content: \"\\f277\";\n}\n.fa-map-o:before {\n content: \"\\f278\";\n}\n.fa-map:before {\n content: \"\\f279\";\n}\n.fa-commenting:before {\n content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n content: \"\\f27b\";\n}\n.fa-houzz:before {\n content: \"\\f27c\";\n}\n.fa-vimeo:before {\n content: \"\\f27d\";\n}\n.fa-black-tie:before {\n content: \"\\f27e\";\n}\n.fa-fonticons:before {\n content: \"\\f280\";\n}\n\";}','no'),(183,'vc_version','4.6.1','yes'),(184,'registration','0','yes'),(185,'tmm_is_updated_yn9090','old_data_recovered','yes'),(187,'option_tree_settings','a:3:{s:15:\"contextual_help\";a:2:{s:7:\"content\";a:1:{i:0;a:3:{s:2:\"id\";s:12:\"general_help\";s:5:\"title\";s:7:\"General\";s:7:\"content\";s:30:\"<p>Help content goes here!</p>\";}}s:7:\"sidebar\";s:33:\"<p>Sidebar content goes here!</p>\";}s:8:\"sections\";a:15:{i:0;a:2:{s:2:\"id\";s:4:\"logo\";s:5:\"title\";s:13:\"Header & Logo\";}i:1;a:2:{s:2:\"id\";s:12:\"footeroption\";s:5:\"title\";s:14:\"Footer Options\";}i:2;a:2:{s:2:\"id\";s:9:\"copyright\";s:5:\"title\";s:9:\"Copyright\";}i:3;a:2:{s:2:\"id\";s:3:\"404\";s:5:\"title\";s:8:\"404 Page\";}i:4;a:2:{s:2:\"id\";s:6:\"TzSyle\";s:5:\"title\";s:11:\"Font Option\";}i:5;a:2:{s:2:\"id\";s:6:\"TZBody\";s:5:\"title\";s:10:\"Body Style\";}i:6;a:2:{s:2:\"id\";s:12:\"TzFontHeader\";s:5:\"title\";s:12:\"Header Style\";}i:7;a:2:{s:2:\"id\";s:10:\"TzFontMenu\";s:5:\"title\";s:10:\"Menu Style\";}i:8;a:2:{s:2:\"id\";s:12:\"TzFontCustom\";s:5:\"title\";s:12:\"Custom Style\";}i:9;a:2:{s:2:\"id\";s:11:\"TzCustomCss\";s:5:\"title\";s:10:\"Custom CSS\";}i:10;a:2:{s:2:\"id\";s:12:\"TZBackground\";s:5:\"title\";s:16:\"Background style\";}i:11;a:2:{s:2:\"id\";s:12:\"TZThemeColor\";s:5:\"title\";s:11:\"Theme Color\";}i:12;a:2:{s:2:\"id\";s:15:\"icon_breadcrumb\";s:5:\"title\";s:15:\"Icon Breadcrumb\";}i:13;a:2:{s:2:\"id\";s:12:\"mode_loading\";s:5:\"title\";s:12:\"Mode Loading\";}i:14;a:2:{s:2:\"id\";s:11:\"blog_option\";s:5:\"title\";s:15:\"Category Option\";}}s:8:\"settings\";a:64:{i:0;a:7:{s:5:\"label\";s:16:\"Category Option.\";s:2:\"id\";s:27:\"plazart_blog_option_sidebar\";s:4:\"desc\";s:22:\"Config option sidebar.\";s:7:\"section\";s:11:\"blog_option\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:3:{i:0;a:2:{s:5:\"value\";i:0;s:5:\"label\";s:4:\"Hide\";}i:1;a:2:{s:5:\"value\";i:1;s:5:\"label\";s:17:\"Show sidebar left\";}i:2;a:2:{s:5:\"value\";i:2;s:5:\"label\";s:18:\"Show sidebar right\";}}}i:1;a:7:{s:5:\"label\";s:13:\"Header Style.\";s:2:\"id\";s:20:\"plazart_header_style\";s:4:\"desc\";s:40:\"Select header style default for website.\";s:7:\"section\";s:4:\"logo\";s:3:\"std\";s:13:\"header_style2\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:7:{i:0;a:2:{s:5:\"value\";s:13:\"header_style1\";s:5:\"label\";s:9:\"Header 01\";}i:1;a:2:{s:5:\"value\";s:13:\"header_style2\";s:5:\"label\";s:9:\"Header 02\";}i:2;a:2:{s:5:\"value\";s:13:\"header_style3\";s:5:\"label\";s:9:\"Header 03\";}i:3;a:2:{s:5:\"value\";s:13:\"header_style4\";s:5:\"label\";s:9:\"Header 04\";}i:4;a:2:{s:5:\"value\";s:13:\"header_style5\";s:5:\"label\";s:9:\"Header 05\";}i:5;a:2:{s:5:\"value\";s:13:\"header_style6\";s:5:\"label\";s:9:\"Header 06\";}i:6;a:2:{s:5:\"value\";s:13:\"header_style7\";s:5:\"label\";s:9:\"Header 07\";}}}i:2;a:11:{s:2:\"id\";s:16:\"plazart_logotype\";s:5:\"label\";s:9:\"Logo Type\";s:4:\"desc\";s:34:\"select type for logo text or image\";s:3:\"std\";s:1:\"1\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:4:\"logo\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:10:\"Logo image\";}i:1;a:2:{s:5:\"value\";s:1:\"0\";s:5:\"label\";s:9:\"Logo text\";}}}i:3;a:6:{s:2:\"id\";s:16:\"plazart_logoText\";s:5:\"label\";s:9:\"Logo Text\";s:4:\"desc\";s:26:\"logo name for your website\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:4:\"logo\";}i:4;a:6:{s:2:\"id\";s:21:\"plazart_logoTextcolor\";s:5:\"label\";s:10:\"Color logo\";s:4:\"desc\";s:15:\"logo text color\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:4:\"logo\";}i:5;a:6:{s:2:\"id\";s:12:\"plazart_logo\";s:5:\"label\";s:11:\"Upload Logo\";s:4:\"desc\";s:38:\"Logo using for home page and page shop\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:4:\"logo\";}i:6;a:11:{s:2:\"id\";s:21:\"plazart_favicon_onoff\";s:5:\"label\";s:14:\"Enable Favicon\";s:4:\"desc\";s:20:\"Show or hide Favicon\";s:3:\"std\";s:2:\"no\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:4:\"logo\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:2:{i:0;a:3:{s:5:\"value\";s:3:\"yes\";s:5:\"label\";s:3:\"Yes\";s:3:\"src\";s:0:\"\";}i:1;a:3:{s:5:\"value\";s:2:\"no\";s:5:\"label\";s:2:\"No\";s:3:\"src\";s:0:\"\";}}}i:7;a:6:{s:2:\"id\";s:15:\"plazart_favicon\";s:5:\"label\";s:19:\"Upload Favicon Icon\";s:4:\"desc\";s:43:\"Please choose an image to use for favicon.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:4:\"logo\";}i:8;a:6:{s:2:\"id\";s:25:\"plazart_logo_footer_image\";s:5:\"label\";s:17:\"Footer Image Logo\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:12:\"footeroption\";}i:9;a:7:{s:5:\"label\";s:25:\"Number of Footer Columns.\";s:2:\"id\";s:22:\"plazart_footer_columns\";s:4:\"desc\";s:54:\"Select the number of columns to display in the footer.\";s:7:\"section\";s:12:\"footeroption\";s:3:\"std\";s:1:\"4\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:4:{i:0;a:2:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:1:\"4\";}i:1;a:2:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:1:\"3\";}i:2;a:2:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:1:\"2\";}i:3;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:1:\"1\";}}}i:10;a:6:{s:2:\"id\";s:31:\"plazart_image_decoration_footer\";s:5:\"label\";s:16:\"Image Decoration\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:12:\"footeroption\";}i:11;a:10:{s:2:\"id\";s:25:\"plazartfooter_description\";s:5:\"label\";s:14:\"Footer Widgets\";s:4:\"desc\";s:13:\"Config footer\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:12:\"footeroption\";s:4:\"rows\";s:1:\"5\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:12;a:8:{s:2:\"id\";s:19:\"plazartfooter_image\";s:5:\"label\";s:0:\"\";s:4:\"desc\";s:0:\"\";s:3:\"sdt\";s:0:\"\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:12:\"footeroption\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:4:{i:0;a:3:{s:5:\"value\";s:7:\"footer1\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/footer1.jpg\";}i:1;a:3:{s:5:\"value\";s:7:\"footer2\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/footer2.jpg\";}i:2;a:3:{s:5:\"value\";s:7:\"footer3\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/footer3.jpg\";}i:3;a:3:{s:5:\"value\";s:7:\"footer4\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/footer4.jpg\";}}}i:13;a:7:{s:2:\"id\";s:19:\"plazartfooterwidth1\";s:5:\"label\";s:14:\"Footer width 1\";s:4:\"desc\";s:23:\"config width for footer\";s:7:\"section\";s:12:\"footeroption\";s:3:\"std\";s:1:\"3\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:12:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:1:\"1\";}i:1;a:2:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:1:\"2\";}i:2;a:2:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:1:\"3\";}i:3;a:2:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:1:\"4\";}i:4;a:2:{s:5:\"value\";s:1:\"5\";s:5:\"label\";s:1:\"5\";}i:5;a:2:{s:5:\"value\";s:1:\"6\";s:5:\"label\";s:1:\"6\";}i:6;a:2:{s:5:\"value\";s:1:\"7\";s:5:\"label\";s:1:\"7\";}i:7;a:2:{s:5:\"value\";s:1:\"8\";s:5:\"label\";s:1:\"8\";}i:8;a:2:{s:5:\"value\";s:1:\"9\";s:5:\"label\";s:1:\"9\";}i:9;a:2:{s:5:\"value\";s:2:\"10\";s:5:\"label\";s:2:\"10\";}i:10;a:2:{s:5:\"value\";s:2:\"11\";s:5:\"label\";s:2:\"11\";}i:11;a:2:{s:5:\"value\";s:2:\"12\";s:5:\"label\";s:2:\"12\";}}}i:14;a:7:{s:2:\"id\";s:19:\"plazartfooterwidth2\";s:5:\"label\";s:14:\"Footer width 2\";s:4:\"desc\";s:23:\"config width for footer\";s:7:\"section\";s:12:\"footeroption\";s:3:\"std\";s:1:\"3\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:12:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:1:\"1\";}i:1;a:2:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:1:\"2\";}i:2;a:2:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:1:\"3\";}i:3;a:2:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:1:\"4\";}i:4;a:2:{s:5:\"value\";s:1:\"5\";s:5:\"label\";s:1:\"5\";}i:5;a:2:{s:5:\"value\";s:1:\"6\";s:5:\"label\";s:1:\"6\";}i:6;a:2:{s:5:\"value\";s:1:\"7\";s:5:\"label\";s:1:\"7\";}i:7;a:2:{s:5:\"value\";s:1:\"8\";s:5:\"label\";s:1:\"8\";}i:8;a:2:{s:5:\"value\";s:1:\"9\";s:5:\"label\";s:1:\"9\";}i:9;a:2:{s:5:\"value\";s:2:\"10\";s:5:\"label\";s:2:\"10\";}i:10;a:2:{s:5:\"value\";s:2:\"11\";s:5:\"label\";s:2:\"11\";}i:11;a:2:{s:5:\"value\";s:2:\"12\";s:5:\"label\";s:2:\"12\";}}}i:15;a:7:{s:2:\"id\";s:19:\"plazartfooterwidth3\";s:5:\"label\";s:14:\"Footer width 3\";s:4:\"desc\";s:23:\"config width for footer\";s:7:\"section\";s:12:\"footeroption\";s:3:\"std\";s:1:\"3\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:12:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:1:\"1\";}i:1;a:2:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:1:\"2\";}i:2;a:2:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:1:\"3\";}i:3;a:2:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:1:\"4\";}i:4;a:2:{s:5:\"value\";s:1:\"5\";s:5:\"label\";s:1:\"5\";}i:5;a:2:{s:5:\"value\";s:1:\"6\";s:5:\"label\";s:1:\"6\";}i:6;a:2:{s:5:\"value\";s:1:\"7\";s:5:\"label\";s:1:\"7\";}i:7;a:2:{s:5:\"value\";s:1:\"8\";s:5:\"label\";s:1:\"8\";}i:8;a:2:{s:5:\"value\";s:1:\"9\";s:5:\"label\";s:1:\"9\";}i:9;a:2:{s:5:\"value\";s:2:\"10\";s:5:\"label\";s:2:\"10\";}i:10;a:2:{s:5:\"value\";s:2:\"11\";s:5:\"label\";s:2:\"11\";}i:11;a:2:{s:5:\"value\";s:2:\"12\";s:5:\"label\";s:2:\"12\";}}}i:16;a:7:{s:2:\"id\";s:19:\"plazartfooterwidth4\";s:5:\"label\";s:14:\"Footer width 4\";s:4:\"desc\";s:23:\"config width for footer\";s:7:\"section\";s:12:\"footeroption\";s:3:\"std\";s:1:\"3\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:12:{i:0;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:1:\"1\";}i:1;a:2:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:1:\"2\";}i:2;a:2:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:1:\"3\";}i:3;a:2:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:1:\"4\";}i:4;a:2:{s:5:\"value\";s:1:\"5\";s:5:\"label\";s:1:\"5\";}i:5;a:2:{s:5:\"value\";s:1:\"6\";s:5:\"label\";s:1:\"6\";}i:6;a:2:{s:5:\"value\";s:1:\"7\";s:5:\"label\";s:1:\"7\";}i:7;a:2:{s:5:\"value\";s:1:\"8\";s:5:\"label\";s:1:\"8\";}i:8;a:2:{s:5:\"value\";s:1:\"9\";s:5:\"label\";s:1:\"9\";}i:9;a:2:{s:5:\"value\";s:2:\"10\";s:5:\"label\";s:2:\"10\";}i:10;a:2:{s:5:\"value\";s:2:\"11\";s:5:\"label\";s:2:\"11\";}i:11;a:2:{s:5:\"value\";s:2:\"12\";s:5:\"label\";s:2:\"12\";}}}i:17;a:10:{s:2:\"id\";s:17:\"plazart_copyright\";s:5:\"label\";s:9:\"Copyright\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:25:\"Copyright © Templaza\";s:4:\"type\";s:8:\"textarea\";s:7:\"section\";s:9:\"copyright\";s:4:\"rows\";s:2:\"15\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:18;a:6:{s:2:\"id\";s:16:\"plazart_404_icon\";s:5:\"label\";s:20:\"Icon for page search\";s:4:\"desc\";s:26:\"Input icon for page search\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:3:\"404\";}i:19;a:6:{s:2:\"id\";s:24:\"plazart_404_number_phone\";s:5:\"label\";s:12:\"Number phone\";s:4:\"desc\";s:12:\"Number phone\";s:3:\"std\";s:20:\"+44 (0) 800 765 4321\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:3:\"404\";}i:20;a:6:{s:2:\"id\";s:22:\"plazart_404_number_fax\";s:5:\"label\";s:10:\"Number fax\";s:4:\"desc\";s:10:\"Number fax\";s:3:\"std\";s:20:\"+44 (0) 800 765 2679\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:3:\"404\";}i:21;a:10:{s:2:\"id\";s:14:\"plazart_404_bk\";s:5:\"label\";s:14:\"404 Background\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:3:\"404\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:22;a:6:{s:2:\"id\";s:17:\"plazart_404_title\";s:5:\"label\";s:9:\"404 Title\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:10:\"404 ERROR!\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:3:\"404\";}i:23;a:10:{s:2:\"id\";s:19:\"plazart_404_content\";s:5:\"label\";s:11:\"404 Content\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:99:\"Look like something went wrong! The page you were looking for is not here. Go Home or try a search.\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:3:\"404\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:24;a:10:{s:2:\"id\";s:14:\"plazart_TzSyle\";s:5:\"label\";s:12:\"Style Config\";s:4:\"desc\";s:80:\"<p>Config for body style, header style, menu style, custom style, background</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:6:\"TzSyle\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:25;a:11:{s:2:\"id\";s:18:\"plazart_TZFontType\";s:5:\"label\";s:9:\"Font Type\";s:4:\"desc\";s:16:\"option font type\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:6:\"TZBody\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:9:\"btn-group\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:8:\"Tzgoogle\";s:5:\"label\";s:10:\"Goole Font\";}i:1;a:2:{s:5:\"value\";s:13:\"TzFontDefault\";s:5:\"label\";s:13:\"Standard Font\";}}}i:26;a:7:{s:2:\"id\";s:21:\"plazart_TzFontDefault\";s:5:\"label\";s:20:\"Select Standard Font\";s:4:\"desc\";s:32:\"Select a font to use font-family\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:6:\"TZBody\";s:5:\"class\";s:12:\"TzFontStylet\";s:7:\"choices\";a:6:{i:0;a:2:{s:5:\"value\";s:5:\"Arial\";s:5:\"label\";s:5:\"Arial\";}i:1;a:2:{s:5:\"value\";s:6:\"Tahoma\";s:5:\"label\";s:6:\"Tahoma\";}i:2;a:2:{s:5:\"value\";s:7:\"Verdana\";s:5:\"label\";s:7:\"Verdana\";}i:3;a:2:{s:5:\"value\";s:7:\"Georgia\";s:5:\"label\";s:7:\"Georgia\";}i:4;a:2:{s:5:\"value\";s:6:\"Impact\";s:5:\"label\";s:6:\"Impact\";}i:5;a:2:{s:5:\"value\";s:5:\"Times\";s:5:\"label\";s:5:\"Times\";}}}i:27;a:6:{s:2:\"id\";s:18:\"plazart_TzFontFami\";s:5:\"label\";s:10:\"Google Url\";s:4:\"desc\";s:86:\"import google font URL Eg: http://fonts.googleapis.com/css?family=Monsieur+La+Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:6:\"TZBody\";}i:28;a:6:{s:2:\"id\";s:20:\"plazart_TzFontFaminy\";s:5:\"label\";s:11:\"Font Family\";s:4:\"desc\";s:52:\"importeg google font-family Eg: Monsieur La Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:6:\"TZBody\";}i:29;a:7:{s:2:\"id\";s:22:\"plazart_TzBodySelecter\";s:5:\"label\";s:14:\"Body Selectors\";s:4:\"desc\";s:81:\"you can specify a selector for font used in the document body eg: div#description\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:6:\"TZBody\";s:4:\"rows\";s:2:\"10\";}i:30;a:6:{s:2:\"id\";s:19:\"plazart_TzBodyColor\";s:5:\"label\";s:10:\"Color code\";s:4:\"desc\";s:14:\"Color for text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:6:\"TZBody\";}i:31;a:11:{s:2:\"id\";s:22:\"plazart_TZFontTypeHead\";s:5:\"label\";s:9:\"Font Type\";s:4:\"desc\";s:16:\"option font type\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TzFontHeader\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:8:\"Tzgoogle\";s:5:\"label\";s:10:\"Goole Font\";}i:1;a:2:{s:5:\"value\";s:13:\"TzFontDefault\";s:5:\"label\";s:13:\"Standard Font\";}}}i:32;a:6:{s:2:\"id\";s:25:\"plazart_TzFontHeadDefault\";s:5:\"label\";s:20:\"Select Standard Font\";s:4:\"desc\";s:32:\"Select a font to use font-family\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TzFontHeader\";s:7:\"choices\";a:6:{i:0;a:2:{s:5:\"value\";s:5:\"Arial\";s:5:\"label\";s:5:\"Arial\";}i:1;a:2:{s:5:\"value\";s:6:\"Tahoma\";s:5:\"label\";s:6:\"Tahoma\";}i:2;a:2:{s:5:\"value\";s:7:\"Verdana\";s:5:\"label\";s:7:\"Verdana\";}i:3;a:2:{s:5:\"value\";s:7:\"Georgia\";s:5:\"label\";s:7:\"Georgia\";}i:4;a:2:{s:5:\"value\";s:6:\"Impact\";s:5:\"label\";s:6:\"Impact\";}i:5;a:2:{s:5:\"value\";s:5:\"Times\";s:5:\"label\";s:5:\"Times\";}}}i:33;a:6:{s:2:\"id\";s:25:\"plazart_TzFontHeadGoodurl\";s:5:\"label\";s:10:\"Google Url\";s:4:\"desc\";s:86:\"import google font URL Eg: http://fonts.googleapis.com/css?family=Monsieur+La+Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"TzFontHeader\";}i:34;a:6:{s:2:\"id\";s:24:\"plazart_TzFontFaminyHead\";s:5:\"label\";s:11:\"Font Family\";s:4:\"desc\";s:52:\"importeg google font-family Eg: Monsieur La Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"TzFontHeader\";}i:35;a:7:{s:2:\"id\";s:22:\"plazart_TzHeadSelecter\";s:5:\"label\";s:15:\"Header Selecter\";s:4:\"desc\";s:83:\"You can specify a selector for font used in the document Header Eg: div#description\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:12:\"TzFontHeader\";s:4:\"rows\";s:2:\"10\";}i:36;a:6:{s:2:\"id\";s:25:\"plazart_TzHeaderFontColor\";s:5:\"label\";s:10:\"Color code\";s:4:\"desc\";s:14:\"Color for text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:12:\"TzFontHeader\";}i:37;a:11:{s:2:\"id\";s:22:\"plazart_TZFontTypeMenu\";s:5:\"label\";s:9:\"Font Type\";s:4:\"desc\";s:16:\"Option font type\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:10:\"TzFontMenu\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:8:\"Tzgoogle\";s:5:\"label\";s:10:\"Goole Font\";}i:1;a:2:{s:5:\"value\";s:13:\"TzFontDefault\";s:5:\"label\";s:13:\"Standard Font\";}}}i:38;a:6:{s:2:\"id\";s:25:\"plazart_TzFontMenuDefault\";s:5:\"label\";s:20:\"Select Standard Font\";s:4:\"desc\";s:32:\"Select a font to use font-family\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:10:\"TzFontMenu\";s:7:\"choices\";a:6:{i:0;a:2:{s:5:\"value\";s:5:\"Arial\";s:5:\"label\";s:5:\"Arial\";}i:1;a:2:{s:5:\"value\";s:6:\"Tahoma\";s:5:\"label\";s:6:\"Tahoma\";}i:2;a:2:{s:5:\"value\";s:7:\"Verdana\";s:5:\"label\";s:7:\"Verdana\";}i:3;a:2:{s:5:\"value\";s:7:\"Georgia\";s:5:\"label\";s:7:\"Georgia\";}i:4;a:2:{s:5:\"value\";s:6:\"Impact\";s:5:\"label\";s:6:\"Impact\";}i:5;a:2:{s:5:\"value\";s:5:\"Times\";s:5:\"label\";s:5:\"Times\";}}}i:39;a:6:{s:2:\"id\";s:25:\"plazart_TzFontMenuGoodurl\";s:5:\"label\";s:10:\"Google Url\";s:4:\"desc\";s:86:\"import google font URL Eg: http://fonts.googleapis.com/css?family=Monsieur+La+Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:10:\"TzFontMenu\";}i:40;a:6:{s:2:\"id\";s:24:\"plazart_TzFontFaminyMenu\";s:5:\"label\";s:11:\"Font Family\";s:4:\"desc\";s:52:\"importeg google font-family Eg: Monsieur La Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:10:\"TzFontMenu\";}i:41;a:7:{s:2:\"id\";s:22:\"plazart_TzMenuSelecter\";s:5:\"label\";s:14:\"Menu Selectors\";s:4:\"desc\";s:74:\"you can specify a selector for font used in the document body eg: div#menu\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:10:\"TzFontMenu\";s:4:\"rows\";s:2:\"10\";}i:42;a:6:{s:2:\"id\";s:23:\"plazart_TzMenuFontColor\";s:5:\"label\";s:10:\"Color code\";s:4:\"desc\";s:14:\"Color for text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:10:\"TzFontMenu\";}i:43;a:11:{s:2:\"id\";s:24:\"plazart_TZFontTypeCustom\";s:5:\"label\";s:9:\"Font Type\";s:4:\"desc\";s:16:\"option font type\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TzFontCustom\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:8:\"Tzgoogle\";s:5:\"label\";s:10:\"Goole Font\";}i:1;a:2:{s:5:\"value\";s:13:\"TzFontDefault\";s:5:\"label\";s:13:\"Standard Font\";}}}i:44;a:6:{s:2:\"id\";s:27:\"plazart_TzFontCustomDefault\";s:5:\"label\";s:20:\"Select Standard Font\";s:4:\"desc\";s:32:\"Select a font to use font-family\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TzFontCustom\";s:7:\"choices\";a:6:{i:0;a:2:{s:5:\"value\";s:5:\"Arial\";s:5:\"label\";s:5:\"Arial\";}i:1;a:2:{s:5:\"value\";s:6:\"Tahoma\";s:5:\"label\";s:6:\"Tahoma\";}i:2;a:2:{s:5:\"value\";s:7:\"Verdana\";s:5:\"label\";s:7:\"Verdana\";}i:3;a:2:{s:5:\"value\";s:7:\"Georgia\";s:5:\"label\";s:7:\"Georgia\";}i:4;a:2:{s:5:\"value\";s:6:\"Impact\";s:5:\"label\";s:6:\"Impact\";}i:5;a:2:{s:5:\"value\";s:5:\"Times\";s:5:\"label\";s:5:\"Times\";}}}i:45;a:6:{s:2:\"id\";s:27:\"plazart_TzFontCustomGoodurl\";s:5:\"label\";s:10:\"Google Url\";s:4:\"desc\";s:86:\"import google font URL Eg: http://fonts.googleapis.com/css?family=Monsieur+La+Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"TzFontCustom\";}i:46;a:6:{s:2:\"id\";s:26:\"plazart_TzFontFaminyCustom\";s:5:\"label\";s:11:\"Font Family\";s:4:\"desc\";s:52:\"importeg google font-family Eg: Monsieur La Doulaise\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"TzFontCustom\";}i:47;a:7:{s:2:\"id\";s:24:\"plazart_TzCustomSelecter\";s:5:\"label\";s:15:\"Custom Selecter\";s:4:\"desc\";s:76:\"you can specify a selector for font used in the document body eg: div#custom\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:12:\"TzFontCustom\";s:4:\"rows\";s:2:\"10\";}i:48;a:6:{s:2:\"id\";s:25:\"plazart_TzCustomFontColor\";s:5:\"label\";s:10:\"Color code\";s:4:\"desc\";s:14:\"Color for text\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:12:\"TzFontCustom\";}i:49;a:6:{s:2:\"id\";s:19:\"plazart_TzCustomCss\";s:5:\"label\";s:8:\"Code CSS\";s:4:\"desc\";s:173:\"Paste your CSS code, do not include any tags or HTML in thie field. Any custom CSS entered here will override the theme CSS. In some cases, the !important tag may be needed.\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:15:\"textarea-simple\";s:7:\"section\";s:11:\"TzCustomCss\";}i:50;a:7:{s:5:\"label\";s:24:\"Choose style breadcrumb.\";s:2:\"id\";s:24:\"plazart_style_breadcrumb\";s:4:\"desc\";s:44:\"Select style breadcrumb default for website.\";s:7:\"section\";s:15:\"icon_breadcrumb\";s:3:\"std\";s:16:\"fa fa-arrows-alt\";s:4:\"type\";s:6:\"select\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:18:\"breadcrumb_awesome\";s:5:\"label\";s:12:\"Font Awesome\";}i:1;a:2:{s:5:\"value\";s:16:\"breadcrumb_image\";s:5:\"label\";s:6:\"Images\";}}}i:51;a:6:{s:2:\"id\";s:25:\"plazart_TzIcon_breadcrumb\";s:5:\"label\";s:19:\"Icon for Breadcrumb\";s:4:\"desc\";s:25:\"Input icon for Breadcrumb\";s:3:\"std\";s:16:\"fa fa-arrows-alt\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:15:\"icon_breadcrumb\";}i:52;a:6:{s:2:\"id\";s:27:\"plazart_tz_image_breadcrumb\";s:5:\"label\";s:23:\"Upload Image Breadcrumb\";s:4:\"desc\";s:16:\"Image Breadcrumb\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:15:\"icon_breadcrumb\";}i:53;a:10:{s:2:\"id\";s:11:\"cbackground\";s:5:\"label\";s:10:\"Background\";s:4:\"desc\";s:83:\"<p>Default background for Post, Page, Portfolio, Category, Archive, Seach page.</p>\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:16:\"textblock-titled\";s:7:\"section\";s:12:\"TZBackground\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:54;a:11:{s:2:\"id\";s:23:\"plazart_background_type\";s:5:\"label\";s:15:\"Background Type\";s:4:\"desc\";s:94:\"You can choose the background you want between our pre-provided pattern and your custom image.\";s:3:\"std\";s:4:\"none\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TZBackground\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";s:7:\"choices\";a:3:{i:0;a:2:{s:5:\"value\";s:4:\"none\";s:5:\"label\";s:7:\"Default\";}i:1;a:2:{s:5:\"value\";s:7:\"pattern\";s:5:\"label\";s:7:\"Pattern\";}i:2;a:2:{s:5:\"value\";s:12:\"single_image\";s:5:\"label\";s:12:\"Single image\";}}}i:55;a:6:{s:2:\"id\";s:25:\"plazart_TZBackgroundColor\";s:5:\"label\";s:10:\"Color code\";s:4:\"desc\";s:21:\"Background color code\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:12:\"TZBackground\";}i:56;a:11:{s:2:\"id\";s:26:\"plazart_background_pattern\";s:5:\"label\";s:14:\"Choose Pattern\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:12:\"TZBackground\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:18:\"background_pattern\";s:7:\"choices\";a:103:{i:0;a:6:{s:5:\"value\";s:17:\"60degree_gray.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/60degree_gray.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:1;a:6:{s:5:\"value\";s:14:\"absurdidad.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/absurdidad.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:2;a:6:{s:5:\"value\";s:15:\"always_grey.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/always_grey.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:3;a:6:{s:5:\"value\";s:10:\"arches.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/arches.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:4;a:6:{s:5:\"value\";s:13:\"az_subtle.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/az_subtle.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:5;a:6:{s:5:\"value\";s:16:\"back_pattern.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/back_pattern.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:6;a:6:{s:5:\"value\";s:15:\"black_mamba.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/black_mamba.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:7;a:6:{s:5:\"value\";s:16:\"black_scales.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/black_scales.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:8;a:6:{s:5:\"value\";s:16:\"black_thread.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/black_thread.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:9;a:6:{s:5:\"value\";s:15:\"black_twill.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/black_twill.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:10;a:6:{s:5:\"value\";s:12:\"blizzard.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/blizzard.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:11;a:6:{s:5:\"value\";s:19:\"bo_play_pattern.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/bo_play_pattern.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:12;a:6:{s:5:\"value\";s:12:\"brillant.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/brillant.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:13;a:6:{s:5:\"value\";s:13:\"candyhole.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/candyhole.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:14;a:6:{s:5:\"value\";s:16:\"carbon_fibre.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/carbon_fibre.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:15;a:6:{s:5:\"value\";s:19:\"carbon_fibre_v2.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/carbon_fibre_v2.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:16;a:6:{s:5:\"value\";s:21:\"checkered_pattern.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:83:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/checkered_pattern.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:17;a:6:{s:5:\"value\";s:11:\"circles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/circles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:18;a:6:{s:5:\"value\";s:11:\"climpek.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/climpek.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:19;a:6:{s:5:\"value\";s:11:\"connect.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/connect.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:20;a:6:{s:5:\"value\";s:15:\"corrugation.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/corrugation.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:21;a:6:{s:5:\"value\";s:14:\"cream_dust.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/cream_dust.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:22;a:6:{s:5:\"value\";s:19:\"crossed_stripes.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/crossed_stripes.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:23;a:6:{s:5:\"value\";s:11:\"crosses.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/crosses.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:24;a:6:{s:5:\"value\";s:9:\"cubes.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:71:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/cubes.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:25;a:6:{s:5:\"value\";s:11:\"cutcube.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/cutcube.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:26;a:6:{s:5:\"value\";s:16:\"daimond_eyes.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/daimond_eyes.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:27;a:6:{s:5:\"value\";s:16:\"dark_circles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/dark_circles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:28;a:6:{s:5:\"value\";s:15:\"dark_dotted.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/dark_dotted.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:29;a:6:{s:5:\"value\";s:18:\"dark_geometric.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/dark_geometric.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:30;a:6:{s:5:\"value\";s:15:\"dark_matter.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/dark_matter.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:31;a:6:{s:5:\"value\";s:18:\"diagonal_waves.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/diagonal_waves.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:32;a:6:{s:5:\"value\";s:23:\"diagonales_decalees.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:85:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/diagonales_decalees.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:33;a:6:{s:5:\"value\";s:12:\"ecailles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/ecailles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:34;a:6:{s:5:\"value\";s:16:\"elegant_grid.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/elegant_grid.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:35;a:6:{s:5:\"value\";s:18:\"embossed_paper.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/embossed_paper.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:36;a:6:{s:5:\"value\";s:15:\"escheresque.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/escheresque.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:37;a:6:{s:5:\"value\";s:14:\"fake_brick.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/fake_brick.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:38;a:6:{s:5:\"value\";s:15:\"fake_luxury.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/fake_luxury.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:39;a:6:{s:5:\"value\";s:16:\"fancy_deboss.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/fancy_deboss.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:40;a:6:{s:5:\"value\";s:15:\"flowertrail.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/flowertrail.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:41;a:6:{s:5:\"value\";s:8:\"foil.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:70:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/foil.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:42;a:6:{s:5:\"value\";s:10:\"graphy.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/graphy.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:43;a:6:{s:5:\"value\";s:10:\"gridme.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/gridme.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:44;a:6:{s:5:\"value\";s:13:\"gun_metal.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/gun_metal.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:45;a:6:{s:5:\"value\";s:12:\"hexabump.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/hexabump.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:46;a:6:{s:5:\"value\";s:26:\"hixs_pattern_evolution.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:88:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/hixs_pattern_evolution.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:47;a:6:{s:5:\"value\";s:8:\"kuji.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:70:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/kuji.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:48;a:6:{s:5:\"value\";s:13:\"lil_fiber.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/lil_fiber.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:49;a:6:{s:5:\"value\";s:20:\"little_triangles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:82:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/little_triangles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:50;a:6:{s:5:\"value\";s:15:\"littleknobs.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/littleknobs.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:51;a:6:{s:5:\"value\";s:13:\"lyonnette.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/lyonnette.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:52;a:6:{s:5:\"value\";s:16:\"merely_cubed.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/merely_cubed.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:53;a:6:{s:5:\"value\";s:16:\"micro_carbon.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/micro_carbon.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:54;a:6:{s:5:\"value\";s:8:\"nami.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:70:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/nami.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:55;a:6:{s:5:\"value\";s:10:\"nistri.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/nistri.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:56;a:6:{s:5:\"value\";s:18:\"norwegian_rose.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/norwegian_rose.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:57;a:6:{s:5:\"value\";s:11:\"outlets.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/outlets.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:58;a:6:{s:5:\"value\";s:9:\"paven.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:71:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/paven.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:59;a:6:{s:5:\"value\";s:13:\"pinstripe.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/pinstripe.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:60;a:6:{s:5:\"value\";s:15:\"pixel_weave.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/pixel_weave.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:61;a:6:{s:5:\"value\";s:18:\"polyester_lite.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/polyester_lite.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:62;a:6:{s:5:\"value\";s:18:\"project_papper.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/project_papper.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:63;a:6:{s:5:\"value\";s:11:\"pyramid.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/pyramid.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:64;a:6:{s:5:\"value\";s:9:\"quilt.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:71:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/quilt.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:65;a:6:{s:5:\"value\";s:11:\"real_cf.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/real_cf.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:66;a:6:{s:5:\"value\";s:20:\"reticular_tissue.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:82:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/reticular_tissue.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:67;a:6:{s:5:\"value\";s:15:\"rubber_grip.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/rubber_grip.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:68;a:6:{s:5:\"value\";s:14:\"satinweave.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/satinweave.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:69;a:6:{s:5:\"value\";s:10:\"school.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/school.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:70;a:6:{s:5:\"value\";s:13:\"shinecaro.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/shinecaro.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:71;a:6:{s:5:\"value\";s:15:\"shinedotted.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/shinedotted.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:72;a:6:{s:5:\"value\";s:7:\"shl.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:69:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/shl.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:73;a:6:{s:5:\"value\";s:17:\"silver_scales.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/silver_scales.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:74;a:6:{s:5:\"value\";s:18:\"skelatal_weave.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/skelatal_weave.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:75;a:6:{s:5:\"value\";s:24:\"small-crackle-bright.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:86:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/small-crackle-bright.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:76;a:6:{s:5:\"value\";s:15:\"small_tiles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/small_tiles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:77;a:6:{s:5:\"value\";s:13:\"soft_kill.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/soft_kill.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:78;a:6:{s:5:\"value\";s:12:\"soft_pad.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/soft_pad.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:79;a:6:{s:5:\"value\";s:11:\"squares.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:73:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/squares.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:80;a:6:{s:5:\"value\";s:19:\"stacked_circles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/stacked_circles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:81;a:6:{s:5:\"value\";s:12:\"starring.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:74:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/starring.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:82;a:6:{s:5:\"value\";s:17:\"stitched_wool.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/stitched_wool.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:83;a:6:{s:5:\"value\";s:10:\"straws.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/straws.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:84;a:6:{s:5:\"value\";s:16:\"striped_lens.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/striped_lens.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:85;a:6:{s:5:\"value\";s:15:\"struckaxiom.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/struckaxiom.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:86;a:6:{s:5:\"value\";s:17:\"subtle_carbon.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/subtle_carbon.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:87;a:6:{s:5:\"value\";s:15:\"subtle_dots.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:77:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/subtle_dots.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:88;a:6:{s:5:\"value\";s:18:\"subtle_surface.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/subtle_surface.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:89;a:6:{s:5:\"value\";s:19:\"subtle_zebra_3d.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/subtle_zebra_3d.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:90;a:6:{s:5:\"value\";s:14:\"subtlenet2.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/subtlenet2.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:91;a:6:{s:5:\"value\";s:17:\"tactile_noise.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/tactile_noise.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:92;a:6:{s:5:\"value\";s:17:\"tasky_pattern.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:79:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/tasky_pattern.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:93;a:6:{s:5:\"value\";s:13:\"tiny_grid.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/tiny_grid.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:94;a:6:{s:5:\"value\";s:13:\"triangles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/triangles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:95;a:6:{s:5:\"value\";s:18:\"vaio_hard_edge.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:80:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/vaio_hard_edge.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:96;a:6:{s:5:\"value\";s:9:\"weave.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:71:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/weave.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:97;a:6:{s:5:\"value\";s:20:\"white_brick_wall.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:82:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/white_brick_wall.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:98;a:6:{s:5:\"value\";s:16:\"white_carbon.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:78:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/white_carbon.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:99;a:6:{s:5:\"value\";s:21:\"white_carbonfiber.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:83:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/white_carbonfiber.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:100;a:6:{s:5:\"value\";s:14:\"white_wave.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:76:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/white_wave.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:101;a:6:{s:5:\"value\";s:19:\"wide_rectangles.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:81:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/wide_rectangles.png\";i:0;i:40;i:1;i:40;i:2;b:1;}i:102;a:6:{s:5:\"value\";s:10:\"zigzag.png\";s:5:\"label\";s:27:\"Click on pattern to preview\";s:3:\"src\";s:72:\"http://genewyork.com/wp-content/themes/ethic/images/patterns/zigzag.png\";i:0;i:40;i:1;i:40;i:2;b:1;}}}i:57;a:10:{s:2:\"id\";s:31:\"plazart_background_single_image\";s:5:\"label\";s:23:\"Single Image Background\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:6:\"upload\";s:7:\"section\";s:12:\"TZBackground\";s:4:\"rows\";s:0:\"\";s:9:\"post_type\";s:0:\"\";s:8:\"taxonomy\";s:0:\"\";s:5:\"class\";s:0:\"\";}i:58;a:7:{s:2:\"id\";s:25:\"plazart_TzThemeColorStyle\";s:5:\"label\";s:18:\"Config Theme Color\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:1:\"0\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TZThemeColor\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"0\";s:5:\"label\";s:7:\"Default\";}i:1;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:18:\"Custom Theme Color\";}}}i:59;a:7:{s:2:\"id\";s:24:\"plazart_TzThemeColorTyle\";s:5:\"label\";s:19:\"Theme Color Default\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:1:\"1\";s:4:\"type\";s:11:\"radio-image\";s:7:\"section\";s:12:\"TZThemeColor\";s:7:\"choices\";a:9:{i:0;a:3:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/1.jpg\";}i:1;a:3:{s:5:\"value\";s:1:\"2\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/2.jpg\";}i:2;a:3:{s:5:\"value\";s:1:\"3\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/3.jpg\";}i:3;a:3:{s:5:\"value\";s:1:\"4\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/4.jpg\";}i:4;a:3:{s:5:\"value\";s:1:\"5\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/5.jpg\";}i:5;a:3:{s:5:\"value\";s:1:\"6\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/6.jpg\";}i:6;a:3:{s:5:\"value\";s:1:\"7\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/7.jpg\";}i:7;a:3:{s:5:\"value\";s:1:\"8\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/8.jpg\";}i:8;a:3:{s:5:\"value\";s:1:\"9\";s:5:\"label\";s:0:\"\";s:3:\"src\";s:75:\"http://genewyork.com/wp-content/themes/ethic/extension/assets/images/9.jpg\";}}}i:60;a:6:{s:2:\"id\";s:26:\"plazart_TZThemeColorCustom\";s:5:\"label\";s:18:\"Theme Color Custom\";s:4:\"desc\";s:18:\"Theme Color Custom\";s:3:\"std\";s:0:\"\";s:4:\"type\";s:11:\"colorpicker\";s:7:\"section\";s:12:\"TZThemeColor\";}i:61;a:7:{s:2:\"id\";s:25:\"plazart_TzThemeColorWidth\";s:5:\"label\";s:18:\"Config Theme Width\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:1:\"0\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"TZThemeColor\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"0\";s:5:\"label\";s:10:\"Full Width\";}i:1;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:5:\"Boxed\";}}}i:62;a:6:{s:2:\"id\";s:33:\"plazart_TzThemeColorCustomerWidth\";s:5:\"label\";s:17:\"Input width Boxed\";s:4:\"desc\";s:14:\"Width of Boxed\";s:3:\"std\";s:6:\"1200px\";s:4:\"type\";s:4:\"text\";s:7:\"section\";s:12:\"TZThemeColor\";}i:63;a:7:{s:2:\"id\";s:18:\"plazart_tz_loading\";s:5:\"label\";s:19:\"Config mode loading\";s:4:\"desc\";s:0:\"\";s:3:\"std\";s:1:\"0\";s:4:\"type\";s:6:\"select\";s:7:\"section\";s:12:\"mode_loading\";s:7:\"choices\";a:2:{i:0;a:2:{s:5:\"value\";s:1:\"0\";s:5:\"label\";s:4:\"Hide\";}i:1;a:2:{s:5:\"value\";s:1:\"1\";s:5:\"label\";s:4:\"Show\";}}}}}','yes'),(188,'_bbp_private_forums','a:0:{}','yes'),(189,'_bbp_hidden_forums','a:0:{}','yes'),(190,'_bbp_db_version','250','yes'),(191,'theme_my_login','a:4:{s:10:\"enable_css\";b:1;s:11:\"email_login\";b:1;s:14:\"active_modules\";a:0:{}s:7:\"version\";s:6:\"6.3.12\";}','yes'),(192,'bp-active-components','a:5:{s:8:\"activity\";i:1;s:7:\"members\";i:1;s:8:\"settings\";i:1;s:8:\"xprofile\";i:1;s:13:\"notifications\";i:1;}','yes'),(193,'bp-pages','a:0:{}','yes'),(194,'_bp_db_version','10071','yes'),(195,'megamenu_version','1.9','yes'),(196,'ot_media_post_ID','5','yes'),(201,'option_tree','a:59:{s:20:\"plazart_header_style\";s:13:\"header_style6\";s:16:\"plazart_logotype\";s:1:\"1\";s:16:\"plazart_logoText\";s:0:\"\";s:21:\"plazart_logoTextcolor\";s:0:\"\";s:12:\"plazart_logo\";s:86:\"http://genewyork.com/wp-content/uploads/2015/08/geny_logo_circle_gold_nav_120x120.png\";s:21:\"plazart_favicon_onoff\";s:3:\"yes\";s:15:\"plazart_favicon\";s:65:\"http://genewyork.com/wp-content/uploads/2015/08/geny_favicon.png\";s:25:\"plazart_logo_footer_image\";s:75:\"http://genewyork.com/wp-content/uploads/2015/08/geny_logo_white_footer.png\";s:22:\"plazart_footer_columns\";s:1:\"4\";s:31:\"plazart_image_decoration_footer\";s:0:\"\";s:19:\"plazartfooterwidth1\";s:1:\"3\";s:19:\"plazartfooterwidth2\";s:1:\"3\";s:19:\"plazartfooterwidth3\";s:1:\"3\";s:19:\"plazartfooterwidth4\";s:1:\"3\";s:17:\"plazart_copyright\";s:52:\"<p>Copyright © 2015 GENY. All Rights Reserved.</p>\";s:16:\"plazart_404_icon\";s:0:\"\";s:24:\"plazart_404_number_phone\";s:12:\"646-794-8333\";s:22:\"plazart_404_number_fax\";s:12:\"212-564-9358\";s:14:\"plazart_404_bk\";s:0:\"\";s:17:\"plazart_404_title\";s:10:\"404 ERROR!\";s:19:\"plazart_404_content\";s:99:\"Look like something went wrong! The page you were looking for is not here. Go Home or try a search.\";s:18:\"plazart_TZFontType\";s:8:\"Tzgoogle\";s:21:\"plazart_TzFontDefault\";s:5:\"Arial\";s:18:\"plazart_TzFontFami\";s:0:\"\";s:20:\"plazart_TzFontFaminy\";s:0:\"\";s:22:\"plazart_TzBodySelecter\";s:0:\"\";s:19:\"plazart_TzBodyColor\";s:0:\"\";s:22:\"plazart_TZFontTypeHead\";s:8:\"Tzgoogle\";s:25:\"plazart_TzFontHeadDefault\";s:5:\"Arial\";s:25:\"plazart_TzFontHeadGoodurl\";s:0:\"\";s:24:\"plazart_TzFontFaminyHead\";s:0:\"\";s:22:\"plazart_TzHeadSelecter\";s:0:\"\";s:25:\"plazart_TzHeaderFontColor\";s:0:\"\";s:22:\"plazart_TZFontTypeMenu\";s:8:\"Tzgoogle\";s:25:\"plazart_TzFontMenuDefault\";s:5:\"Arial\";s:25:\"plazart_TzFontMenuGoodurl\";s:0:\"\";s:24:\"plazart_TzFontFaminyMenu\";s:0:\"\";s:22:\"plazart_TzMenuSelecter\";s:0:\"\";s:23:\"plazart_TzMenuFontColor\";s:0:\"\";s:24:\"plazart_TZFontTypeCustom\";s:8:\"Tzgoogle\";s:27:\"plazart_TzFontCustomDefault\";s:5:\"Arial\";s:27:\"plazart_TzFontCustomGoodurl\";s:49:\"https://fonts.googleapis.com/css?family=Open+Sans\";s:26:\"plazart_TzFontFaminyCustom\";s:37:\"font-family: \'Open Sans\', sans-serif;\";s:24:\"plazart_TzCustomSelecter\";s:0:\"\";s:25:\"plazart_TzCustomFontColor\";s:0:\"\";s:19:\"plazart_TzCustomCss\";s:327:\".language-icons{\r\n float:right;\r\n}\r\n.language-icons ul li{\r\n display:inline;\r\n margin-left:10px;\r\n}\r\n\r\n.language-icons ul li ul{\r\n display:inline;\r\n}\r\n\r\n.language-icons a{\r\n color:white;\r\n}\r\n\r\n.language-icons a:hover{\r\n color:#600000;\r\n}\r\n#wpml-language-bar{\r\npadding: 10px;\r\nheight:100px;\r\nposition:fixed;\r\n}\";s:23:\"plazart_background_type\";s:4:\"none\";s:25:\"plazart_TZBackgroundColor\";s:0:\"\";s:31:\"plazart_background_single_image\";s:0:\"\";s:25:\"plazart_TzThemeColorStyle\";s:1:\"1\";s:24:\"plazart_TzThemeColorTyle\";s:1:\"7\";s:26:\"plazart_TZThemeColorCustom\";s:7:\"#e5a82e\";s:25:\"plazart_TzThemeColorWidth\";s:1:\"0\";s:33:\"plazart_TzThemeColorCustomerWidth\";s:6:\"1200px\";s:24:\"plazart_style_breadcrumb\";s:16:\"breadcrumb_image\";s:25:\"plazart_TzIcon_breadcrumb\";s:16:\"fa fa-arrows-alt\";s:27:\"plazart_tz_image_breadcrumb\";s:0:\"\";s:18:\"plazart_tz_loading\";s:1:\"0\";s:27:\"plazart_blog_option_sidebar\";s:1:\"0\";}','yes'),(211,'tribe_events_cat_children','a:0:{}','yes'),(220,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(221,'wpb_js_composer_license_activation_notified','yes','yes'),(223,'megamenu_settings','a:5:{s:7:\"primary\";a:4:{s:7:\"enabled\";s:1:\"1\";s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:8:\"disabled\";s:5:\"theme\";s:7:\"default\";}s:12:\"primary___zh\";a:4:{s:7:\"enabled\";s:1:\"1\";s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:8:\"disabled\";s:5:\"theme\";s:7:\"default\";}s:12:\"primary___ja\";a:3:{s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:8:\"disabled\";s:5:\"theme\";s:7:\"default\";}s:12:\"primary___ko\";a:3:{s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:8:\"disabled\";s:5:\"theme\";s:7:\"default\";}s:9:\"menu-left\";a:4:{s:7:\"enabled\";s:1:\"1\";s:5:\"event\";s:5:\"hover\";s:6:\"effect\";s:8:\"disabled\";s:5:\"theme\";s:7:\"default\";}}','yes'),(224,'_transient_megamenu_css','#mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul, #mega-menu-wrap-primary #mega-menu-primary li, #mega-menu-wrap-primary #mega-menu-primary p, #mega-menu-wrap-primary #mega-menu-primary img, #mega-menu-wrap-primary #mega-menu-primary div, #mega-menu-wrap-primary #mega-menu-primary a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n background: none;\n border: 0;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n margin: 0;\n opacity: 1;\n padding: 0;\n position: relative;\n right: auto;\n top: auto;\n bottom: auto;\n left: auto;\n text-align: left;\n text-transform: none;\n vertical-align: baseline;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n list-style-type: none;\n line-height: 1.7;\n box-sizing: border-box;\n float: none;\n overflow: visible;\n display: block;\n min-height: 0;\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n text-decoration: none;\n width: auto;\n clip: auto;\n height: auto;\n outline: none;\n visibility: inherit;\n}\n#mega-menu-wrap-primary:before, #mega-menu-wrap-primary #mega-menu-primary:before, #mega-menu-wrap-primary #mega-menu-primary ul:before, #mega-menu-wrap-primary #mega-menu-primary li:before, #mega-menu-wrap-primary #mega-menu-primary p:before, #mega-menu-wrap-primary #mega-menu-primary img:before, #mega-menu-wrap-primary #mega-menu-primary div:before, #mega-menu-wrap-primary #mega-menu-primary a:before, #mega-menu-wrap-primary:after, #mega-menu-wrap-primary #mega-menu-primary:after, #mega-menu-wrap-primary #mega-menu-primary ul:after, #mega-menu-wrap-primary #mega-menu-primary li:after, #mega-menu-wrap-primary #mega-menu-primary p:after, #mega-menu-wrap-primary #mega-menu-primary img:after, #mega-menu-wrap-primary #mega-menu-primary div:after, #mega-menu-wrap-primary #mega-menu-primary a:after {\n display: none;\n}\n#mega-menu-wrap-primary #mega-menu-primary {\n visibility: visible;\n}\n#mega-menu-wrap-primary #mega-menu-primary a {\n display: inline;\n}\n#mega-menu-wrap-primary #mega-menu-primary table, #mega-menu-wrap-primary #mega-menu-primary td, #mega-menu-wrap-primary #mega-menu-primary tr, #mega-menu-wrap-primary #mega-menu-primary th {\n border: 0;\n margin: 0;\n padding: 0;\n background: none;\n}\n#mega-menu-wrap-primary {\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary {\n text-align: left;\n padding: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary p {\n margin-bottom: 10px;\n}\n#mega-menu-wrap-primary #mega-menu-primary input, #mega-menu-wrap-primary #mega-menu-primary img {\n max-width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {\n display: block;\n visibility: hidden;\n opacity: 1;\n}\n#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n visibility: visible;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a[class^=\'dashicons\']:before {\n font-family: dashicons;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-disable-link > a {\n cursor: default;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a:before {\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n position: static;\n margin: 0 6px 0 0px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: inherit;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text a:before {\n margin: 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-left.mega-toggle-on > a {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right > ul.mega-sub-menu {\n right: 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right.mega-toggle-on > a {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-menu-item {\n position: static;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {\n margin: 0 0px 0 0;\n display: inline-block;\n height: auto;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {\n float: right;\n margin: 0 0 0 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a:focus {\n background: rgba(51, 51, 51, 0);\n color: #fff;\n font-weight: normal;\n text-decoration: none;\n border-color: #fff;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n outline: none;\n text-decoration: none;\n padding: 0px 10px 0px 10px;\n line-height: 40px;\n font-weight: normal;\n height: 40px;\n vertical-align: baseline;\n text-align: left;\n width: auto;\n display: block;\n color: #fff;\n text-transform: none;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n font-family: inherit;\n font-size: 14px;\n cursor: pointer;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {\n display: list-item;\n margin: 0;\n clear: both;\n border: 0;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {\n float: none;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a {\n -webkit-border-radius: 0 0 0 0 0 0 0;\n -moz-border-radius: 0 0 0 0 0 0 0;\n -ms-border-radius: 0 0 0 0 0 0 0;\n -o-border-radius: 0 0 0 0 0 0 0;\n border-radius: 0 0 0 0 0 0 0;\n border: 0;\n margin: 0;\n line-height: 40px;\n height: 40px;\n padding: 0 10px;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n z-index: 999;\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n background: #f1f1f1;\n padding: 0px 0px 0px 0px;\n position: absolute;\n width: 100%;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n left: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {\n width: 33.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {\n width: 66.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {\n width: 25%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {\n width: 75%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {\n width: 20%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {\n width: 40%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {\n width: 60%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {\n width: 80%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {\n width: 16.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {\n width: 33.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {\n width: 66.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {\n width: 83.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {\n width: 14.28571%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {\n width: 28.57143%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {\n width: 42.85714%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {\n width: 57.14286%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {\n width: 71.42857%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {\n width: 85.71429%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {\n width: 12.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {\n width: 25%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {\n width: 37.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {\n width: 62.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {\n width: 75%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {\n width: 87.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {\n width: 100%;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n border: 0;\n padding: 10px;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li {\n width: 50% !important;\n clear: none;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {\n clear: left;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu {\n clear: both;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu li ul.mega-sub-menu {\n margin-left: 10px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu {\n margin-left: 20px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n display: block;\n float: left;\n clear: none;\n padding: 15px 15px 15px 15px;\n vertical-align: top;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {\n clear: left;\n /* Widget titles */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 5px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a:focus {\n color: #555;\n font-weight: bold;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n /* third level menu item */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n text-transform: none;\n text-decoration: none;\n font-weight: normal;\n margin: 0;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a:focus {\n color: #666;\n font-weight: normal;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {\n z-index: 999;\n position: absolute;\n width: 300px;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n padding: 0px 0px 0px 0px;\n background: #f1f1f1;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n padding: 0;\n border: 0;\n }\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {\n clear: both;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {\n display: block;\n background: #f1f1f1;\n color: #666;\n font-family: inherit;\n font-size: 14px;\n font-weight: normal;\n padding: 0px 10px 0px 10px;\n line-height: 35px;\n text-decoration: none;\n text-transform: none;\n vertical-align: baseline;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a {\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a {\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a:focus {\n background: #ddd;\n font-weight: normal;\n text-decoration: none;\n color: #666;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: absolute;\n left: 100%;\n top: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: static;\n left: 0;\n width: 100%;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a {\n padding-left: 20px;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children > a:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children > a:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n margin: 0 0 0 6px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n color: inherit;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children a:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children a:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children a:after {\n float: right;\n }\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children.mega-toggle-on > a:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children.mega-toggle-on > a:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children.mega-toggle-on > a:after {\n content: \'\\f142\';\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-arrow > a:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-arrow > a:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children.mega-hide-arrow > a:after {\n display: none;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item li.mega-menu-item-has-children > a:after {\n content: \'\\f139\';\n float: right;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li a {\n text-align: right;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li a {\n text-align: left;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li a:before {\n float: right;\n margin: 0 0 0 6px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li a:before {\n float: left;\n margin: 0 6px 0 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a:after {\n content: \'\\f141\';\n float: left;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n float: right;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n left: -100%;\n top: 0;\n}\n#mega-menu-wrap-primary .mega-menu-toggle {\n display: none;\n z-index: 1;\n cursor: pointer;\n text-align: right;\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 2px 2px 2px 2px;\n -moz-border-radius: 2px 2px 2px 2px;\n -ms-border-radius: 2px 2px 2px 2px;\n -o-border-radius: 2px 2px 2px 2px;\n border-radius: 2px 2px 2px 2px;\n line-height: 40px;\n height: 40px;\n color: #fff;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary .mega-menu-toggle {\n display: block;\n }\n}\n#mega-menu-wrap-primary .mega-menu-toggle:before {\n content: \"\\f333\";\n font-family: \'dashicons\';\n font-size: 24px;\n margin: 0 5px;\n float: right;\n}\n#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:before {\n content: \"\\f153\";\n}\n#mega-menu-wrap-primary .mega-menu-toggle:after {\n content: \'MENU\';\n}\n#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:after {\n content: \"\";\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {\n display: none;\n }\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {\n display: none;\n visibility: visible;\n opacity: 1;\n }\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n display: block;\n }\n #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {\n display: block;\n }\n}\n#mega-menu-wrap-primary {\n clear: both;\n}\n#mega-menu-wrap-menu-left, #mega-menu-wrap-menu-left #mega-menu-menu-left, #mega-menu-wrap-menu-left #mega-menu-menu-left ul, #mega-menu-wrap-menu-left #mega-menu-menu-left li, #mega-menu-wrap-menu-left #mega-menu-menu-left p, #mega-menu-wrap-menu-left #mega-menu-menu-left img, #mega-menu-wrap-menu-left #mega-menu-menu-left div, #mega-menu-wrap-menu-left #mega-menu-menu-left a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n background: none;\n border: 0;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n margin: 0;\n opacity: 1;\n padding: 0;\n position: relative;\n right: auto;\n top: auto;\n bottom: auto;\n left: auto;\n text-align: left;\n text-transform: none;\n vertical-align: baseline;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n list-style-type: none;\n line-height: 1.7;\n box-sizing: border-box;\n float: none;\n overflow: visible;\n display: block;\n min-height: 0;\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n text-decoration: none;\n width: auto;\n clip: auto;\n height: auto;\n outline: none;\n visibility: inherit;\n}\n#mega-menu-wrap-menu-left:before, #mega-menu-wrap-menu-left #mega-menu-menu-left:before, #mega-menu-wrap-menu-left #mega-menu-menu-left ul:before, #mega-menu-wrap-menu-left #mega-menu-menu-left li:before, #mega-menu-wrap-menu-left #mega-menu-menu-left p:before, #mega-menu-wrap-menu-left #mega-menu-menu-left img:before, #mega-menu-wrap-menu-left #mega-menu-menu-left div:before, #mega-menu-wrap-menu-left #mega-menu-menu-left a:before, #mega-menu-wrap-menu-left:after, #mega-menu-wrap-menu-left #mega-menu-menu-left:after, #mega-menu-wrap-menu-left #mega-menu-menu-left ul:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li:after, #mega-menu-wrap-menu-left #mega-menu-menu-left p:after, #mega-menu-wrap-menu-left #mega-menu-menu-left img:after, #mega-menu-wrap-menu-left #mega-menu-menu-left div:after, #mega-menu-wrap-menu-left #mega-menu-menu-left a:after {\n display: none;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left {\n visibility: visible;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left a {\n display: inline;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left table, #mega-menu-wrap-menu-left #mega-menu-menu-left td, #mega-menu-wrap-menu-left #mega-menu-menu-left tr, #mega-menu-wrap-menu-left #mega-menu-menu-left th {\n border: 0;\n margin: 0;\n padding: 0;\n background: none;\n}\n#mega-menu-wrap-menu-left {\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left {\n text-align: left;\n padding: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left p {\n margin-bottom: 10px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left input, #mega-menu-wrap-menu-left #mega-menu-menu-left img {\n max-width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item > ul.mega-sub-menu {\n display: block;\n visibility: hidden;\n opacity: 1;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n visibility: visible;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item a[class^=\'dashicons\']:before {\n font-family: dashicons;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-disable-link > a {\n cursor: default;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item a:before {\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n position: static;\n margin: 0 6px 0 0px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: inherit;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-hide-text a:before {\n margin: 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-left.mega-toggle-on > a {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-right > ul.mega-sub-menu {\n right: 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-right.mega-toggle-on > a {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu.mega-menu-item {\n position: static;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item {\n margin: 0 0px 0 0;\n display: inline-block;\n height: auto;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-item-align-right {\n float: right;\n margin: 0 0 0 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-toggle-on > a, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a:focus {\n background: rgba(51, 51, 51, 0);\n color: #fff;\n font-weight: normal;\n text-decoration: none;\n border-color: #fff;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a {\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n outline: none;\n text-decoration: none;\n padding: 0px 10px 0px 10px;\n line-height: 40px;\n font-weight: normal;\n height: 40px;\n vertical-align: baseline;\n text-align: left;\n width: auto;\n display: block;\n color: #fff;\n text-transform: none;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n font-family: inherit;\n font-size: 14px;\n cursor: pointer;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item {\n display: list-item;\n margin: 0;\n clear: both;\n border: 0;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-item-align-right {\n float: none;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a {\n -webkit-border-radius: 0 0 0 0 0 0 0;\n -moz-border-radius: 0 0 0 0 0 0 0;\n -ms-border-radius: 0 0 0 0 0 0 0;\n -o-border-radius: 0 0 0 0 0 0 0;\n border-radius: 0 0 0 0 0 0 0;\n border: 0;\n margin: 0;\n line-height: 40px;\n height: 40px;\n padding: 0 10px;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n z-index: 999;\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n background: #f1f1f1;\n padding: 0px 0px 0px 0px;\n position: absolute;\n width: 100%;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n left: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {\n width: 33.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {\n width: 66.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {\n width: 25%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {\n width: 75%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {\n width: 20%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {\n width: 40%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {\n width: 60%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {\n width: 80%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {\n width: 16.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {\n width: 33.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {\n width: 66.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {\n width: 83.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {\n width: 14.28571%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {\n width: 28.57143%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {\n width: 42.85714%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {\n width: 57.14286%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {\n width: 71.42857%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {\n width: 85.71429%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {\n width: 12.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {\n width: 25%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {\n width: 37.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {\n width: 62.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {\n width: 75%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {\n width: 87.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {\n width: 100%;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n border: 0;\n padding: 10px;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li {\n width: 50% !important;\n clear: none;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {\n clear: left;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu {\n clear: both;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu li ul.mega-sub-menu {\n margin-left: 10px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li ul.mega-sub-menu li ul.mega-sub-menu li ul.mega-sub-menu {\n margin-left: 20px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n display: block;\n float: left;\n clear: none;\n padding: 15px 15px 15px 15px;\n vertical-align: top;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {\n clear: left;\n /* Widget titles */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 5px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a:focus {\n color: #555;\n font-weight: bold;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n /* third level menu item */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n text-transform: none;\n text-decoration: none;\n font-weight: normal;\n margin: 0;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a:focus {\n color: #666;\n font-weight: normal;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu {\n z-index: 999;\n position: absolute;\n width: 300px;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n padding: 0px 0px 0px 0px;\n background: #f1f1f1;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n padding: 0;\n border: 0;\n }\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {\n clear: both;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a {\n display: block;\n background: #f1f1f1;\n color: #666;\n font-family: inherit;\n font-size: 14px;\n font-weight: normal;\n padding: 0px 10px 0px 10px;\n line-height: 35px;\n text-decoration: none;\n text-transform: none;\n vertical-align: baseline;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a {\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a {\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a:focus {\n background: #ddd;\n font-weight: normal;\n text-decoration: none;\n color: #666;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: absolute;\n left: 100%;\n top: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: static;\n left: 0;\n width: 100%;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a {\n padding-left: 20px;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n margin: 0 0 0 6px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n color: inherit;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children a:after {\n float: right;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children.mega-toggle-on > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children.mega-toggle-on > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children.mega-toggle-on > a:after {\n content: \'\\f142\';\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-arrow > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-arrow > a:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children.mega-hide-arrow > a:after {\n display: none;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item li.mega-menu-item-has-children > a:after {\n content: \'\\f139\';\n float: right;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li a {\n text-align: right;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li a {\n text-align: left;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li a:before {\n float: right;\n margin: 0 0 0 6px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li a:before {\n float: left;\n margin: 0 6px 0 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a:after {\n content: \'\\f141\';\n float: left;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a:after {\n content: \'\\f140\';\n float: right;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n left: -100%;\n top: 0;\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle {\n display: none;\n z-index: 1;\n cursor: pointer;\n text-align: right;\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 2px 2px 2px 2px;\n -moz-border-radius: 2px 2px 2px 2px;\n -ms-border-radius: 2px 2px 2px 2px;\n -o-border-radius: 2px 2px 2px 2px;\n border-radius: 2px 2px 2px 2px;\n line-height: 40px;\n height: 40px;\n color: #fff;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left .mega-menu-toggle {\n display: block;\n }\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle:before {\n content: \"\\f333\";\n font-family: \'dashicons\';\n font-size: 24px;\n margin: 0 5px;\n float: right;\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open:before {\n content: \"\\f153\";\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle:after {\n content: \'MENU\';\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open:after {\n content: \"\";\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left {\n display: none;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item > ul.mega-sub-menu {\n display: none;\n visibility: visible;\n opacity: 1;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n display: block;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open + #mega-menu-menu-left {\n display: block;\n }\n}\n#mega-menu-wrap-menu-left {\n clear: both;\n}\n','yes'),(225,'_transient_megamenu_css_version','1.9','yes'),(246,'widget_bbp_search_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(247,'widget_bbp_forums_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(248,'widget_bbp_login_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(249,'widget_bbp_replies_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(250,'widget_bbp_topics_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(251,'widget_bbp_stats_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(252,'widget_bbp_views_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(257,'widget_bcn_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(258,'widget_calendar','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(259,'widget_contact_info','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(260,'widget_nav_menu','a:6:{i:1;a:0:{}i:2;a:2:{s:5:\"title\";s:11:\"GENY School\";s:8:\"nav_menu\";i:34;}i:3;a:2:{s:5:\"title\";s:8:\"Programs\";s:8:\"nav_menu\";i:35;}i:5;a:1:{s:8:\"nav_menu\";i:37;}i:6;a:2:{s:5:\"title\";s:5:\"Apply\";s:8:\"nav_menu\";i:36;}s:12:\"_multiwidget\";i:1;}','yes'),(261,'widget_tz_view_post','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(262,'widget_note_top_content','a:3:{i:1;a:0:{}i:3;a:1:{s:21:\"tz_content-top-header\";s:8:\"Welcome!\";}s:12:\"_multiwidget\";i:1;}','yes'),(263,'widget_tribe-events-list-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(264,'widget_huge_it_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(265,'widget_maxmegamenu','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(266,'widget_pages','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(267,'widget_widget_tptn_pop','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(268,'widget_rev-slider-widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(270,'widget_tag_cloud','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(272,'widget_theme-my-login','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(273,'widget_title_detail','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(274,'megamenu_themes','a:1:{s:7:\"default\";a:173:{s:5:\"title\";s:7:\"Default\";s:8:\"arrow_up\";s:9:\"dash-f142\";s:10:\"arrow_down\";s:9:\"dash-f140\";s:10:\"arrow_left\";s:9:\"dash-f141\";s:11:\"arrow_right\";s:9:\"dash-f139\";s:21:\"responsive_breakpoint\";s:5:\"600px\";s:15:\"responsive_text\";s:4:\"MENU\";s:11:\"line_height\";s:3:\"1.7\";s:7:\"z_index\";s:3:\"999\";s:17:\"shadow_horizontal\";s:3:\"0px\";s:15:\"shadow_vertical\";s:3:\"0px\";s:11:\"shadow_blur\";s:3:\"5px\";s:13:\"shadow_spread\";s:3:\"0px\";s:12:\"shadow_color\";s:18:\"rgba(0, 0, 0, 0.1)\";s:25:\"container_background_from\";s:19:\"rgba(34, 34, 34, 0)\";s:23:\"container_background_to\";s:19:\"rgba(34, 34, 34, 0)\";s:21:\"container_padding_top\";s:3:\"0px\";s:23:\"container_padding_right\";s:3:\"0px\";s:24:\"container_padding_bottom\";s:3:\"0px\";s:22:\"container_padding_left\";s:3:\"0px\";s:32:\"container_border_radius_top_left\";s:3:\"0px\";s:33:\"container_border_radius_top_right\";s:3:\"0px\";s:36:\"container_border_radius_bottom_right\";s:3:\"0px\";s:35:\"container_border_radius_bottom_left\";s:3:\"0px\";s:15:\"menu_item_align\";s:4:\"left\";s:25:\"menu_item_background_from\";s:13:\"rgba(0,0,0,0)\";s:23:\"menu_item_background_to\";s:13:\"rgba(0,0,0,0)\";s:31:\"menu_item_background_hover_from\";s:19:\"rgba(51, 51, 51, 0)\";s:29:\"menu_item_background_hover_to\";s:19:\"rgba(51, 51, 51, 0)\";s:17:\"menu_item_spacing\";s:3:\"0px\";s:21:\"menu_item_link_height\";s:4:\"40px\";s:20:\"menu_item_link_color\";s:7:\"#ffffff\";s:24:\"menu_item_link_font_size\";s:4:\"14px\";s:19:\"menu_item_link_font\";s:7:\"inherit\";s:29:\"menu_item_link_text_transform\";s:4:\"none\";s:21:\"menu_item_link_weight\";s:6:\"normal\";s:30:\"menu_item_link_text_decoration\";s:4:\"none\";s:26:\"menu_item_link_color_hover\";s:7:\"#ffffff\";s:27:\"menu_item_link_weight_hover\";s:6:\"normal\";s:36:\"menu_item_link_text_decoration_hover\";s:4:\"none\";s:26:\"menu_item_link_padding_top\";s:3:\"0px\";s:28:\"menu_item_link_padding_right\";s:4:\"10px\";s:29:\"menu_item_link_padding_bottom\";s:3:\"0px\";s:27:\"menu_item_link_padding_left\";s:4:\"10px\";s:22:\"menu_item_border_color\";s:4:\"#fff\";s:20:\"menu_item_border_top\";s:3:\"0px\";s:22:\"menu_item_border_right\";s:3:\"0px\";s:23:\"menu_item_border_bottom\";s:3:\"0px\";s:21:\"menu_item_border_left\";s:3:\"0px\";s:28:\"menu_item_border_color_hover\";s:4:\"#fff\";s:37:\"menu_item_link_border_radius_top_left\";s:3:\"0px\";s:38:\"menu_item_link_border_radius_top_right\";s:3:\"0px\";s:41:\"menu_item_link_border_radius_bottom_right\";s:3:\"0px\";s:40:\"menu_item_link_border_radius_bottom_left\";s:3:\"0px\";s:23:\"menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:30:\"menu_item_divider_glow_opacity\";s:3:\"0.1\";s:21:\"panel_background_from\";s:7:\"#f1f1f1\";s:19:\"panel_background_to\";s:7:\"#f1f1f1\";s:11:\"panel_width\";s:4:\"100%\";s:17:\"panel_padding_top\";s:3:\"0px\";s:19:\"panel_padding_right\";s:3:\"0px\";s:20:\"panel_padding_bottom\";s:3:\"0px\";s:18:\"panel_padding_left\";s:3:\"0px\";s:18:\"panel_border_color\";s:4:\"#fff\";s:16:\"panel_border_top\";s:3:\"0px\";s:18:\"panel_border_right\";s:3:\"0px\";s:19:\"panel_border_bottom\";s:3:\"0px\";s:17:\"panel_border_left\";s:3:\"0px\";s:28:\"panel_border_radius_top_left\";s:3:\"0px\";s:29:\"panel_border_radius_top_right\";s:3:\"0px\";s:32:\"panel_border_radius_bottom_right\";s:3:\"0px\";s:31:\"panel_border_radius_bottom_left\";s:3:\"0px\";s:24:\"panel_widget_padding_top\";s:4:\"15px\";s:26:\"panel_widget_padding_right\";s:4:\"15px\";s:27:\"panel_widget_padding_bottom\";s:4:\"15px\";s:25:\"panel_widget_padding_left\";s:4:\"15px\";s:18:\"panel_header_color\";s:4:\"#555\";s:22:\"panel_header_font_size\";s:4:\"16px\";s:17:\"panel_header_font\";s:7:\"inherit\";s:24:\"panel_header_font_weight\";s:4:\"bold\";s:27:\"panel_header_text_transform\";s:9:\"uppercase\";s:28:\"panel_header_text_decoration\";s:4:\"none\";s:16:\"panel_font_color\";s:4:\"#666\";s:15:\"panel_font_size\";s:4:\"14px\";s:17:\"panel_font_family\";s:7:\"inherit\";s:24:\"panel_header_padding_top\";s:3:\"0px\";s:26:\"panel_header_padding_right\";s:3:\"0px\";s:27:\"panel_header_padding_bottom\";s:3:\"5px\";s:25:\"panel_header_padding_left\";s:3:\"0px\";s:23:\"panel_header_margin_top\";s:3:\"0px\";s:25:\"panel_header_margin_right\";s:3:\"0px\";s:26:\"panel_header_margin_bottom\";s:3:\"0px\";s:24:\"panel_header_margin_left\";s:3:\"0px\";s:25:\"panel_header_border_color\";s:4:\"#555\";s:23:\"panel_header_border_top\";s:3:\"0px\";s:25:\"panel_header_border_right\";s:3:\"0px\";s:26:\"panel_header_border_bottom\";s:3:\"0px\";s:24:\"panel_header_border_left\";s:3:\"0px\";s:29:\"panel_second_level_font_color\";s:4:\"#555\";s:28:\"panel_second_level_font_size\";s:4:\"16px\";s:23:\"panel_second_level_font\";s:7:\"inherit\";s:30:\"panel_second_level_font_weight\";s:4:\"bold\";s:33:\"panel_second_level_text_transform\";s:9:\"uppercase\";s:34:\"panel_second_level_text_decoration\";s:4:\"none\";s:35:\"panel_second_level_font_color_hover\";s:4:\"#555\";s:36:\"panel_second_level_font_weight_hover\";s:4:\"bold\";s:40:\"panel_second_level_text_decoration_hover\";s:4:\"none\";s:40:\"panel_second_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:38:\"panel_second_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:30:\"panel_second_level_padding_top\";s:3:\"0px\";s:32:\"panel_second_level_padding_right\";s:3:\"0px\";s:33:\"panel_second_level_padding_bottom\";s:3:\"0px\";s:31:\"panel_second_level_padding_left\";s:3:\"0px\";s:29:\"panel_second_level_margin_top\";s:3:\"0px\";s:31:\"panel_second_level_margin_right\";s:3:\"0px\";s:32:\"panel_second_level_margin_bottom\";s:3:\"0px\";s:30:\"panel_second_level_margin_left\";s:3:\"0px\";s:31:\"panel_second_level_border_color\";s:4:\"#555\";s:29:\"panel_second_level_border_top\";s:3:\"0px\";s:31:\"panel_second_level_border_right\";s:3:\"0px\";s:32:\"panel_second_level_border_bottom\";s:3:\"0px\";s:30:\"panel_second_level_border_left\";s:3:\"0px\";s:28:\"panel_third_level_font_color\";s:4:\"#666\";s:27:\"panel_third_level_font_size\";s:4:\"14px\";s:22:\"panel_third_level_font\";s:7:\"inherit\";s:29:\"panel_third_level_font_weight\";s:6:\"normal\";s:32:\"panel_third_level_text_transform\";s:4:\"none\";s:33:\"panel_third_level_text_decoration\";s:4:\"none\";s:34:\"panel_third_level_font_color_hover\";s:4:\"#666\";s:35:\"panel_third_level_font_weight_hover\";s:6:\"normal\";s:39:\"panel_third_level_text_decoration_hover\";s:4:\"none\";s:39:\"panel_third_level_background_hover_from\";s:13:\"rgba(0,0,0,0)\";s:37:\"panel_third_level_background_hover_to\";s:13:\"rgba(0,0,0,0)\";s:29:\"panel_third_level_padding_top\";s:3:\"0px\";s:31:\"panel_third_level_padding_right\";s:3:\"0px\";s:32:\"panel_third_level_padding_bottom\";s:3:\"0px\";s:30:\"panel_third_level_padding_left\";s:3:\"0px\";s:27:\"flyout_menu_background_from\";s:7:\"#f1f1f1\";s:25:\"flyout_menu_background_to\";s:7:\"#f1f1f1\";s:12:\"flyout_width\";s:5:\"300px\";s:18:\"flyout_padding_top\";s:3:\"0px\";s:20:\"flyout_padding_right\";s:3:\"0px\";s:21:\"flyout_padding_bottom\";s:3:\"0px\";s:19:\"flyout_padding_left\";s:3:\"0px\";s:19:\"flyout_border_color\";s:7:\"#ffffff\";s:17:\"flyout_border_top\";s:3:\"0px\";s:19:\"flyout_border_right\";s:3:\"0px\";s:20:\"flyout_border_bottom\";s:3:\"0px\";s:18:\"flyout_border_left\";s:3:\"0px\";s:29:\"flyout_border_radius_top_left\";s:3:\"0px\";s:30:\"flyout_border_radius_top_right\";s:3:\"0px\";s:33:\"flyout_border_radius_bottom_right\";s:3:\"0px\";s:32:\"flyout_border_radius_bottom_left\";s:3:\"0px\";s:22:\"flyout_background_from\";s:7:\"#f1f1f1\";s:20:\"flyout_background_to\";s:7:\"#f1f1f1\";s:28:\"flyout_background_hover_from\";s:7:\"#dddddd\";s:26:\"flyout_background_hover_to\";s:7:\"#dddddd\";s:18:\"flyout_link_height\";s:4:\"35px\";s:23:\"flyout_link_padding_top\";s:3:\"0px\";s:25:\"flyout_link_padding_right\";s:4:\"10px\";s:26:\"flyout_link_padding_bottom\";s:3:\"0px\";s:24:\"flyout_link_padding_left\";s:4:\"10px\";s:17:\"flyout_link_color\";s:4:\"#666\";s:16:\"flyout_link_size\";s:4:\"14px\";s:18:\"flyout_link_family\";s:7:\"inherit\";s:26:\"flyout_link_text_transform\";s:4:\"none\";s:18:\"flyout_link_weight\";s:6:\"normal\";s:27:\"flyout_link_text_decoration\";s:4:\"none\";s:23:\"flyout_link_color_hover\";s:4:\"#666\";s:24:\"flyout_link_weight_hover\";s:6:\"normal\";s:33:\"flyout_link_text_decoration_hover\";s:4:\"none\";s:30:\"flyout_menu_item_divider_color\";s:24:\"rgba(255, 255, 255, 0.1)\";s:10:\"custom_css\";s:114:\"#{$wrap} #{$menu} {\r\n /** Custom styles should be added below this line **/\r\n}\r\n#{$wrap} {\r\n clear: both;\r\n}\";}}','yes'),(300,'revslider-latest-version','5.0.8','yes'),(301,'revslider-notices','a:2:{i:0;O:8:\"stdClass\":7:{s:7:\"version\";s:5:\"4.9.9\";s:4:\"text\";s:197:\"<a href=\"//revolution.themepunch.com\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updatenow_banner.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS500-75\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}i:1;O:8:\"stdClass\":7:{s:7:\"version\";s:7:\"5.0.4.1\";s:4:\"text\";s:243:\"<a href=\"//revolution.themepunch.com/direct-customer-benefits/#productactivation\" target=\"_blank\"><img src=\"http://updates.themepunch.tools/banners/updateto506_banner.jpg\" style=\"min-width: 50%; max-width:100%\" alt=\"revslider 5.0 is out\" ></a>\";s:4:\"code\";s:10:\"TPRS506-01\";s:5:\"color\";s:5:\"green\";s:7:\"disable\";b:0;s:9:\"is_global\";b:0;s:10:\"additional\";a:0:{}}}','yes'),(458,'duplicate_post_copyexcerpt','1','yes'),(459,'duplicate_post_copyattachments','0','yes'),(460,'duplicate_post_copychildren','0','yes'),(461,'duplicate_post_copystatus','0','yes'),(462,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(463,'duplicate_post_show_row','1','yes'),(464,'duplicate_post_show_adminbar','1','yes'),(465,'duplicate_post_show_submitbox','1','yes'),(466,'duplicate_post_version','2.6','yes'),(478,'widget_akismet_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(515,'acf_qtranslate','a:1:{s:18:\"show_language_tabs\";s:1:\"1\";}','yes'),(522,'bogo','a:1:{s:18:\"lang_rewrite_regex\";s:13:\"(ja|ko|zh|en)\";}','yes'),(526,'widget_bogo_language_switcher','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:12:\"bogo_locales\";a:4:{i:0;s:5:\"zh_CN\";i:1;s:5:\"en_US\";i:2;s:2:\"ja\";i:3;s:5:\"ko_KR\";}}s:12:\"_multiwidget\";i:1;}','yes'),(530,'xili_language_settings','a:44:{s:8:\"taxonomy\";s:8:\"language\";s:7:\"version\";s:4:\"2.16\";s:6:\"reqtag\";s:4:\"lang\";s:13:\"browseroption\";s:0:\"\";s:19:\"authorbrowseroption\";s:0:\"\";s:14:\"taxolangsgroup\";s:15:\"languages_group\";s:16:\"functions_enable\";s:0:\"\";s:12:\"langs_folder\";s:10:\"/languages\";s:12:\"theme_domain\";s:0:\"\";s:8:\"homelang\";s:0:\"\";s:17:\"langs_list_status\";s:3:\"set\";s:11:\"in_nav_menu\";s:0:\"\";s:16:\"page_in_nav_menu\";s:0:\"\";s:22:\"page_in_nav_menu_array\";s:0:\"\";s:21:\"args_page_in_nav_menu\";s:0:\"\";s:24:\"multilingual_custom_post\";a:0:{}s:19:\"langs_in_root_theme\";s:0:\"\";s:7:\"domains\";a:17:{s:7:\"default\";s:7:\"disable\";s:16:\"breadcrumb-navxt\";s:7:\"disable\";s:17:\"xili_xl_bbp_addon\";s:7:\"disable\";s:7:\"akismet\";s:7:\"disable\";s:21:\"tribe-events-calendar\";s:7:\"disable\";s:19:\"better-font-awesome\";s:7:\"disable\";s:14:\"theme-my-login\";s:7:\"disable\";s:4:\"tptn\";s:7:\"disable\";s:8:\"megamenu\";s:7:\"disable\";s:4:\"cmb2\";s:7:\"disable\";s:10:\"buddypress\";s:7:\"disable\";s:14:\"contact-form-7\";s:7:\"disable\";s:14:\"duplicate-post\";s:7:\"disable\";s:12:\"team-members\";s:7:\"disable\";s:18:\"wordpress-importer\";s:7:\"disable\";s:11:\"wp-pagenavi\";s:7:\"disable\";s:14:\"xili_tidy_tags\";s:7:\"disable\";}s:6:\"widget\";s:6:\"enable\";s:15:\"delete_settings\";s:0:\"\";s:18:\"allcategories_lang\";s:7:\"browser\";s:13:\"lang_features\";a:4:{s:5:\"en_us\";a:2:{s:7:\"charset\";s:0:\"\";s:6:\"hidden\";s:0:\"\";}s:5:\"zh_cn\";a:2:{s:6:\"hidden\";s:0:\"\";s:7:\"charset\";s:0:\"\";}s:2:\"ja\";a:2:{s:6:\"hidden\";s:0:\"\";s:7:\"charset\";s:0:\"\";}s:5:\"ko_kr\";a:2:{s:6:\"hidden\";s:0:\"\";s:7:\"charset\";s:0:\"\";}}s:18:\"home_item_nav_menu\";s:0:\"\";s:14:\"lang_undefined\";s:1:\".\";s:20:\"lang_neither_browser\";s:0:\"\";s:9:\"wp_locale\";s:9:\"wp_locale\";s:15:\"available_langs\";a:4:{i:0;s:2:\"95\";i:1;s:2:\"97\";i:2;s:2:\"98\";i:3;s:2:\"99\";}s:17:\"creation_redirect\";s:8:\"redirect\";s:17:\"external_xl_style\";s:2:\"on\";s:18:\"nav_menu_separator\";s:1:\"|\";s:12:\"pforp_select\";s:6:\"select\";s:18:\"shortqv_slug_array\";a:0:{}s:23:\"list_pages_check_option\";s:4:\"fixe\";s:15:\"list_link_title\";a:4:{s:13:\"post_selected\";s:20:\"Posts selected in %s\";s:12:\"current_post\";s:18:\"Current post in %s\";s:12:\"latest_posts\";s:18:\"Latest posts in %s\";s:14:\"view_all_posts\";s:20:\"View all posts in %s\";}s:23:\"mo_parent_child_merging\";s:0:\"\";s:19:\"parent_langs_folder\";s:0:\"\";s:21:\"enable_fc_theme_class\";s:6:\"enable\";s:17:\"theme_alias_cache\";a:1:{s:21:\"Ethic WordPress Theme\";a:3:{s:5:\"zh_cn\";s:0:\"\";s:2:\"ja\";s:0:\"\";s:5:\"ko_kr\";s:0:\"\";}}s:14:\"langs_group_id\";s:2:\"94\";s:17:\"langs_group_tt_id\";s:2:\"94\";s:14:\"languages_list\";a:4:{i:0;O:8:\"stdClass\":10:{s:7:\"term_id\";s:2:\"95\";s:4:\"name\";s:5:\"en_US\";s:4:\"slug\";s:5:\"en_us\";s:10:\"term_group\";s:1:\"0\";s:16:\"term_taxonomy_id\";s:2:\"95\";s:11:\"description\";s:7:\"english\";s:6:\"parent\";s:1:\"0\";s:5:\"count\";s:1:\"1\";s:8:\"taxonomy\";s:8:\"language\";s:10:\"term_order\";s:1:\"0\";}i:1;O:8:\"stdClass\":10:{s:7:\"term_id\";s:2:\"97\";s:4:\"name\";s:5:\"zh_CN\";s:4:\"slug\";s:5:\"zh_cn\";s:10:\"term_group\";s:1:\"0\";s:16:\"term_taxonomy_id\";s:2:\"97\";s:11:\"description\";s:7:\"Chinese\";s:6:\"parent\";s:1:\"0\";s:5:\"count\";s:1:\"1\";s:8:\"taxonomy\";s:8:\"language\";s:10:\"term_order\";s:1:\"0\";}i:2;O:8:\"stdClass\":10:{s:7:\"term_id\";s:2:\"98\";s:4:\"name\";s:2:\"ja\";s:4:\"slug\";s:2:\"ja\";s:10:\"term_group\";s:1:\"0\";s:16:\"term_taxonomy_id\";s:2:\"98\";s:11:\"description\";s:8:\"Japanese\";s:6:\"parent\";s:1:\"0\";s:5:\"count\";s:1:\"0\";s:8:\"taxonomy\";s:8:\"language\";s:10:\"term_order\";s:1:\"0\";}i:3;O:8:\"stdClass\":10:{s:7:\"term_id\";s:2:\"99\";s:4:\"name\";s:5:\"ko_KR\";s:4:\"slug\";s:5:\"ko_kr\";s:10:\"term_group\";s:1:\"0\";s:16:\"term_taxonomy_id\";s:2:\"99\";s:11:\"description\";s:6:\"Korean\";s:6:\"parent\";s:1:\"0\";s:5:\"count\";s:1:\"0\";s:8:\"taxonomy\";s:8:\"language\";s:10:\"term_order\";s:1:\"0\";}}s:15:\"specific_widget\";a:4:{s:24:\"xili_Widget_Recent_Posts\";a:2:{s:5:\"value\";s:7:\"enabled\";s:4:\"name\";s:20:\"List of recent posts\";}s:21:\"xili_language_Widgets\";a:2:{s:5:\"value\";s:7:\"enabled\";s:4:\"name\";s:17:\"List of languages\";}s:30:\"xili_WP_Widget_Recent_Comments\";a:2:{s:5:\"value\";s:7:\"enabled\";s:4:\"name\";s:20:\"Recent Comments list\";}s:22:\"xili_Widget_Categories\";a:2:{s:5:\"value\";s:0:\"\";s:4:\"name\";s:10:\"Categories\";}}s:15:\"langs_ids_array\";a:4:{s:5:\"en_us\";s:2:\"95\";s:5:\"zh_cn\";s:2:\"97\";s:2:\"ja\";s:2:\"98\";s:5:\"ko_kr\";s:2:\"99\";}s:24:\"show_page_on_front_array\";a:4:{s:5:\"en_us\";s:3:\"536\";s:5:\"zh_cn\";s:3:\"536\";s:2:\"ja\";s:3:\"536\";s:5:\"ko_kr\";s:3:\"536\";}}','yes'),(531,'xili-xl-bbp-addon_settings','a:3:{s:15:\"reply-keep-tags\";b:0;s:16:\"css-theme-folder\";b:0;s:7:\"version\";s:3:\"1.0\";}','yes'),(534,'xili_tidy_tags_settings','a:6:{s:8:\"taxonomy\";s:14:\"xili_tidy_tags\";s:14:\"tidylangsgroup\";s:20:\"tidy-languages-group\";s:18:\"tidylangsgroupname\";s:9:\"All lang.\";s:11:\"editor_caps\";s:7:\"no_caps\";s:12:\"datatable_js\";s:0:\"\";s:7:\"version\";s:3:\"0.7\";}','yes'),(535,'xili_dictionary_settings','a:7:{s:8:\"taxonomy\";s:10:\"dictionary\";s:12:\"langs_folder\";s:10:\"/languages\";s:17:\"external_xd_style\";s:3:\"off\";s:11:\"editor_caps\";s:7:\"no_caps\";s:19:\"parent_langs_folder\";s:0:\"\";s:7:\"version\";s:3:\"2.4\";s:7:\"domains\";a:18:{s:13:\"xili-language\";s:7:\"disable\";s:7:\"bbpress\";s:7:\"disable\";s:7:\"akismet\";s:7:\"disable\";s:14:\"xili_tidy_tags\";s:7:\"disable\";s:21:\"tribe-events-calendar\";s:7:\"disable\";s:19:\"better-font-awesome\";s:7:\"disable\";s:15:\"xili-dictionary\";s:7:\"disable\";s:14:\"theme-my-login\";s:7:\"disable\";s:4:\"tptn\";s:7:\"disable\";s:8:\"megamenu\";s:7:\"disable\";s:4:\"cmb2\";s:7:\"disable\";s:16:\"breadcrumb-navxt\";s:7:\"disable\";s:10:\"buddypress\";s:7:\"disable\";s:14:\"contact-form-7\";s:7:\"disable\";s:14:\"duplicate-post\";s:7:\"disable\";s:12:\"team-members\";s:7:\"disable\";s:18:\"wordpress-importer\";s:7:\"disable\";s:11:\"wp-pagenavi\";s:7:\"disable\";}}','yes'),(536,'_transient_timeout_admin_get_flag_series','1444501460','no'),(537,'_transient_admin_get_flag_series','a:0:{}','no'),(563,'widget_xili_language_widgets','a:3:{i:3;a:9:{s:5:\"title\";s:9:\"languages\";s:10:\"beforelist\";s:0:\"\";s:10:\"beforeline\";s:0:\"\";s:9:\"afterline\";s:0:\"\";s:9:\"afterlist\";s:0:\"\";s:9:\"theoption\";s:0:\"\";s:12:\"thecondition\";s:0:\"\";s:9:\"theparams\";s:0:\"\";s:6:\"hidden\";s:0:\"\";}i:5;a:9:{s:5:\"title\";s:0:\"\";s:10:\"beforelist\";s:0:\"\";s:10:\"beforeline\";s:0:\"\";s:9:\"afterline\";s:0:\"\";s:9:\"afterlist\";s:0:\"\";s:9:\"theoption\";s:0:\"\";s:12:\"thecondition\";s:0:\"\";s:9:\"theparams\";s:0:\"\";s:6:\"hidden\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(566,'widget_xili-recent-posts','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(567,'widget_xili-recent-comments','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(568,'widget_xili_tidy_tags_cloud_widget','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(602,'icl_sitepress_version','3.2.7','yes'),(603,'icl_sitepress_settings','a:79:{s:19:\"hide_upgrade_notice\";s:5:\"3.2.7\";s:25:\"icl_capabilities_verified\";b:1;s:16:\"active_languages\";a:4:{i:0;s:2:\"en\";i:1;s:2:\"ja\";i:2;s:2:\"ko\";i:3;s:7:\"zh-hans\";}s:21:\"interview_translators\";i:1;s:34:\"existing_content_language_verified\";i:1;s:25:\"language_negotiation_type\";s:1:\"1\";s:23:\"theme_localization_type\";i:2;s:14:\"icl_lso_header\";i:0;s:18:\"icl_lso_link_empty\";s:1:\"1\";s:13:\"icl_lso_flags\";s:1:\"1\";s:19:\"icl_lso_native_lang\";s:1:\"1\";s:20:\"icl_lso_display_lang\";i:0;s:18:\"sync_page_ordering\";i:1;s:16:\"sync_page_parent\";i:1;s:18:\"sync_page_template\";i:1;s:16:\"sync_ping_status\";i:1;s:19:\"sync_comment_status\";i:1;s:16:\"sync_sticky_flag\";i:1;s:17:\"sync_private_flag\";i:1;s:16:\"sync_post_format\";i:1;s:11:\"sync_delete\";i:0;s:15:\"sync_delete_tax\";i:0;s:20:\"sync_post_taxonomies\";i:1;s:14:\"sync_post_date\";i:0;s:21:\"sync_taxonomy_parents\";i:0;s:25:\"translation_pickup_method\";i:0;s:15:\"notify_complete\";i:1;s:26:\"translated_document_status\";i:1;s:17:\"remote_management\";i:0;s:15:\"auto_adjust_ids\";i:1;s:11:\"alert_delay\";i:0;s:12:\"promote_wpml\";i:0;s:23:\"troubleshooting_options\";a:1:{s:18:\"http_communication\";i:1;}s:18:\"automatic_redirect\";i:0;s:17:\"remember_language\";i:24;s:17:\"icl_lang_sel_type\";s:4:\"list\";s:18:\"icl_lang_sel_stype\";s:11:\"mobile-auto\";s:24:\"icl_lang_sel_orientation\";s:10:\"horizontal\";s:28:\"icl_lang_sel_copy_parameters\";s:0:\"\";s:21:\"icl_widget_title_show\";i:0;s:28:\"translated_document_page_url\";s:13:\"auto-generate\";s:28:\"sync_comments_on_duplicates \";i:0;s:3:\"seo\";a:2:{s:10:\"head_langs\";i:1;s:27:\"canonicalization_duplicates\";i:1;}s:22:\"posts_slug_translation\";a:1:{s:2:\"on\";i:0;}s:15:\"languages_order\";a:4:{i:0;s:2:\"en\";i:1;s:7:\"zh-hans\";i:2;s:2:\"ja\";i:3;s:2:\"ko\";}s:4:\"urls\";a:5:{s:30:\"directory_for_default_language\";i:0;s:12:\"show_on_root\";s:0:\"\";s:19:\"root_html_file_path\";s:0:\"\";s:9:\"root_page\";i:0;s:23:\"hide_language_switchers\";i:1;}s:22:\"admin_default_language\";s:2:\"en\";s:22:\"taxonomy_names_checked\";b:1;s:14:\"setup_complete\";i:1;s:18:\"ajx_health_checked\";b:1;s:18:\"default_categories\";a:4:{s:2:\"en\";s:2:\"49\";s:7:\"zh-hans\";i:101;s:2:\"ja\";i:102;s:2:\"ko\";i:103;}s:16:\"default_language\";s:2:\"en\";s:17:\"setup_wizard_step\";i:4;s:22:\"translation-management\";a:12:{s:12:\"notification\";a:5:{s:7:\"new-job\";i:1;s:9:\"completed\";i:1;s:8:\"resigned\";i:1;s:9:\"dashboard\";b:1;s:9:\"purge-old\";i:7;}s:25:\"custom_fields_translation\";a:20:{s:5:\"title\";i:2;s:11:\"description\";i:2;s:8:\"keywords\";i:2;s:10:\"_edit_last\";i:0;s:10:\"_edit_lock\";i:0;s:17:\"_wp_page_template\";i:0;s:23:\"_wp_attachment_metadata\";i:0;s:16:\"original_post_id\";i:0;s:22:\"_wpml_original_post_id\";i:0;s:12:\"_wp_old_slug\";i:0;s:20:\"_icl_translator_note\";i:0;s:14:\"_alp_processed\";i:0;s:7:\"_pingme\";i:0;s:10:\"_encloseme\";i:0;s:22:\"_icl_lang_duplicate_of\";i:0;s:13:\"_thumbnail_id\";i:0;s:17:\"_wp_attached_file\";i:0;s:17:\"_cms_nav_minihome\";i:1;s:16:\"_cms_nav_section\";i:2;s:17:\"_top_nav_excluded\";i:1;}s:29:\"custom-fields_readonly_config\";a:0:{}s:32:\"custom_fields_translation_custom\";a:0:{}s:41:\"custom_fields_translation_custom_readonly\";a:0:{}s:22:\"doc_translation_method\";i:0;s:35:\"__custom_types_readonly_config_prev\";a:0:{}s:28:\"custom_types_readonly_config\";a:0:{}s:36:\"__custom_fields_readonly_config_prev\";a:20:{i:0;s:5:\"title\";i:1;s:11:\"description\";i:2;s:8:\"keywords\";i:3;s:10:\"_edit_last\";i:4;s:10:\"_edit_lock\";i:5;s:17:\"_wp_page_template\";i:6;s:23:\"_wp_attachment_metadata\";i:7;s:16:\"original_post_id\";i:8;s:22:\"_wpml_original_post_id\";i:9;s:12:\"_wp_old_slug\";i:10;s:20:\"_icl_translator_note\";i:11;s:14:\"_alp_processed\";i:12;s:7:\"_pingme\";i:13;s:10:\"_encloseme\";i:14;s:22:\"_icl_lang_duplicate_of\";i:15;s:13:\"_thumbnail_id\";i:16;s:17:\"_wp_attached_file\";i:17;s:17:\"_cms_nav_minihome\";i:18;s:16:\"_cms_nav_section\";i:19;s:17:\"_top_nav_excluded\";}s:29:\"custom_fields_readonly_config\";a:20:{i:0;s:5:\"title\";i:1;s:11:\"description\";i:2;s:8:\"keywords\";i:3;s:10:\"_edit_last\";i:4;s:10:\"_edit_lock\";i:5;s:17:\"_wp_page_template\";i:6;s:23:\"_wp_attachment_metadata\";i:7;s:16:\"original_post_id\";i:8;s:22:\"_wpml_original_post_id\";i:9;s:12:\"_wp_old_slug\";i:10;s:20:\"_icl_translator_note\";i:11;s:14:\"_alp_processed\";i:12;s:7:\"_pingme\";i:13;s:10:\"_encloseme\";i:14;s:22:\"_icl_lang_duplicate_of\";i:15;s:13:\"_thumbnail_id\";i:16;s:17:\"_wp_attached_file\";i:17;s:17:\"_cms_nav_minihome\";i:18;s:16:\"_cms_nav_section\";i:19;s:17:\"_top_nav_excluded\";}s:26:\"taxonomies_readonly_config\";a:1:{s:16:\"ourteam-category\";i:1;}s:28:\"custom-types_readonly_config\";a:1:{s:7:\"ourteam\";i:1;}}s:24:\"custom_posts_sync_option\";a:1:{s:7:\"ourteam\";i:1;}s:22:\"taxonomies_sync_option\";a:1:{s:16:\"ourteam-category\";i:1;}s:24:\"custom-types_sync_option\";a:1:{s:7:\"ourteam\";i:1;}s:19:\"font-current-normal\";s:7:\"#444444\";s:18:\"font-current-hover\";s:7:\"#000000\";s:25:\"background-current-normal\";s:7:\"#ffffff\";s:24:\"background-current-hover\";s:7:\"#eeeeee\";s:17:\"font-other-normal\";s:7:\"#444444\";s:16:\"font-other-hover\";s:7:\"#000000\";s:23:\"background-other-normal\";s:7:\"#ffffff\";s:22:\"background-other-hover\";s:7:\"#eeeeee\";s:6:\"border\";s:7:\"#cdcdcd\";s:19:\"icl_lang_sel_config\";a:10:{s:19:\"font-current-normal\";s:7:\"#ffffff\";s:18:\"font-current-hover\";s:7:\"#000000\";s:25:\"background-current-normal\";s:7:\"#e5a82e\";s:24:\"background-current-hover\";s:7:\"#e5a82e\";s:17:\"font-other-normal\";s:7:\"#ffffff\";s:16:\"font-other-hover\";s:7:\"#000000\";s:23:\"background-other-normal\";s:7:\"#e5a82e\";s:22:\"background-other-hover\";s:7:\"#e5a82e\";s:6:\"border\";s:7:\"#e5a82e\";s:10:\"background\";s:7:\"#e5a82e\";}s:26:\"icl_lang_sel_footer_config\";a:10:{s:19:\"font-current-normal\";s:7:\"#444444\";s:18:\"font-current-hover\";s:7:\"#000000\";s:25:\"background-current-normal\";s:7:\"#eeeeee\";s:24:\"background-current-hover\";s:7:\"#eeeeee\";s:17:\"font-other-normal\";s:7:\"#444444\";s:16:\"font-other-hover\";s:7:\"#000000\";s:23:\"background-other-normal\";s:7:\"#eeeeee\";s:22:\"background-other-hover\";s:7:\"#eeeeee\";s:6:\"border\";s:7:\"#cdcdcd\";s:10:\"background\";s:7:\"#eeeeee\";}s:29:\"icl_language_switcher_sidebar\";s:1:\"0\";s:19:\"icl_lang_sel_footer\";i:1;s:21:\"icl_post_availability\";i:0;s:30:\"icl_post_availability_position\";s:5:\"below\";s:26:\"icl_post_availability_text\";s:34:\"This post is also available in: %s\";s:29:\"language_selector_initialized\";i:1;s:18:\"icl_additional_css\";s:0:\"\";s:18:\"display_ls_in_menu\";i:0;s:11:\"menu_for_ls\";i:43;s:22:\"show_translations_flag\";i:1;s:16:\"language_domains\";a:3:{s:7:\"zh-hans\";s:24:\"http://zh-hans.localhost\";s:2:\"ja\";s:19:\"http://ja.localhost\";s:2:\"ko\";s:19:\"http://ko.localhost\";}}','yes'),(604,'wpml_config_index','O:8:\"stdClass\":2:{s:7:\"plugins\";a:26:{i:0;O:8:\"stdClass\":5:{s:4:\"name\";s:38:\"WooCommerce Catalog Visibility Options\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1408625614;s:4:\"path\";s:66:\"wpml-config/woocommerce-catalog-visibility-options/wpml-config.xml\";s:4:\"hash\";s:32:\"d10bd6388a88521e488f7e4ba295c94c\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:27:\"WooCommerce Paymill Gateway\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1408626572;s:4:\"path\";s:55:\"wpml-config/woocommerce-paymill-gateway/wpml-config.xml\";s:4:\"hash\";s:32:\"46409842584ff8df43a2aa922ad1d388\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:26:\"WooCommerce Stripe Gateway\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409061503;s:4:\"path\";s:54:\"wpml-config/woocommerce-stripe-gateway/wpml-config.xml\";s:4:\"hash\";s:32:\"4139e23bcdd0bb3e78cb079fa851ce85\";}i:3;O:8:\"stdClass\":5:{s:4:\"name\";s:27:\"WooCommerce Product Add-ons\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409062371;s:4:\"path\";s:55:\"wpml-config/woocommerce-product-add-ons/wpml-config.xml\";s:4:\"hash\";s:32:\"75320b24a703c55370175379c2faf22d\";}i:4;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce PostePay\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409063136;s:4:\"path\";s:48:\"wpml-config/woocommerce-postepay/wpml-config.xml\";s:4:\"hash\";s:32:\"b08722979a25b15ba4a02a16fb555ccc\";}i:5;O:8:\"stdClass\":5:{s:4:\"name\";s:6:\"Sensei\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1437058092;s:4:\"path\";s:34:\"wpml-config/sensei/wpml-config.xml\";s:4:\"hash\";s:32:\"eb75b5172a578bffdbd740f38c227b30\";}i:6;O:8:\"stdClass\":5:{s:4:\"name\";s:25:\"NW ADCart for WooCommerce\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409734281;s:4:\"path\";s:53:\"wpml-config/nw-adcart-for-woocommerce/wpml-config.xml\";s:4:\"hash\";s:32:\"91d62df0659fc7b561a3932a7a52de6a\";}i:7;O:8:\"stdClass\":5:{s:4:\"name\";s:35:\"Product Enquiry Pro for WooCommerce\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409734531;s:4:\"path\";s:63:\"wpml-config/product-enquiry-pro-for-woocommerce/wpml-config.xml\";s:4:\"hash\";s:32:\"305232f06370d52a29c346d6b711f50a\";}i:8;O:8:\"stdClass\":5:{s:4:\"name\";s:17:\"WooCommerce Plivo\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409734705;s:4:\"path\";s:45:\"wpml-config/woocommerce-plivo/wpml-config.xml\";s:4:\"hash\";s:32:\"539d172825c4714d69b8a42ad1826c5d\";}i:9;O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"WooCommerce Embed Slides\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1409813892;s:4:\"path\";s:52:\"wpml-config/woocommerce-embed-slides/wpml-config.xml\";s:4:\"hash\";s:32:\"f92b0578c4950e1d7ced60bbdba7ed5b\";}i:10;O:8:\"stdClass\":5:{s:4:\"name\";s:22:\"PayPal for WooCommerce\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1412841483;s:4:\"path\";s:54:\"wpml-config/paypal-for-woocommerce/wpml-config (1).xml\";s:4:\"hash\";s:32:\"4ec8cff3c1bd61950873206196a29348\";}i:11;O:8:\"stdClass\":5:{s:4:\"name\";s:27:\"WooCommerce Product Bundles\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1414747440;s:4:\"path\";s:55:\"wpml-config/woocommerce-product-bundles/wpml-config.xml\";s:4:\"hash\";s:32:\"81eae0e4985a54c08a2486cbc0cba690\";}i:12;O:8:\"stdClass\":5:{s:4:\"name\";s:28:\"WooCommerce Price by Country\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1415282919;s:4:\"path\";s:56:\"wpml-config/woocommerce-price-by-country/wpml-config.xml\";s:4:\"hash\";s:32:\"9b296d64ba8afee80cb1ff4fac80144b\";}i:13;O:8:\"stdClass\":5:{s:4:\"name\";s:21:\"WooCommerce Video Tab\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1415284344;s:4:\"path\";s:49:\"wpml-config/woocommerce-video-tab/wpml-config.xml\";s:4:\"hash\";s:32:\"7f9769bc2769e07ae730f3b4cd307741\";}i:14;O:8:\"stdClass\":5:{s:4:\"name\";s:24:\"WooCommerce Multilingual\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1435746652;s:4:\"path\";s:52:\"wpml-config/woocommerce-multilingual/wpml-config.xml\";s:4:\"hash\";s:32:\"ac4db24282debd70520890d6832ea2f0\";}i:15;O:8:\"stdClass\":7:{s:4:\"name\";s:16:\"WPML Test Config\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1429773131;s:4:\"path\";s:44:\"wpml-config/wpml-test-config/wpml-config.xml\";s:4:\"hash\";s:32:\"9c3bb313d5a4f028bebfa8fc8af990a3\";s:4:\"user\";s:5:\"admin\";s:7:\"details\";s:3:\"222\";}i:16;O:8:\"stdClass\":5:{s:4:\"name\";s:29:\"WooCommerce Product Gift Wrap\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1429640013;s:4:\"path\";s:57:\"wpml-config/woocommerce-product-gift-wrap/wpml-config.xml\";s:4:\"hash\";s:32:\"dd3371d64d2ee01e6e42fd7e0bd134cf\";}i:17;O:8:\"stdClass\":5:{s:4:\"name\";s:13:\"WordPress SEO\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1437548309;s:4:\"path\";s:41:\"wpml-config/wordpress-seo/wpml-config.xml\";s:4:\"hash\";s:32:\"6cdbcb3059702992376099699aa2f196\";}i:18;O:8:\"stdClass\":5:{s:4:\"name\";s:23:\"WooCommerce Tab Manager\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1433882104;s:4:\"path\";s:51:\"wpml-config/woocommerce-tab-manager/wpml-config.xml\";s:4:\"hash\";s:32:\"0824e477b8f1e70d10476eebaf0ac7cb\";}i:19;O:8:\"stdClass\":5:{s:4:\"name\";s:20:\"WooCommerce Bookings\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1436527550;s:4:\"path\";s:48:\"wpml-config/woocommerce-bookings/wpml-config.xml\";s:4:\"hash\";s:32:\"49eee5eb84c718c7bca44c59063fb58d\";}i:20;O:8:\"stdClass\":7:{s:4:\"name\";s:35:\"YITH WooCommerce Quick View Premium\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1439206201;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:63:\"wpml-config/yith-woocommerce-quick-view-premium/wpml-config.xml\";s:4:\"hash\";s:32:\"656f1dcbcad67f5a4cbc7747520ef4e2\";}i:21;O:8:\"stdClass\":7:{s:4:\"name\";s:46:\"Multibanco (IfthenPay gateway) for WooCommerce\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1441014802;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:72:\"wpml-config/multibanco-ifthenpay-gateway-for-woocommerce/wpml-config.xml\";s:4:\"hash\";s:32:\"3cddef77fd163e090472f995aa2388d4\";}i:22;O:8:\"stdClass\":7:{s:4:\"name\";s:35:\"WooCommerce Advanced Product Labels\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1441177109;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:63:\"wpml-config/woocommerce-advanced-product-labels/wpml-config.xml\";s:4:\"hash\";s:32:\"4b29c29516a1a33b328d90ffc5c4aad7\";}i:23;O:8:\"stdClass\":7:{s:4:\"name\";s:30:\"WooCommerce Composite Products\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1441892326;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:58:\"wpml-config/woocommerce-composite-products/wpml-config.xml\";s:4:\"hash\";s:32:\"158e4ddfee28942b3f5dd5f9e453afd8\";}i:24;O:8:\"stdClass\":7:{s:4:\"name\";s:29:\"YITH WooCommerce Catalog Mode\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1441961342;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:57:\"wpml-config/yith-woocommerce-catalog-mode/wpml-config.xml\";s:4:\"hash\";s:32:\"ca50a47d4254cbd04254c4448c511e22\";}i:25;O:8:\"stdClass\":7:{s:4:\"name\";s:21:\"Woocomerce Brands Pro\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1442243436;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:49:\"wpml-config/woocomerce-brands-pro/wpml-config.xml\";s:4:\"hash\";s:32:\"dc7eeb10cd6e0eb80b7960eb8b6058a4\";}}s:6:\"themes\";a:7:{i:0;O:8:\"stdClass\":7:{s:4:\"name\";s:6:\"Canvas\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1440487063;s:4:\"path\";s:34:\"wpml-config/canvas/wpml-config.xml\";s:4:\"hash\";s:32:\"fae38637bbf52477aed839bd52c8b3f9\";s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";}i:1;O:8:\"stdClass\":5:{s:4:\"name\";s:4:\"Kleo\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1425651882;s:4:\"path\";s:32:\"wpml-config/kleo/wpml-config.xml\";s:4:\"hash\";s:32:\"442023138b716c2f410690eabeeab185\";}i:2;O:8:\"stdClass\":5:{s:4:\"name\";s:4:\"Port\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1426496203;s:4:\"path\";s:32:\"wpml-config/port/wpml-config.xml\";s:4:\"hash\";s:32:\"788cce209545b94cfede660d543d7013\";}i:3;O:8:\"stdClass\":7:{s:4:\"name\";s:36:\"IDStore - Responsive WordPress Theme\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1439455467;s:4:\"path\";s:62:\"wpml-config/idstore-responsive-wordpress-theme/wpml-config.xml\";s:4:\"hash\";s:32:\"c4ab5787cebb38c0358286626710ab37\";s:4:\"user\";s:9:\"test92818\";s:7:\"details\";s:0:\"\";}i:4;O:8:\"stdClass\":7:{s:4:\"name\";s:4:\"Divi\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1439455645;s:4:\"path\";s:32:\"wpml-config/divi/wpml-config.xml\";s:4:\"hash\";s:32:\"e173fef97b9b8d927f8a35b85ce769f6\";s:4:\"user\";s:9:\"test92818\";s:7:\"details\";s:0:\"\";}i:5;O:8:\"stdClass\":7:{s:4:\"name\";s:5:\"Avada\";s:14:\"override_local\";b:1;s:7:\"updated\";i:1438069249;s:4:\"path\";s:33:\"wpml-config/avada/wpml-config.xml\";s:4:\"hash\";s:32:\"a6e665ddc77c559642c5a6815930efd5\";s:4:\"user\";s:7:\"harshad\";s:7:\"details\";s:0:\"\";}i:6;O:8:\"stdClass\":7:{s:4:\"name\";s:9:\"Customizr\";s:14:\"override_local\";b:0;s:7:\"updated\";i:1440909043;s:4:\"user\";s:6:\"amit.k\";s:7:\"details\";s:0:\"\";s:4:\"path\";s:37:\"wpml-config/customizr/wpml-config.xml\";s:4:\"hash\";s:32:\"d63f73a0df72ab558bdbfaadaeb9c737\";}}}','yes'),(605,'wpml_config_index_updated','1442285080','yes'),(606,'wpml_config_files_arr','O:8:\"stdClass\":2:{s:6:\"themes\";a:0:{}s:7:\"plugins\";a:0:{}}','yes'),(608,'icl_admin_messages','a:2:{s:8:\"messages\";a:0:{}s:16:\"instant_messages\";a:0:{}}','yes'),(609,'wp_installer_settings','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','yes'),(611,'category_children_','a:0:{}','yes'),(613,'category_children_en','a:0:{}','yes'),(614,'category_children_all','a:0:{}','yes'),(617,'category_children','a:0:{}','yes'),(619,'widget_icl_lang_sel_widget','a:3:{i:4;a:1:{s:10:\"title_show\";i:0;}i:6;a:1:{s:10:\"title_show\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(621,'wpml_cms_nav_settings','a:9:{s:10:\"page_order\";s:10:\"menu_order\";s:13:\"show_cat_menu\";i:0;s:19:\"cat_menu_page_order\";s:1:\"0\";s:17:\"cat_menu_contents\";s:5:\"posts\";s:13:\"heading_start\";s:0:\"\";s:11:\"heading_end\";s:0:\"\";s:5:\"cache\";i:0;s:21:\"breadcrumbs_separator\";s:9:\" » \";s:14:\"cat_menu_title\";s:4:\"News\";}','yes'),(622,'WPML_CMS_NAV_VERSION','1.4.11','yes'),(625,'_transient_90ab5827af4164115fe869d777800bc0','en','yes'),(626,'revslider-valid-notice','false','yes'),(627,'category_children_zh-hans','a:0:{}','yes'),(643,'nav_menu_children_en','a:0:{}','yes'),(644,'nav_menu_children_ja','a:0:{}','yes'),(645,'nav_menu_children_ko','a:0:{}','yes'),(646,'nav_menu_children_zh-hans','a:0:{}','yes'),(647,'nav_menu_children_all','a:0:{}','yes'),(656,'widget_sidebar-navigation','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(657,'category_children_ja','a:0:{}','yes'),(670,'category_children_ko','a:0:{}','yes'),(680,'megamenu_locations','a:0:{}','yes'),(1790,'post_tag_children_en','a:0:{}','yes'),(1791,'post_tag_children_ja','a:0:{}','yes'),(1792,'post_tag_children_ko','a:0:{}','yes'),(1793,'post_tag_children_zh-hans','a:0:{}','yes'),(1794,'post_tag_children_all','a:0:{}','yes'),(2231,'_site_transient_update_themes','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1442343360;s:7:\"checked\";a:4:{s:5:\"ethic\";s:3:\"1.0\";s:13:\"twentyfifteen\";s:3:\"1.3\";s:14:\"twentyfourteen\";s:3:\"1.5\";s:14:\"twentythirteen\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}}','yes'),(2290,'ourteam-category_children_en','a:0:{}','yes'),(2291,'ourteam-category_children','a:0:{}','yes'),(2344,'rewrite_rules','a:284:{s:59:\"(?:event|%e6%b4%bb%e5%8a%a8)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:56:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]\";s:113:\"(?:event|%e6%b4%bb%e5%8a%a8)/([^/]+)/(?:all|%e5%85%a8%e9%83%a8|%e3%81%99%e3%81%b9%e3%81%a6|%eb%aa%a8%eb%91%90)/?$\";s:74:\"index.php?tribe_events=$matches[1]&post_type=tribe_events&eventDisplay=all\";s:64:\"(?:event|%e6%b4%bb%e5%8a%a8)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:63:\"index.php?tribe_events=$matches[1]&eventDate=$matches[2]&ical=1\";s:44:\"(?:event|%e6%b4%bb%e5%8a%a8)/([^/]+)/ical/?$\";s:56:\"index.php?ical=1&name=$matches[1]&post_type=tribe_events\";s:47:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:57:\"(?:events|%e6%b4%bb%e5%8a%a8)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=tribe_events&eventDisplay=list&feed=$matches[1]\";s:81:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:month|%e6%9c%88%e4%bb%bd|%e6%9c%88|%ec%9b%94)/?$\";s:51:\"index.php?post_type=tribe_events&eventDisplay=month\";s:75:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:list|%e5%88%97%e8%a1%a8)/(?:page)/(\\d+)/?$\";s:68:\"index.php?post_type=tribe_events&eventDisplay=list&paged=$matches[1]\";s:60:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:list|%e5%88%97%e8%a1%a8)/?$\";s:50:\"index.php?post_type=tribe_events&eventDisplay=list\";s:99:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:today|%e4%bb%8a%e5%a4%a9|%e4%bb%8a%e6%97%a5|%ec%98%a4%eb%8a%98)/?$\";s:49:\"index.php?post_type=tribe_events&eventDisplay=day\";s:46:\"(?:events|%e6%b4%bb%e5%8a%a8)/(\\d{4}-\\d{2})/?$\";s:73:\"index.php?post_type=tribe_events&eventDisplay=month&eventDate=$matches[1]\";s:52:\"(?:events|%e6%b4%bb%e5%8a%a8)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:71:\"index.php?post_type=tribe_events&eventDisplay=day&eventDate=$matches[1]\";s:32:\"(?:events|%e6%b4%bb%e5%8a%a8)/?$\";s:53:\"index.php?post_type=tribe_events&eventDisplay=default\";s:37:\"(?:events|%e6%b4%bb%e5%8a%a8)/ical/?$\";s:39:\"index.php?post_type=tribe_events&ical=1\";s:57:\"(?:events|%e6%b4%bb%e5%8a%a8)/(\\d{4}-\\d{2}-\\d{2})/ical/?$\";s:78:\"index.php?post_type=tribe_events&ical=1&eventDisplay=day&eventDate=$matches[1]\";s:126:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:160:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:month|%e6%9c%88%e4%bb%bd|%e6%9c%88|%ec%9b%94)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:154:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:list|%e5%88%97%e8%a1%a8)/(?:page)/(\\d+)/?$\";s:97:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:139:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:list|%e5%88%97%e8%a1%a8)/?$\";s:79:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list\";s:178:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:today|%e4%bb%8a%e5%a4%a9|%e4%bb%8a%e6%97%a5|%ec%98%a4%eb%8a%98)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day\";s:178:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(?:day|%e6%97%a5%e6%9c%9f|%e6%97%a5|%ec%9d%bc)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:125:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2})/?$\";s:102:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:131:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:100:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:116:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/feed/?$\";s:89:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=list&feed=rss2\";s:116:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/ical/?$\";s:68:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&ical=1\";s:141:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:78:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&feed=$matches[2]\";s:111:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:category|%e7%b1%bb%e5%88%ab|%e7%b1%bb%e5%88%ab%ef%bc%9a)/(?:[^/]+/)*([^/]+)/?$\";s:80:\"index.php?post_type=tribe_events&tribe_events_cat=$matches[1]&eventDisplay=month\";s:82:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:116:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:month|%e6%9c%88%e4%bb%bd|%e6%9c%88|%ec%9b%94)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:110:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:list|%e5%88%97%e8%a1%a8)/(?:page)/(\\d+)/?$\";s:84:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&paged=$matches[2]\";s:95:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:list|%e5%88%97%e8%a1%a8)/?$\";s:66:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list\";s:134:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:today|%e4%bb%8a%e5%a4%a9|%e4%bb%8a%e6%97%a5|%ec%98%a4%eb%8a%98)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day\";s:134:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(?:day|%e6%97%a5%e6%9c%9f|%e6%97%a5|%ec%9d%bc)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:81:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(\\d{4}-\\d{2})/?$\";s:89:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month&eventDate=$matches[2]\";s:87:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/(\\d{4}-\\d{2}-\\d{2})/?$\";s:87:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=day&eventDate=$matches[2]\";s:72:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/feed/?$\";s:76:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=list&feed=rss2\";s:72:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/ical/?$\";s:55:\"index.php?post_type=tribe_events&tag=$matches[1]&ical=1\";s:97:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:65:\"index.php?post_type=tribe_events&tag=$matches[1]&feed=$matches[2]\";s:67:\"(?:events|%e6%b4%bb%e5%8a%a8)/(?:tag|%e6%a0%87%e7%b1%a4)/([^/]+)/?$\";s:67:\"index.php?post_type=tribe_events&tag=$matches[1]&eventDisplay=month\";s:9:\"forums/?$\";s:25:\"index.php?post_type=forum\";s:39:\"forums/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:34:\"forums/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=forum&feed=$matches[1]\";s:26:\"forums/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=forum&paged=$matches[1]\";s:9:\"topics/?$\";s:25:\"index.php?post_type=topic\";s:39:\"topics/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:34:\"topics/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?post_type=topic&feed=$matches[1]\";s:26:\"topics/page/([0-9]{1,})/?$\";s:43:\"index.php?post_type=topic&paged=$matches[1]\";s:28:\"forums/forum/([^/]+)/edit/?$\";s:34:\"index.php?forum=$matches[1]&edit=1\";s:28:\"forums/topic/([^/]+)/edit/?$\";s:34:\"index.php?topic=$matches[1]&edit=1\";s:28:\"forums/reply/([^/]+)/edit/?$\";s:34:\"index.php?reply=$matches[1]&edit=1\";s:32:\"forums/topic-tag/([^/]+)/edit/?$\";s:38:\"index.php?topic-tag=$matches[1]&edit=1\";s:47:\"forums/user/([^/]+)/topics/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_tops=1&paged=$matches[2]\";s:48:\"forums/user/([^/]+)/replies/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_reps=1&paged=$matches[2]\";s:50:\"forums/user/([^/]+)/favorites/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_favs=1&paged=$matches[2]\";s:54:\"forums/user/([^/]+)/subscriptions/page/?([0-9]{1,})/?$\";s:59:\"index.php?bbp_user=$matches[1]&bbp_subs=1&paged=$matches[2]\";s:29:\"forums/user/([^/]+)/topics/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_tops=1\";s:30:\"forums/user/([^/]+)/replies/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_reps=1\";s:32:\"forums/user/([^/]+)/favorites/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_favs=1\";s:36:\"forums/user/([^/]+)/subscriptions/?$\";s:41:\"index.php?bbp_user=$matches[1]&bbp_subs=1\";s:27:\"forums/user/([^/]+)/edit/?$\";s:37:\"index.php?bbp_user=$matches[1]&edit=1\";s:22:\"forums/user/([^/]+)/?$\";s:30:\"index.php?bbp_user=$matches[1]\";s:40:\"forums/view/([^/]+)/page/?([0-9]{1,})/?$\";s:48:\"index.php?bbp_view=$matches[1]&paged=$matches[2]\";s:27:\"forums/view/([^/]+)/feed/?$\";s:47:\"index.php?bbp_view=$matches[1]&feed=$matches[2]\";s:22:\"forums/view/([^/]+)/?$\";s:30:\"index.php?bbp_view=$matches[1]\";s:34:\"forums/search/page/?([0-9]{1,})/?$\";s:27:\"index.php?paged=$matches[1]\";s:16:\"forums/search/?$\";s:20:\"index.php?bbp_search\";s:8:\"event/?$\";s:32:\"index.php?post_type=tribe_events\";s:38:\"event/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:33:\"event/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?post_type=tribe_events&feed=$matches[1]\";s:25:\"event/page/([0-9]{1,})/?$\";s:50:\"index.php?post_type=tribe_events&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s: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: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: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:38:\"forums/forum/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:48:\"forums/forum/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:68:\"forums/forum/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:63:\"forums/forum/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)/trackback/?$\";s:32:\"index.php?forum=$matches[1]&tb=1\";s:51:\"forums/forum/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:46:\"forums/forum/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?forum=$matches[1]&feed=$matches[2]\";s:39:\"forums/forum/(.+?)/page/?([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&paged=$matches[2]\";s:46:\"forums/forum/(.+?)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?forum=$matches[1]&cpage=$matches[2]\";s:31:\"forums/forum/(.+?)(/[0-9]+)?/?$\";s:44:\"index.php?forum=$matches[1]&page=$matches[2]\";s:40:\"forums/topic/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/topic/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/topic/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/topic/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)/trackback/?$\";s:32:\"index.php?topic=$matches[1]&tb=1\";s:53:\"forums/topic/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:48:\"forums/topic/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:44:\"index.php?topic=$matches[1]&feed=$matches[2]\";s:41:\"forums/topic/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&paged=$matches[2]\";s:48:\"forums/topic/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?topic=$matches[1]&cpage=$matches[2]\";s:33:\"forums/topic/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?topic=$matches[1]&page=$matches[2]\";s:29:\"forums/topic/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/topic/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/topic/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/topic/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:40:\"forums/reply/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"forums/reply/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"forums/reply/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"forums/reply/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)/trackback/?$\";s:32:\"index.php?reply=$matches[1]&tb=1\";s:41:\"forums/reply/([^/]+)/page/?([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&paged=$matches[2]\";s:48:\"forums/reply/([^/]+)/comment-page-([0-9]{1,})/?$\";s:45:\"index.php?reply=$matches[1]&cpage=$matches[2]\";s:33:\"forums/reply/([^/]+)(/[0-9]+)?/?$\";s:44:\"index.php?reply=$matches[1]&page=$matches[2]\";s:29:\"forums/reply/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"forums/reply/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"forums/reply/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"forums/reply/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"forums/topic-tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:52:\"forums/topic-tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:48:\"index.php?topic-tag=$matches[1]&feed=$matches[2]\";s:45:\"forums/topic-tag/([^/]+)/page/?([0-9]{1,})/?$\";s:49:\"index.php?topic-tag=$matches[1]&paged=$matches[2]\";s:27:\"forums/topic-tag/([^/]+)/?$\";s:31:\"index.php?topic-tag=$matches[1]\";s:42:\"forums/search/([^/]+)/page/?([0-9]{1,})/?$\";s:50:\"index.php?bbp_search=$matches[1]&paged=$matches[2]\";s:24:\"forums/search/([^/]+)/?$\";s:32:\"index.php?bbp_search=$matches[1]\";s:55:\"bp_member_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?bp_member_type=$matches[1]&feed=$matches[2]\";s:50:\"bp_member_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:53:\"index.php?bp_member_type=$matches[1]&feed=$matches[2]\";s:43:\"bp_member_type/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?bp_member_type=$matches[1]&paged=$matches[2]\";s:25:\"bp_member_type/([^/]+)/?$\";s:36:\"index.php?bp_member_type=$matches[1]\";s:40:\"vc_grid_item/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:50:\"vc_grid_item/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:70:\"vc_grid_item/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:65:\"vc_grid_item/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"vc_grid_item/([^/]+)/trackback/?$\";s:39:\"index.php?vc_grid_item=$matches[1]&tb=1\";s:41:\"vc_grid_item/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&paged=$matches[2]\";s:48:\"vc_grid_item/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?vc_grid_item=$matches[1]&cpage=$matches[2]\";s:33:\"vc_grid_item/([^/]+)(/[0-9]+)?/?$\";s:51:\"index.php?vc_grid_item=$matches[1]&page=$matches[2]\";s:29:\"vc_grid_item/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:39:\"vc_grid_item/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:59:\"vc_grid_item/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:54:\"vc_grid_item/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:31:\"tmm/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"tmm/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"tmm/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"tmm/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"tmm/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:24:\"tmm/([^/]+)/trackback/?$\";s:30:\"index.php?tmm=$matches[1]&tb=1\";s:32:\"tmm/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tmm=$matches[1]&paged=$matches[2]\";s:39:\"tmm/([^/]+)/comment-page-([0-9]{1,})/?$\";s:43:\"index.php?tmm=$matches[1]&cpage=$matches[2]\";s:24:\"tmm/([^/]+)(/[0-9]+)?/?$\";s:42:\"index.php?tmm=$matches[1]&page=$matches[2]\";s:20:\"tmm/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:30:\"tmm/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:50:\"tmm/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"tmm/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:45:\"tmm/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"event/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"event/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"event/([^/]+)/trackback/?$\";s:39:\"index.php?tribe_events=$matches[1]&tb=1\";s:46:\"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:41:\"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:51:\"index.php?tribe_events=$matches[1]&feed=$matches[2]\";s:34:\"event/([^/]+)/page/?([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&paged=$matches[2]\";s:41:\"event/([^/]+)/comment-page-([0-9]{1,})/?$\";s:52:\"index.php?tribe_events=$matches[1]&cpage=$matches[2]\";s:26:\"event/([^/]+)(/[0-9]+)?/?$\";s:51:\"index.php?tribe_events=$matches[1]&page=$matches[2]\";s:22:\"event/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"event/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"venue/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:43:\"venue/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:63:\"venue/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:58:\"venue/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:26:\"venue/([^/]+)/trackback/?$\";s:38:\"index.php?tribe_venue=$matches[1]&tb=1\";s:34:\"venue/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&paged=$matches[2]\";s:41:\"venue/([^/]+)/comment-page-([0-9]{1,})/?$\";s:51:\"index.php?tribe_venue=$matches[1]&cpage=$matches[2]\";s:26:\"venue/([^/]+)(/[0-9]+)?/?$\";s:50:\"index.php?tribe_venue=$matches[1]&page=$matches[2]\";s:22:\"venue/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:32:\"venue/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:52:\"venue/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:47:\"venue/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"organizer/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:47:\"organizer/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:67:\"organizer/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:62:\"organizer/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:30:\"organizer/([^/]+)/trackback/?$\";s:42:\"index.php?tribe_organizer=$matches[1]&tb=1\";s:38:\"organizer/([^/]+)/page/?([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&paged=$matches[2]\";s:45:\"organizer/([^/]+)/comment-page-([0-9]{1,})/?$\";s:55:\"index.php?tribe_organizer=$matches[1]&cpage=$matches[2]\";s:30:\"organizer/([^/]+)(/[0-9]+)?/?$\";s:54:\"index.php?tribe_organizer=$matches[1]&page=$matches[2]\";s:26:\"organizer/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:36:\"organizer/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:56:\"organizer/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:51:\"organizer/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:54:\"events/category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:49:\"events/category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?tribe_events_cat=$matches[1]&feed=$matches[2]\";s:42:\"events/category/(.+?)/page/?([0-9]{1,})/?$\";s:56:\"index.php?tribe_events_cat=$matches[1]&paged=$matches[2]\";s:24:\"events/category/(.+?)/?$\";s:38:\"index.php?tribe_events_cat=$matches[1]\";s:35:\"ourteam/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"ourteam/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"ourteam/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"ourteam/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"ourteam/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:28:\"ourteam/([^/]+)/trackback/?$\";s:34:\"index.php?ourteam=$matches[1]&tb=1\";s:36:\"ourteam/([^/]+)/page/?([0-9]{1,})/?$\";s:47:\"index.php?ourteam=$matches[1]&paged=$matches[2]\";s:43:\"ourteam/([^/]+)/comment-page-([0-9]{1,})/?$\";s:47:\"index.php?ourteam=$matches[1]&cpage=$matches[2]\";s:28:\"ourteam/([^/]+)(/[0-9]+)?/?$\";s:46:\"index.php?ourteam=$matches[1]&page=$matches[2]\";s:24:\"ourteam/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:34:\"ourteam/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:54:\"ourteam/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"ourteam/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:49:\"ourteam/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:57:\"ourteam-category/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?ourteam-category=$matches[1]&feed=$matches[2]\";s:52:\"ourteam-category/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?ourteam-category=$matches[1]&feed=$matches[2]\";s:45:\"ourteam-category/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?ourteam-category=$matches[1]&paged=$matches[2]\";s:27:\"ourteam-category/([^/]+)/?$\";s:38:\"index.php?ourteam-category=$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:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=536&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: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: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: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: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: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:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s: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:20:\"(.?.+?)(/[0-9]+)?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:20:\"([^/]+)(/[0-9]+)?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";}','yes'),(2444,'_site_transient_timeout_browser_cc68390591d59bd53f95d5d9fa636458','1442884820','yes'),(2445,'_site_transient_browser_cc68390591d59bd53f95d5d9fa636458','a:9:{s:8:\"platform\";s:9:\"Macintosh\";s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"45.0.2454.85\";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'),(2469,'_transient_timeout_plugin_slugs','1442371545','no'),(2470,'_transient_plugin_slugs','a:24:{i:0;s:19:\"akismet/akismet.php\";i:1;s:19:\"bbpress/bbpress.php\";i:2;s:43:\"better-font-awesome/better-font-awesome.php\";i:3;s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";i:4;s:24:\"buddypress/bp-loader.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:33:\"duplicate-post/duplicate-post.php\";i:7;s:9:\"hello.php\";i:8;s:23:\"slider-image/slider.php\";i:9;s:21:\"megamenu/megamenu.php\";i:10;s:41:\"media-file-cleaner/media-file-cleaner.php\";i:11;s:25:\"option-tree/ot-loader.php\";i:12;s:25:\"tz-plazart/tz-plazart.php\";i:13;s:23:\"revslider/revslider.php\";i:14;s:23:\"tag-pages/tag-pages.php\";i:15;s:20:\"team-members/tmm.php\";i:16;s:43:\"the-events-calendar/the-events-calendar.php\";i:17;s:33:\"theme-my-login/theme-my-login.php\";i:18;s:17:\"top-10/top-10.php\";i:19;s:41:\"wordpress-importer/wordpress-importer.php\";i:20;s:27:\"wp-pagenavi/wp-pagenavi.php\";i:21;s:27:\"js_composer/js_composer.php\";i:22;s:23:\"wpml-cms-nav/plugin.php\";i:23;s:40:\"sitepress-multilingual-cms/sitepress.php\";}','no'),(2548,'_wpml_cms_nav_cache','a:1:{s:31:\"cms_nav_offsite_url_cache_class\";a:13:{s:23:\"536_cms_nav_offsite_url\";s:0:\"\";s:24:\"1441_cms_nav_offsite_url\";s:0:\"\";s:24:\"1442_cms_nav_offsite_url\";s:0:\"\";s:24:\"3123_cms_nav_offsite_url\";s:0:\"\";s:24:\"3382_cms_nav_offsite_url\";s:0:\"\";s:24:\"3383_cms_nav_offsite_url\";s:0:\"\";s:24:\"3125_cms_nav_offsite_url\";s:0:\"\";s:24:\"3206_cms_nav_offsite_url\";s:0:\"\";s:24:\"3197_cms_nav_offsite_url\";s:0:\"\";s:24:\"3479_cms_nav_offsite_url\";s:0:\"\";s:24:\"3549_cms_nav_offsite_url\";s:0:\"\";s:24:\"1752_cms_nav_offsite_url\";s:0:\"\";s:24:\"1689_cms_nav_offsite_url\";s:0:\"\";}}','yes'),(2549,'_icl_cache','a:2:{s:25:\"language_name_cache_class\";a:73:{s:26:\"language_details_zh-hansen\";a:10:{s:4:\"code\";s:7:\"zh-hans\";s:2:\"id\";s:2:\"61\";s:12:\"english_name\";s:20:\"Chinese (Simplified)\";s:11:\"native_name\";s:12:\"简体中文\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"zh_CN\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"zh-CN\";s:12:\"display_name\";s:20:\"Chinese (Simplified)\";}s:21:\"language_details_enen\";a:10:{s:4:\"code\";s:2:\"en\";s:2:\"id\";s:1:\"1\";s:12:\"english_name\";s:7:\"English\";s:11:\"native_name\";s:7:\"English\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"en_US\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"en-US\";s:12:\"display_name\";s:7:\"English\";}s:21:\"language_details_jaen\";a:10:{s:4:\"code\";s:2:\"ja\";s:2:\"id\";s:2:\"28\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:2:\"ja\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ja\";s:12:\"display_name\";s:8:\"Japanese\";}s:21:\"language_details_koen\";a:10:{s:4:\"code\";s:2:\"ko\";s:2:\"id\";s:2:\"29\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"ko_KR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ko-KR\";s:12:\"display_name\";s:6:\"Korean\";}s:14:\"in_language_en\";a:4:{s:7:\"zh-hans\";a:10:{s:4:\"code\";s:7:\"zh-hans\";s:2:\"id\";s:2:\"61\";s:12:\"english_name\";s:20:\"Chinese (Simplified)\";s:11:\"native_name\";s:12:\"简体中文\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"zh_CN\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"zh-CN\";s:12:\"display_name\";s:20:\"Chinese (Simplified)\";}s:2:\"en\";a:10:{s:4:\"code\";s:2:\"en\";s:2:\"id\";s:1:\"1\";s:12:\"english_name\";s:7:\"English\";s:11:\"native_name\";s:7:\"English\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"en_US\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"en-US\";s:12:\"display_name\";s:7:\"English\";}s:2:\"ja\";a:10:{s:4:\"code\";s:2:\"ja\";s:2:\"id\";s:2:\"28\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:2:\"ja\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ja\";s:12:\"display_name\";s:8:\"Japanese\";}s:2:\"ko\";a:10:{s:4:\"code\";s:2:\"ko\";s:2:\"id\";s:2:\"29\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"ko_KR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ko-KR\";s:12:\"display_name\";s:6:\"Korean\";}}s:26:\"language_details_zh-hanten\";a:10:{s:4:\"code\";s:7:\"zh-hant\";s:2:\"id\";s:2:\"63\";s:12:\"english_name\";s:21:\"Chinese (Traditional)\";s:11:\"native_name\";s:12:\"繁體中文\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"zh_TW\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"zh-TW\";s:12:\"display_name\";s:21:\"Chinese (Traditional)\";}s:21:\"language_details_daen\";a:10:{s:4:\"code\";s:2:\"da\";s:2:\"id\";s:2:\"12\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"da_DK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"da-DK\";s:12:\"display_name\";s:6:\"Danish\";}s:21:\"language_details_nlen\";a:10:{s:4:\"code\";s:2:\"nl\";s:2:\"id\";s:2:\"39\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"nl_NL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"nl-NL\";s:12:\"display_name\";s:5:\"Dutch\";}s:21:\"language_details_fren\";a:10:{s:4:\"code\";s:2:\"fr\";s:2:\"id\";s:1:\"4\";s:12:\"english_name\";s:6:\"French\";s:11:\"native_name\";s:9:\"Français\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"fr_FR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"fr-FR\";s:12:\"display_name\";s:6:\"French\";}s:21:\"language_details_deen\";a:10:{s:4:\"code\";s:2:\"de\";s:2:\"id\";s:1:\"3\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"de_DE\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"de-DE\";s:12:\"display_name\";s:6:\"German\";}s:21:\"language_details_iten\";a:10:{s:4:\"code\";s:2:\"it\";s:2:\"id\";s:2:\"27\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"it_IT\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"it-IT\";s:12:\"display_name\";s:7:\"Italian\";}s:21:\"language_details_ruen\";a:10:{s:4:\"code\";s:2:\"ru\";s:2:\"id\";s:2:\"47\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ru_RU\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ru-RU\";s:12:\"display_name\";s:7:\"Russian\";}s:21:\"language_details_esen\";a:10:{s:4:\"code\";s:2:\"es\";s:2:\"id\";s:1:\"2\";s:12:\"english_name\";s:7:\"Spanish\";s:11:\"native_name\";s:8:\"Español\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"es_ES\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"es-ES\";s:12:\"display_name\";s:7:\"Spanish\";}s:21:\"language_details_sqen\";a:10:{s:4:\"code\";s:2:\"sq\";s:2:\"id\";s:2:\"50\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:8:\"Albanian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:8:\"Albanian\";}s:21:\"language_details_aren\";a:10:{s:4:\"code\";s:2:\"ar\";s:2:\"id\";s:1:\"5\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ar\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ar\";s:12:\"display_name\";s:6:\"Arabic\";}s:21:\"language_details_hyen\";a:10:{s:4:\"code\";s:2:\"hy\";s:2:\"id\";s:2:\"24\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"հայերեն\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:8:\"Armenian\";}s:21:\"language_details_euen\";a:10:{s:4:\"code\";s:2:\"eu\";s:2:\"id\";s:2:\"16\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"eu\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"eu\";s:12:\"display_name\";s:6:\"Basque\";}s:21:\"language_details_bsen\";a:10:{s:4:\"code\";s:2:\"bs\";s:2:\"id\";s:1:\"6\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:7:\"Bosnian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Bosnian\";}s:21:\"language_details_bgen\";a:10:{s:4:\"code\";s:2:\"bg\";s:2:\"id\";s:1:\"7\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"bg_BG\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"bg-BG\";s:12:\"display_name\";s:9:\"Bulgarian\";}s:21:\"language_details_caen\";a:10:{s:4:\"code\";s:2:\"ca\";s:2:\"id\";s:1:\"8\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ca\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ca\";s:12:\"display_name\";s:7:\"Catalan\";}s:21:\"language_details_hren\";a:10:{s:4:\"code\";s:2:\"hr\";s:2:\"id\";s:2:\"22\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"hr\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"hr\";s:12:\"display_name\";s:8:\"Croatian\";}s:21:\"language_details_csen\";a:10:{s:4:\"code\";s:2:\"cs\";s:2:\"id\";s:1:\"9\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"cs_CZ\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"cs-CZ\";s:12:\"display_name\";s:5:\"Czech\";}s:21:\"language_details_eoen\";a:10:{s:4:\"code\";s:2:\"eo\";s:2:\"id\";s:2:\"14\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanta\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"eo\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"eo\";s:12:\"display_name\";s:9:\"Esperanto\";}s:21:\"language_details_eten\";a:10:{s:4:\"code\";s:2:\"et\";s:2:\"id\";s:2:\"15\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"et\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"et\";s:12:\"display_name\";s:8:\"Estonian\";}s:21:\"language_details_fien\";a:10:{s:4:\"code\";s:2:\"fi\";s:2:\"id\";s:2:\"18\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"fi\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"fi\";s:12:\"display_name\";s:7:\"Finnish\";}s:21:\"language_details_elen\";a:10:{s:4:\"code\";s:2:\"el\";s:2:\"id\";s:2:\"13\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικα\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"el\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"el\";s:12:\"display_name\";s:5:\"Greek\";}s:21:\"language_details_heen\";a:10:{s:4:\"code\";s:2:\"he\";s:2:\"id\";s:2:\"20\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:10:\"עברית\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"he_IL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"he-IL\";s:12:\"display_name\";s:6:\"Hebrew\";}s:21:\"language_details_hien\";a:10:{s:4:\"code\";s:2:\"hi\";s:2:\"id\";s:2:\"21\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Hindi\";}s:21:\"language_details_huen\";a:10:{s:4:\"code\";s:2:\"hu\";s:2:\"id\";s:2:\"23\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"hu_HU\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"hu-HU\";s:12:\"display_name\";s:9:\"Hungarian\";}s:21:\"language_details_isen\";a:10:{s:4:\"code\";s:2:\"is\";s:2:\"id\";s:2:\"26\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"is_IS\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"is-IS\";s:12:\"display_name\";s:9:\"Icelandic\";}s:21:\"language_details_iden\";a:10:{s:4:\"code\";s:2:\"id\";s:2:\"id\";s:2:\"25\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:9:\"Indonesia\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"id_ID\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"id-ID\";s:12:\"display_name\";s:10:\"Indonesian\";}s:21:\"language_details_gaen\";a:10:{s:4:\"code\";s:2:\"ga\";s:2:\"id\";s:2:\"19\";s:12:\"english_name\";s:5:\"Irish\";s:11:\"native_name\";s:7:\"Gaeilge\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Irish\";}s:21:\"language_details_kuen\";a:10:{s:4:\"code\";s:2:\"ku\";s:2:\"id\";s:2:\"30\";s:12:\"english_name\";s:7:\"Kurdish\";s:11:\"native_name\";s:7:\"Kurdish\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ku\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ku\";s:12:\"display_name\";s:7:\"Kurdish\";}s:21:\"language_details_laen\";a:10:{s:4:\"code\";s:2:\"la\";s:2:\"id\";s:2:\"31\";s:12:\"english_name\";s:5:\"Latin\";s:11:\"native_name\";s:5:\"Latin\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Latin\";}s:21:\"language_details_lven\";a:10:{s:4:\"code\";s:2:\"lv\";s:2:\"id\";s:2:\"32\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:9:\"Latviešu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"lv\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"lv\";s:12:\"display_name\";s:7:\"Latvian\";}s:21:\"language_details_lten\";a:10:{s:4:\"code\";s:2:\"lt\";s:2:\"id\";s:2:\"33\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:8:\"Lietuvos\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"lt\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"lt\";s:12:\"display_name\";s:10:\"Lithuanian\";}s:21:\"language_details_mken\";a:10:{s:4:\"code\";s:2:\"mk\";s:2:\"id\";s:2:\"34\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:20:\"македонски\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"mk_MK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"mk-MK\";s:12:\"display_name\";s:10:\"Macedonian\";}s:21:\"language_details_msen\";a:10:{s:4:\"code\";s:2:\"ms\";s:2:\"id\";s:2:\"64\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:6:\"Melayu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ms_MY\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ms-MY\";s:12:\"display_name\";s:5:\"Malay\";}s:21:\"language_details_mten\";a:10:{s:4:\"code\";s:2:\"mt\";s:2:\"id\";s:2:\"35\";s:12:\"english_name\";s:7:\"Maltese\";s:11:\"native_name\";s:5:\"Malti\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Maltese\";}s:21:\"language_details_moen\";a:10:{s:4:\"code\";s:2:\"mo\";s:2:\"id\";s:2:\"36\";s:12:\"english_name\";s:9:\"Moldavian\";s:11:\"native_name\";s:9:\"Moldavian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:9:\"Moldavian\";}s:21:\"language_details_mnen\";a:10:{s:4:\"code\";s:2:\"mn\";s:2:\"id\";s:2:\"37\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:9:\"Mongolian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:9:\"Mongolian\";}s:21:\"language_details_neen\";a:10:{s:4:\"code\";s:2:\"ne\";s:2:\"id\";s:2:\"38\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:6:\"Nepali\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:6:\"Nepali\";}s:21:\"language_details_nben\";a:10:{s:4:\"code\";s:2:\"nb\";s:2:\"id\";s:2:\"40\";s:12:\"english_name\";s:17:\"Norwegian Bokmål\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"nb_NO\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"nb-NO\";s:12:\"display_name\";s:17:\"Norwegian Bokmål\";}s:21:\"language_details_faen\";a:10:{s:4:\"code\";s:2:\"fa\";s:2:\"id\";s:2:\"17\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"fa_IR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"fa-IR\";s:12:\"display_name\";s:7:\"Persian\";}s:21:\"language_details_plen\";a:10:{s:4:\"code\";s:2:\"pl\";s:2:\"id\";s:2:\"42\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"polski\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pl_PL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pl-PL\";s:12:\"display_name\";s:6:\"Polish\";}s:24:\"language_details_pt-bren\";a:10:{s:4:\"code\";s:5:\"pt-br\";s:2:\"id\";s:2:\"44\";s:12:\"english_name\";s:18:\"Portuguese, Brazil\";s:11:\"native_name\";s:10:\"Português\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pt_BR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pt-BR\";s:12:\"display_name\";s:19:\"Portuguese (Brazil)\";}s:24:\"language_details_pt-pten\";a:10:{s:4:\"code\";s:5:\"pt-pt\";s:2:\"id\";s:2:\"43\";s:12:\"english_name\";s:20:\"Portuguese, Portugal\";s:11:\"native_name\";s:10:\"Português\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pt_PT\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pt-PT\";s:12:\"display_name\";s:21:\"Portuguese (Portugal)\";}s:21:\"language_details_paen\";a:10:{s:4:\"code\";s:2:\"pa\";s:2:\"id\";s:2:\"41\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:7:\"Punjabi\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Punjabi\";}s:21:\"language_details_quen\";a:10:{s:4:\"code\";s:2:\"qu\";s:2:\"id\";s:2:\"45\";s:12:\"english_name\";s:7:\"Quechua\";s:11:\"native_name\";s:7:\"Quechua\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Quechua\";}s:21:\"language_details_roen\";a:10:{s:4:\"code\";s:2:\"ro\";s:2:\"id\";s:2:\"46\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ro_RO\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ro-RO\";s:12:\"display_name\";s:8:\"Romanian\";}s:21:\"language_details_sren\";a:10:{s:4:\"code\";s:2:\"sr\";s:2:\"id\";s:2:\"51\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:12:\"српски\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sr_RS\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sr-RS\";s:12:\"display_name\";s:7:\"Serbian\";}s:21:\"language_details_sken\";a:10:{s:4:\"code\";s:2:\"sk\";s:2:\"id\";s:2:\"10\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sk_SK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sk-SK\";s:12:\"display_name\";s:6:\"Slovak\";}s:21:\"language_details_slen\";a:10:{s:4:\"code\";s:2:\"sl\";s:2:\"id\";s:2:\"48\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sl_SI\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sl-SI\";s:12:\"display_name\";s:9:\"Slovenian\";}s:21:\"language_details_soen\";a:10:{s:4:\"code\";s:2:\"so\";s:2:\"id\";s:2:\"49\";s:12:\"english_name\";s:6:\"Somali\";s:11:\"native_name\";s:6:\"Somali\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:6:\"Somali\";}s:21:\"language_details_sven\";a:10:{s:4:\"code\";s:2:\"sv\";s:2:\"id\";s:2:\"52\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sv_SE\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sv-SE\";s:12:\"display_name\";s:7:\"Swedish\";}s:21:\"language_details_taen\";a:10:{s:4:\"code\";s:2:\"ta\";s:2:\"id\";s:2:\"53\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:5:\"Tamil\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Tamil\";}s:21:\"language_details_then\";a:10:{s:4:\"code\";s:2:\"th\";s:2:\"id\";s:2:\"54\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"th\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"th\";s:12:\"display_name\";s:4:\"Thai\";}s:21:\"language_details_tren\";a:10:{s:4:\"code\";s:2:\"tr\";s:2:\"id\";s:2:\"55\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"tr\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"tr\";s:12:\"display_name\";s:7:\"Turkish\";}s:21:\"language_details_uken\";a:10:{s:4:\"code\";s:2:\"uk\";s:2:\"id\";s:2:\"56\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:9:\"Ukrainian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"uk_UA\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"uk-UA\";s:12:\"display_name\";s:9:\"Ukrainian\";}s:21:\"language_details_uren\";a:10:{s:4:\"code\";s:2:\"ur\";s:2:\"id\";s:2:\"57\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:9:\"اردو \";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:4:\"Urdu\";}s:21:\"language_details_uzen\";a:10:{s:4:\"code\";s:2:\"uz\";s:2:\"id\";s:2:\"58\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:5:\"Uzbek\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"uz_UZ\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"uz-UZ\";s:12:\"display_name\";s:5:\"Uzbek\";}s:21:\"language_details_vien\";a:10:{s:4:\"code\";s:2:\"vi\";s:2:\"id\";s:2:\"59\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"vi\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"vi\";s:12:\"display_name\";s:10:\"Vietnamese\";}s:21:\"language_details_cyen\";a:10:{s:4:\"code\";s:2:\"cy\";s:2:\"id\";s:2:\"11\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"cy\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"cy\";s:12:\"display_name\";s:5:\"Welsh\";}s:21:\"language_details_yien\";a:10:{s:4:\"code\";s:2:\"yi\";s:2:\"id\";s:2:\"60\";s:12:\"english_name\";s:7:\"Yiddish\";s:11:\"native_name\";s:7:\"Yiddish\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Yiddish\";}s:21:\"language_details_zuen\";a:10:{s:4:\"code\";s:2:\"zu\";s:2:\"id\";s:2:\"62\";s:12:\"english_name\";s:4:\"Zulu\";s:11:\"native_name\";s:4:\"Zulu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:4:\"Zulu\";}s:15:\"all_language_en\";a:64:{s:7:\"zh-hans\";a:10:{s:4:\"code\";s:7:\"zh-hans\";s:2:\"id\";s:2:\"61\";s:12:\"english_name\";s:20:\"Chinese (Simplified)\";s:11:\"native_name\";s:12:\"简体中文\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"zh_CN\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"zh-CN\";s:12:\"display_name\";s:20:\"Chinese (Simplified)\";}s:7:\"zh-hant\";a:10:{s:4:\"code\";s:7:\"zh-hant\";s:2:\"id\";s:2:\"63\";s:12:\"english_name\";s:21:\"Chinese (Traditional)\";s:11:\"native_name\";s:12:\"繁體中文\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"zh_TW\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"zh-TW\";s:12:\"display_name\";s:21:\"Chinese (Traditional)\";}s:2:\"da\";a:10:{s:4:\"code\";s:2:\"da\";s:2:\"id\";s:2:\"12\";s:12:\"english_name\";s:6:\"Danish\";s:11:\"native_name\";s:5:\"Dansk\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"da_DK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"da-DK\";s:12:\"display_name\";s:6:\"Danish\";}s:2:\"nl\";a:10:{s:4:\"code\";s:2:\"nl\";s:2:\"id\";s:2:\"39\";s:12:\"english_name\";s:5:\"Dutch\";s:11:\"native_name\";s:10:\"Nederlands\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"nl_NL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"nl-NL\";s:12:\"display_name\";s:5:\"Dutch\";}s:2:\"en\";a:10:{s:4:\"code\";s:2:\"en\";s:2:\"id\";s:1:\"1\";s:12:\"english_name\";s:7:\"English\";s:11:\"native_name\";s:7:\"English\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"en_US\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"en-US\";s:12:\"display_name\";s:7:\"English\";}s:2:\"fr\";a:10:{s:4:\"code\";s:2:\"fr\";s:2:\"id\";s:1:\"4\";s:12:\"english_name\";s:6:\"French\";s:11:\"native_name\";s:9:\"Français\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"fr_FR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"fr-FR\";s:12:\"display_name\";s:6:\"French\";}s:2:\"de\";a:10:{s:4:\"code\";s:2:\"de\";s:2:\"id\";s:1:\"3\";s:12:\"english_name\";s:6:\"German\";s:11:\"native_name\";s:7:\"Deutsch\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"de_DE\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"de-DE\";s:12:\"display_name\";s:6:\"German\";}s:2:\"it\";a:10:{s:4:\"code\";s:2:\"it\";s:2:\"id\";s:2:\"27\";s:12:\"english_name\";s:7:\"Italian\";s:11:\"native_name\";s:8:\"Italiano\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"it_IT\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"it-IT\";s:12:\"display_name\";s:7:\"Italian\";}s:2:\"ja\";a:10:{s:4:\"code\";s:2:\"ja\";s:2:\"id\";s:2:\"28\";s:12:\"english_name\";s:8:\"Japanese\";s:11:\"native_name\";s:9:\"日本語\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:2:\"ja\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ja\";s:12:\"display_name\";s:8:\"Japanese\";}s:2:\"ru\";a:10:{s:4:\"code\";s:2:\"ru\";s:2:\"id\";s:2:\"47\";s:12:\"english_name\";s:7:\"Russian\";s:11:\"native_name\";s:14:\"Русский\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ru_RU\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ru-RU\";s:12:\"display_name\";s:7:\"Russian\";}s:2:\"es\";a:10:{s:4:\"code\";s:2:\"es\";s:2:\"id\";s:1:\"2\";s:12:\"english_name\";s:7:\"Spanish\";s:11:\"native_name\";s:8:\"Español\";s:5:\"major\";s:1:\"1\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"es_ES\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"es-ES\";s:12:\"display_name\";s:7:\"Spanish\";}s:2:\"sq\";a:10:{s:4:\"code\";s:2:\"sq\";s:2:\"id\";s:2:\"50\";s:12:\"english_name\";s:8:\"Albanian\";s:11:\"native_name\";s:8:\"Albanian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:8:\"Albanian\";}s:2:\"ar\";a:10:{s:4:\"code\";s:2:\"ar\";s:2:\"id\";s:1:\"5\";s:12:\"english_name\";s:6:\"Arabic\";s:11:\"native_name\";s:14:\"العربية\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ar\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ar\";s:12:\"display_name\";s:6:\"Arabic\";}s:2:\"hy\";a:10:{s:4:\"code\";s:2:\"hy\";s:2:\"id\";s:2:\"24\";s:12:\"english_name\";s:8:\"Armenian\";s:11:\"native_name\";s:14:\"հայերեն\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:8:\"Armenian\";}s:2:\"eu\";a:10:{s:4:\"code\";s:2:\"eu\";s:2:\"id\";s:2:\"16\";s:12:\"english_name\";s:6:\"Basque\";s:11:\"native_name\";s:7:\"Euskara\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"eu\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"eu\";s:12:\"display_name\";s:6:\"Basque\";}s:2:\"bs\";a:10:{s:4:\"code\";s:2:\"bs\";s:2:\"id\";s:1:\"6\";s:12:\"english_name\";s:7:\"Bosnian\";s:11:\"native_name\";s:7:\"Bosnian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Bosnian\";}s:2:\"bg\";a:10:{s:4:\"code\";s:2:\"bg\";s:2:\"id\";s:1:\"7\";s:12:\"english_name\";s:9:\"Bulgarian\";s:11:\"native_name\";s:18:\"Български\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"bg_BG\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"bg-BG\";s:12:\"display_name\";s:9:\"Bulgarian\";}s:2:\"ca\";a:10:{s:4:\"code\";s:2:\"ca\";s:2:\"id\";s:1:\"8\";s:12:\"english_name\";s:7:\"Catalan\";s:11:\"native_name\";s:7:\"Català\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ca\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ca\";s:12:\"display_name\";s:7:\"Catalan\";}s:2:\"hr\";a:10:{s:4:\"code\";s:2:\"hr\";s:2:\"id\";s:2:\"22\";s:12:\"english_name\";s:8:\"Croatian\";s:11:\"native_name\";s:8:\"Hrvatski\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"hr\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"hr\";s:12:\"display_name\";s:8:\"Croatian\";}s:2:\"cs\";a:10:{s:4:\"code\";s:2:\"cs\";s:2:\"id\";s:1:\"9\";s:12:\"english_name\";s:5:\"Czech\";s:11:\"native_name\";s:9:\"Čeština\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"cs_CZ\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"cs-CZ\";s:12:\"display_name\";s:5:\"Czech\";}s:2:\"eo\";a:10:{s:4:\"code\";s:2:\"eo\";s:2:\"id\";s:2:\"14\";s:12:\"english_name\";s:9:\"Esperanto\";s:11:\"native_name\";s:9:\"Esperanta\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"eo\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"eo\";s:12:\"display_name\";s:9:\"Esperanto\";}s:2:\"et\";a:10:{s:4:\"code\";s:2:\"et\";s:2:\"id\";s:2:\"15\";s:12:\"english_name\";s:8:\"Estonian\";s:11:\"native_name\";s:5:\"Eesti\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"et\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"et\";s:12:\"display_name\";s:8:\"Estonian\";}s:2:\"fi\";a:10:{s:4:\"code\";s:2:\"fi\";s:2:\"id\";s:2:\"18\";s:12:\"english_name\";s:7:\"Finnish\";s:11:\"native_name\";s:5:\"Suomi\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"fi\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"fi\";s:12:\"display_name\";s:7:\"Finnish\";}s:2:\"el\";a:10:{s:4:\"code\";s:2:\"el\";s:2:\"id\";s:2:\"13\";s:12:\"english_name\";s:5:\"Greek\";s:11:\"native_name\";s:16:\"Ελληνικα\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"el\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"el\";s:12:\"display_name\";s:5:\"Greek\";}s:2:\"he\";a:10:{s:4:\"code\";s:2:\"he\";s:2:\"id\";s:2:\"20\";s:12:\"english_name\";s:6:\"Hebrew\";s:11:\"native_name\";s:10:\"עברית\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"he_IL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"he-IL\";s:12:\"display_name\";s:6:\"Hebrew\";}s:2:\"hi\";a:10:{s:4:\"code\";s:2:\"hi\";s:2:\"id\";s:2:\"21\";s:12:\"english_name\";s:5:\"Hindi\";s:11:\"native_name\";s:18:\"हिन्दी\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Hindi\";}s:2:\"hu\";a:10:{s:4:\"code\";s:2:\"hu\";s:2:\"id\";s:2:\"23\";s:12:\"english_name\";s:9:\"Hungarian\";s:11:\"native_name\";s:6:\"Magyar\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"hu_HU\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"hu-HU\";s:12:\"display_name\";s:9:\"Hungarian\";}s:2:\"is\";a:10:{s:4:\"code\";s:2:\"is\";s:2:\"id\";s:2:\"26\";s:12:\"english_name\";s:9:\"Icelandic\";s:11:\"native_name\";s:9:\"Íslenska\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"is_IS\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"is-IS\";s:12:\"display_name\";s:9:\"Icelandic\";}s:2:\"id\";a:10:{s:4:\"code\";s:2:\"id\";s:2:\"id\";s:2:\"25\";s:12:\"english_name\";s:10:\"Indonesian\";s:11:\"native_name\";s:9:\"Indonesia\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"id_ID\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"id-ID\";s:12:\"display_name\";s:10:\"Indonesian\";}s:2:\"ga\";a:10:{s:4:\"code\";s:2:\"ga\";s:2:\"id\";s:2:\"19\";s:12:\"english_name\";s:5:\"Irish\";s:11:\"native_name\";s:7:\"Gaeilge\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Irish\";}s:2:\"ko\";a:10:{s:4:\"code\";s:2:\"ko\";s:2:\"id\";s:2:\"29\";s:12:\"english_name\";s:6:\"Korean\";s:11:\"native_name\";s:9:\"한국어\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"1\";s:14:\"default_locale\";s:5:\"ko_KR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ko-KR\";s:12:\"display_name\";s:6:\"Korean\";}s:2:\"ku\";a:10:{s:4:\"code\";s:2:\"ku\";s:2:\"id\";s:2:\"30\";s:12:\"english_name\";s:7:\"Kurdish\";s:11:\"native_name\";s:7:\"Kurdish\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"ku\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"ku\";s:12:\"display_name\";s:7:\"Kurdish\";}s:2:\"la\";a:10:{s:4:\"code\";s:2:\"la\";s:2:\"id\";s:2:\"31\";s:12:\"english_name\";s:5:\"Latin\";s:11:\"native_name\";s:5:\"Latin\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Latin\";}s:2:\"lv\";a:10:{s:4:\"code\";s:2:\"lv\";s:2:\"id\";s:2:\"32\";s:12:\"english_name\";s:7:\"Latvian\";s:11:\"native_name\";s:9:\"Latviešu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"lv\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"lv\";s:12:\"display_name\";s:7:\"Latvian\";}s:2:\"lt\";a:10:{s:4:\"code\";s:2:\"lt\";s:2:\"id\";s:2:\"33\";s:12:\"english_name\";s:10:\"Lithuanian\";s:11:\"native_name\";s:8:\"Lietuvos\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"lt\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"lt\";s:12:\"display_name\";s:10:\"Lithuanian\";}s:2:\"mk\";a:10:{s:4:\"code\";s:2:\"mk\";s:2:\"id\";s:2:\"34\";s:12:\"english_name\";s:10:\"Macedonian\";s:11:\"native_name\";s:20:\"македонски\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"mk_MK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"mk-MK\";s:12:\"display_name\";s:10:\"Macedonian\";}s:2:\"ms\";a:10:{s:4:\"code\";s:2:\"ms\";s:2:\"id\";s:2:\"64\";s:12:\"english_name\";s:5:\"Malay\";s:11:\"native_name\";s:6:\"Melayu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ms_MY\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ms-MY\";s:12:\"display_name\";s:5:\"Malay\";}s:2:\"mt\";a:10:{s:4:\"code\";s:2:\"mt\";s:2:\"id\";s:2:\"35\";s:12:\"english_name\";s:7:\"Maltese\";s:11:\"native_name\";s:5:\"Malti\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Maltese\";}s:2:\"mo\";a:10:{s:4:\"code\";s:2:\"mo\";s:2:\"id\";s:2:\"36\";s:12:\"english_name\";s:9:\"Moldavian\";s:11:\"native_name\";s:9:\"Moldavian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:9:\"Moldavian\";}s:2:\"mn\";a:10:{s:4:\"code\";s:2:\"mn\";s:2:\"id\";s:2:\"37\";s:12:\"english_name\";s:9:\"Mongolian\";s:11:\"native_name\";s:9:\"Mongolian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:9:\"Mongolian\";}s:2:\"ne\";a:10:{s:4:\"code\";s:2:\"ne\";s:2:\"id\";s:2:\"38\";s:12:\"english_name\";s:6:\"Nepali\";s:11:\"native_name\";s:6:\"Nepali\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:6:\"Nepali\";}s:2:\"nb\";a:10:{s:4:\"code\";s:2:\"nb\";s:2:\"id\";s:2:\"40\";s:12:\"english_name\";s:17:\"Norwegian Bokmål\";s:11:\"native_name\";s:13:\"Norsk bokmål\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"nb_NO\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"nb-NO\";s:12:\"display_name\";s:17:\"Norwegian Bokmål\";}s:2:\"fa\";a:10:{s:4:\"code\";s:2:\"fa\";s:2:\"id\";s:2:\"17\";s:12:\"english_name\";s:7:\"Persian\";s:11:\"native_name\";s:10:\"فارسی\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"fa_IR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"fa-IR\";s:12:\"display_name\";s:7:\"Persian\";}s:2:\"pl\";a:10:{s:4:\"code\";s:2:\"pl\";s:2:\"id\";s:2:\"42\";s:12:\"english_name\";s:6:\"Polish\";s:11:\"native_name\";s:6:\"polski\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pl_PL\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pl-PL\";s:12:\"display_name\";s:6:\"Polish\";}s:5:\"pt-br\";a:10:{s:4:\"code\";s:5:\"pt-br\";s:2:\"id\";s:2:\"44\";s:12:\"english_name\";s:18:\"Portuguese, Brazil\";s:11:\"native_name\";s:10:\"Português\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pt_BR\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pt-BR\";s:12:\"display_name\";s:19:\"Portuguese (Brazil)\";}s:5:\"pt-pt\";a:10:{s:4:\"code\";s:5:\"pt-pt\";s:2:\"id\";s:2:\"43\";s:12:\"english_name\";s:20:\"Portuguese, Portugal\";s:11:\"native_name\";s:10:\"Português\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"pt_PT\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"pt-PT\";s:12:\"display_name\";s:21:\"Portuguese (Portugal)\";}s:2:\"pa\";a:10:{s:4:\"code\";s:2:\"pa\";s:2:\"id\";s:2:\"41\";s:12:\"english_name\";s:7:\"Punjabi\";s:11:\"native_name\";s:7:\"Punjabi\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Punjabi\";}s:2:\"qu\";a:10:{s:4:\"code\";s:2:\"qu\";s:2:\"id\";s:2:\"45\";s:12:\"english_name\";s:7:\"Quechua\";s:11:\"native_name\";s:7:\"Quechua\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Quechua\";}s:2:\"ro\";a:10:{s:4:\"code\";s:2:\"ro\";s:2:\"id\";s:2:\"46\";s:12:\"english_name\";s:8:\"Romanian\";s:11:\"native_name\";s:8:\"Română\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"ro_RO\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"ro-RO\";s:12:\"display_name\";s:8:\"Romanian\";}s:2:\"sr\";a:10:{s:4:\"code\";s:2:\"sr\";s:2:\"id\";s:2:\"51\";s:12:\"english_name\";s:7:\"Serbian\";s:11:\"native_name\";s:12:\"српски\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sr_RS\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sr-RS\";s:12:\"display_name\";s:7:\"Serbian\";}s:2:\"sk\";a:10:{s:4:\"code\";s:2:\"sk\";s:2:\"id\";s:2:\"10\";s:12:\"english_name\";s:6:\"Slovak\";s:11:\"native_name\";s:11:\"Slovenčina\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sk_SK\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sk-SK\";s:12:\"display_name\";s:6:\"Slovak\";}s:2:\"sl\";a:10:{s:4:\"code\";s:2:\"sl\";s:2:\"id\";s:2:\"48\";s:12:\"english_name\";s:9:\"Slovenian\";s:11:\"native_name\";s:13:\"Slovenščina\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sl_SI\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sl-SI\";s:12:\"display_name\";s:9:\"Slovenian\";}s:2:\"so\";a:10:{s:4:\"code\";s:2:\"so\";s:2:\"id\";s:2:\"49\";s:12:\"english_name\";s:6:\"Somali\";s:11:\"native_name\";s:6:\"Somali\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:6:\"Somali\";}s:2:\"sv\";a:10:{s:4:\"code\";s:2:\"sv\";s:2:\"id\";s:2:\"52\";s:12:\"english_name\";s:7:\"Swedish\";s:11:\"native_name\";s:7:\"Svenska\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"sv_SE\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"sv-SE\";s:12:\"display_name\";s:7:\"Swedish\";}s:2:\"ta\";a:10:{s:4:\"code\";s:2:\"ta\";s:2:\"id\";s:2:\"53\";s:12:\"english_name\";s:5:\"Tamil\";s:11:\"native_name\";s:5:\"Tamil\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:5:\"Tamil\";}s:2:\"th\";a:10:{s:4:\"code\";s:2:\"th\";s:2:\"id\";s:2:\"54\";s:12:\"english_name\";s:4:\"Thai\";s:11:\"native_name\";s:9:\"ไทย\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"th\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"th\";s:12:\"display_name\";s:4:\"Thai\";}s:2:\"tr\";a:10:{s:4:\"code\";s:2:\"tr\";s:2:\"id\";s:2:\"55\";s:12:\"english_name\";s:7:\"Turkish\";s:11:\"native_name\";s:8:\"Türkçe\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"tr\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"tr\";s:12:\"display_name\";s:7:\"Turkish\";}s:2:\"uk\";a:10:{s:4:\"code\";s:2:\"uk\";s:2:\"id\";s:2:\"56\";s:12:\"english_name\";s:9:\"Ukrainian\";s:11:\"native_name\";s:9:\"Ukrainian\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"uk_UA\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"uk-UA\";s:12:\"display_name\";s:9:\"Ukrainian\";}s:2:\"ur\";a:10:{s:4:\"code\";s:2:\"ur\";s:2:\"id\";s:2:\"57\";s:12:\"english_name\";s:4:\"Urdu\";s:11:\"native_name\";s:9:\"اردو \";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:4:\"Urdu\";}s:2:\"uz\";a:10:{s:4:\"code\";s:2:\"uz\";s:2:\"id\";s:2:\"58\";s:12:\"english_name\";s:5:\"Uzbek\";s:11:\"native_name\";s:5:\"Uzbek\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:5:\"uz_UZ\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:5:\"uz-UZ\";s:12:\"display_name\";s:5:\"Uzbek\";}s:2:\"vi\";a:10:{s:4:\"code\";s:2:\"vi\";s:2:\"id\";s:2:\"59\";s:12:\"english_name\";s:10:\"Vietnamese\";s:11:\"native_name\";s:14:\"Tiếng Việt\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"vi\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"vi\";s:12:\"display_name\";s:10:\"Vietnamese\";}s:2:\"cy\";a:10:{s:4:\"code\";s:2:\"cy\";s:2:\"id\";s:2:\"11\";s:12:\"english_name\";s:5:\"Welsh\";s:11:\"native_name\";s:7:\"Cymraeg\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:2:\"cy\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:2:\"cy\";s:12:\"display_name\";s:5:\"Welsh\";}s:2:\"yi\";a:10:{s:4:\"code\";s:2:\"yi\";s:2:\"id\";s:2:\"60\";s:12:\"english_name\";s:7:\"Yiddish\";s:11:\"native_name\";s:7:\"Yiddish\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:7:\"Yiddish\";}s:2:\"zu\";a:10:{s:4:\"code\";s:2:\"zu\";s:2:\"id\";s:2:\"62\";s:12:\"english_name\";s:4:\"Zulu\";s:11:\"native_name\";s:4:\"Zulu\";s:5:\"major\";s:1:\"0\";s:6:\"active\";s:1:\"0\";s:14:\"default_locale\";s:0:\"\";s:10:\"encode_url\";s:1:\"0\";s:3:\"tag\";s:0:\"\";s:12:\"display_name\";s:4:\"Zulu\";}}s:14:\"zh-hanszh-hans\";s:12:\"简体中文\";s:9:\"zh-hansen\";s:20:\"Chinese (Simplified)\";s:4:\"enen\";s:7:\"English\";s:4:\"jaja\";s:9:\"日本語\";s:4:\"jaen\";s:8:\"Japanese\";s:4:\"koko\";s:9:\"한국어\";s:4:\"koen\";s:6:\"Korean\";}s:17:\"flags_cache_class\";a:4:{s:7:\"zh-hans\";O:8:\"stdClass\":2:{s:4:\"flag\";s:11:\"zh-hans.png\";s:13:\"from_template\";s:1:\"0\";}s:2:\"en\";O:8:\"stdClass\":2:{s:4:\"flag\";s:6:\"en.png\";s:13:\"from_template\";s:1:\"0\";}s:2:\"ja\";O:8:\"stdClass\":2:{s:4:\"flag\";s:6:\"ja.png\";s:13:\"from_template\";s:1:\"0\";}s:2:\"ko\";O:8:\"stdClass\":2:{s:4:\"flag\";s:6:\"ko.png\";s:13:\"from_template\";s:1:\"0\";}}}','yes'),(2555,'wpmc_basics','a:5:{s:10:\"scan_media\";s:2:\"on\";s:10:\"scan_files\";s:2:\"on\";s:9:\"shortcode\";s:3:\"off\";s:14:\"scan_non_ascii\";s:3:\"off\";s:15:\"hide_thumbnails\";s:3:\"off\";}','yes'),(2556,'wpmc_pro','','yes'),(2559,'_site_transient_update_plugins','O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1442343360;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:19:{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:5:\"3.1.3\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.3.1.3.zip\";}s:19:\"bbpress/bbpress.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11780\";s:4:\"slug\";s:7:\"bbpress\";s:6:\"plugin\";s:19:\"bbpress/bbpress.php\";s:11:\"new_version\";s:5:\"2.5.8\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/bbpress/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/bbpress.2.5.8.zip\";}s:43:\"better-font-awesome/better-font-awesome.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:5:\"49298\";s:4:\"slug\";s:19:\"better-font-awesome\";s:6:\"plugin\";s:43:\"better-font-awesome/better-font-awesome.php\";s:11:\"new_version\";s:5:\"1.4.0\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/better-font-awesome/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/better-font-awesome.1.4.0.zip\";s:14:\"upgrade_notice\";s:132:\"Fix: icon picker not working for ACF repeater field. (props @EJOweb and @marcochiesi)\nUpdate fallback Font Awesome to version 4.4.0.\";}s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"1283\";s:4:\"slug\";s:16:\"breadcrumb-navxt\";s:6:\"plugin\";s:37:\"breadcrumb-navxt/breadcrumb-navxt.php\";s:11:\"new_version\";s:5:\"5.2.2\";s:3:\"url\";s:47:\"https://wordpress.org/plugins/breadcrumb-navxt/\";s:7:\"package\";s:65:\"https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.2.2.zip\";}s:24:\"buddypress/bp-loader.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"7756\";s:4:\"slug\";s:10:\"buddypress\";s:6:\"plugin\";s:24:\"buddypress/bp-loader.php\";s:11:\"new_version\";s:5:\"2.3.3\";s:3:\"url\";s:41:\"https://wordpress.org/plugins/buddypress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/buddypress.2.3.3.zip\";s:14:\"upgrade_notice\";s:57:\"See: https://codex.buddypress.org/releases/version-2-3-3/\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"790\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"4.2.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.4.2.2.zip\";}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":7:{s:2:\"id\";s:4:\"1295\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:3:\"2.6\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/duplicate-post.2.6.zip\";s:14:\"upgrade_notice\";s:90:\"PHP 5.4 (Strict Standards) compatible + Fixed possible XSS and SQL injections + other bugs\";}s:9:\"hello.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"3564\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/hello-dolly.1.6.zip\";}s:23:\"slider-image/slider.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"49075\";s:4:\"slug\";s:12:\"slider-image\";s:6:\"plugin\";s:23:\"slider-image/slider.php\";s:11:\"new_version\";s:5:\"2.9.4\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/slider-image/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/slider-image.2.9.4.zip\";}s:21:\"megamenu/megamenu.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"51496\";s:4:\"slug\";s:8:\"megamenu\";s:6:\"plugin\";s:21:\"megamenu/megamenu.php\";s:11:\"new_version\";s:3:\"1.9\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/megamenu/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/megamenu.1.9.zip\";}s:41:\"media-file-cleaner/media-file-cleaner.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"63834\";s:4:\"slug\";s:18:\"media-file-cleaner\";s:6:\"plugin\";s:41:\"media-file-cleaner/media-file-cleaner.php\";s:11:\"new_version\";s:5:\"3.0.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/media-file-cleaner/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/media-file-cleaner.3.0.0.zip\";}s:25:\"option-tree/ot-loader.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"13921\";s:4:\"slug\";s:11:\"option-tree\";s:6:\"plugin\";s:25:\"option-tree/ot-loader.php\";s:11:\"new_version\";s:5:\"2.5.5\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/option-tree/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/option-tree.2.5.5.zip\";}s:23:\"tag-pages/tag-pages.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"33188\";s:4:\"slug\";s:9:\"tag-pages\";s:6:\"plugin\";s:23:\"tag-pages/tag-pages.php\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/tag-pages/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/tag-pages.zip\";}s:20:\"team-members/tmm.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"57082\";s:4:\"slug\";s:12:\"team-members\";s:6:\"plugin\";s:20:\"team-members/tmm.php\";s:11:\"new_version\";s:3:\"3.0\";s:3:\"url\";s:43:\"https://wordpress.org/plugins/team-members/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/plugin/team-members.zip\";}s:43:\"the-events-calendar/the-events-calendar.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"11861\";s:4:\"slug\";s:19:\"the-events-calendar\";s:6:\"plugin\";s:43:\"the-events-calendar/the-events-calendar.php\";s:11:\"new_version\";s:6:\"3.12.1\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/the-events-calendar/\";s:7:\"package\";s:69:\"https://downloads.wordpress.org/plugin/the-events-calendar.3.12.1.zip\";}s:33:\"theme-my-login/theme-my-login.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"7109\";s:4:\"slug\";s:14:\"theme-my-login\";s:6:\"plugin\";s:33:\"theme-my-login/theme-my-login.php\";s:11:\"new_version\";s:6:\"6.3.12\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/theme-my-login/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/theme-my-login.6.3.12.zip\";}s:17:\"top-10/top-10.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:4:\"4697\";s:4:\"slug\";s:6:\"top-10\";s:6:\"plugin\";s:17:\"top-10/top-10.php\";s:11:\"new_version\";s:5:\"2.2.2\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/top-10/\";s:7:\"package\";s:49:\"https://downloads.wordpress.org/plugin/top-10.zip\";}s:41:\"wordpress-importer/wordpress-importer.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:5:\"14975\";s:4:\"slug\";s:18:\"wordpress-importer\";s:6:\"plugin\";s:41:\"wordpress-importer/wordpress-importer.php\";s:11:\"new_version\";s:5:\"0.6.1\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/wordpress-importer/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/wordpress-importer.0.6.1.zip\";}s:27:\"wp-pagenavi/wp-pagenavi.php\";O:8:\"stdClass\":6:{s:2:\"id\";s:3:\"363\";s:4:\"slug\";s:11:\"wp-pagenavi\";s:6:\"plugin\";s:27:\"wp-pagenavi/wp-pagenavi.php\";s:11:\"new_version\";s:4:\"2.88\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/wp-pagenavi/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/wp-pagenavi.2.88.zip\";}}}','yes'),(2578,'_transient_megamenu_css_en','#mega-menu-wrap-primary #mega-menu-primary ul, #mega-menu-wrap-primary #mega-menu-primary li, #mega-menu-wrap-primary #mega-menu-primary p, #mega-menu-wrap-primary #mega-menu-primary img, #mega-menu-wrap-primary #mega-menu-primary div, #mega-menu-wrap-primary #mega-menu-primary a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n background: none;\n border: 0;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n margin: 0;\n opacity: 1;\n padding: 0;\n position: relative;\n right: auto;\n top: auto;\n bottom: auto;\n left: auto;\n text-align: left;\n text-transform: none;\n vertical-align: baseline;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n list-style-type: none;\n line-height: 1.7;\n box-sizing: border-box;\n float: none;\n overflow: visible;\n display: block;\n min-height: 0;\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n text-decoration: none;\n width: auto;\n clip: auto;\n height: auto;\n outline: none;\n visibility: inherit;\n}\n#mega-menu-wrap-primary #mega-menu-primary ul:before, #mega-menu-wrap-primary #mega-menu-primary li:before, #mega-menu-wrap-primary #mega-menu-primary p:before, #mega-menu-wrap-primary #mega-menu-primary img:before, #mega-menu-wrap-primary #mega-menu-primary div:before, #mega-menu-wrap-primary #mega-menu-primary a:before, #mega-menu-wrap-primary #mega-menu-primary ul:after, #mega-menu-wrap-primary #mega-menu-primary li:after, #mega-menu-wrap-primary #mega-menu-primary p:after, #mega-menu-wrap-primary #mega-menu-primary img:after, #mega-menu-wrap-primary #mega-menu-primary div:after, #mega-menu-wrap-primary #mega-menu-primary a:after {\n display: none;\n}\n#mega-menu-wrap-primary #mega-menu-primary table, #mega-menu-wrap-primary #mega-menu-primary td, #mega-menu-wrap-primary #mega-menu-primary tr, #mega-menu-wrap-primary #mega-menu-primary th {\n border: 0;\n margin: 0;\n padding: 0;\n background: none;\n}\n#mega-menu-wrap-primary, #mega-menu-wrap-primary #mega-menu-primary, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {\n -moz-transition: none;\n -o-transition: none;\n -webkit-transition: none;\n transition: none;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n background: none;\n border: 0;\n bottom: auto;\n box-sizing: border-box;\n clip: auto;\n color: #666;\n display: block;\n float: none;\n font-family: inherit;\n font-size: 14px;\n height: auto;\n left: auto;\n line-height: 1.7;\n list-style-type: none;\n margin: 0;\n min-height: 0;\n opacity: 1;\n outline: none;\n overflow: visible;\n padding: 0;\n position: relative;\n right: auto;\n text-align: left;\n text-decoration: none;\n text-transform: none;\n top: auto;\n vertical-align: baseline;\n visibility: inherit;\n width: auto;\n}\n#mega-menu-wrap-primary:before, #mega-menu-wrap-primary #mega-menu-primary:before, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:before, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:before, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:before, #mega-menu-wrap-primary:after, #mega-menu-wrap-primary #mega-menu-primary:after, #mega-menu-wrap-primary #mega-menu-primary ul.mega-sub-menu:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item:after, #mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link:after {\n display: none;\n}\n#mega-menu-wrap-primary {\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary {\n visibility: visible;\n text-align: left;\n padding: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary a.mega-menu-link {\n display: inline;\n}\n#mega-menu-wrap-primary #mega-menu-primary p {\n margin-bottom: 10px;\n}\n#mega-menu-wrap-primary #mega-menu-primary input, #mega-menu-wrap-primary #mega-menu-primary img {\n max-width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {\n display: block;\n visibility: hidden;\n opacity: 1;\n}\n#mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n visibility: visible;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a[class^=\'dashicons\']:before {\n font-family: dashicons;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-disable-link > a.mega-menu-link {\n cursor: default;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item a.mega-menu-link:before {\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n position: static;\n margin: 0 6px 0 0px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: inherit;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item.mega-hide-text a.mega-menu-link:before {\n margin: 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right > ul.mega-sub-menu {\n right: 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu.mega-menu-item {\n position: static;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {\n margin: 0 0px 0 0;\n display: inline-block;\n height: auto;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {\n float: right;\n margin: 0 0 0 0px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-toggle-on > a, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link:focus {\n background: rgba(51, 51, 51, 0);\n color: #fff;\n font-weight: normal;\n text-decoration: none;\n border-color: #fff;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n outline: none;\n text-decoration: none;\n padding: 0px 10px 0px 10px;\n line-height: 40px;\n font-weight: normal;\n height: 40px;\n vertical-align: baseline;\n text-align: left;\n width: auto;\n display: block;\n color: #fff;\n text-transform: none;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n font-family: inherit;\n font-size: 14px;\n cursor: pointer;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item {\n display: list-item;\n margin: 0;\n clear: both;\n border: 0;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item.mega-item-align-right {\n float: none;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item > a.mega-menu-link {\n -webkit-border-radius: 0 0 0 0 0 0 0;\n -moz-border-radius: 0 0 0 0 0 0 0;\n -ms-border-radius: 0 0 0 0 0 0 0;\n -o-border-radius: 0 0 0 0 0 0 0;\n border-radius: 0 0 0 0 0 0 0;\n border: 0;\n margin: 0;\n line-height: 40px;\n height: 40px;\n padding: 0 10px;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n z-index: 999;\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n background: #f1f1f1;\n padding: 0px 0px 0px 0px;\n position: absolute;\n width: 100%;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n left: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {\n width: 33.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {\n width: 66.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {\n width: 25%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {\n width: 75%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {\n width: 20%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {\n width: 40%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {\n width: 60%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {\n width: 80%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {\n width: 16.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {\n width: 33.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {\n width: 66.66667%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {\n width: 83.33333%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {\n width: 14.28571%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {\n width: 28.57143%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {\n width: 42.85714%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {\n width: 57.14286%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {\n width: 71.42857%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {\n width: 85.71429%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {\n width: 100%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {\n width: 12.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {\n width: 25%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {\n width: 37.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {\n width: 50%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {\n width: 62.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {\n width: 75%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {\n width: 87.5%;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {\n width: 100%;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu {\n border: 0;\n padding: 10px;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n width: 50% !important;\n clear: none;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {\n clear: left;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {\n clear: both;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n margin-left: 10px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n margin-left: 20px;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n display: block;\n float: left;\n clear: none;\n padding: 15px 15px 15px 15px;\n vertical-align: top;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {\n clear: left;\n /* Widget titles */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 5px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {\n color: #555;\n font-weight: bold;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n /* Third level menu item */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n text-transform: none;\n text-decoration: none;\n font-weight: normal;\n margin: 0;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n /* Third level menu item hover */\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {\n color: #666;\n font-weight: normal;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {\n z-index: 999;\n position: absolute;\n width: 300px;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n padding: 0px 0px 0px 0px;\n background: #f1f1f1;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n padding: 0;\n border: 0;\n }\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {\n clear: both;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {\n display: block;\n background: #f1f1f1;\n color: #666;\n font-family: inherit;\n font-size: 14px;\n font-weight: normal;\n padding: 0px 10px 0px 10px;\n line-height: 35px;\n text-decoration: none;\n text-transform: none;\n vertical-align: baseline;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a.mega-menu-link {\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a.mega-menu-link {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a.mega-menu-link {\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a.mega-menu-link {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {\n background: #ddd;\n font-weight: normal;\n text-decoration: none;\n color: #666;\n}\n#mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: absolute;\n left: 100%;\n top: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: static;\n left: 0;\n width: 100%;\n }\n #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {\n padding-left: 20px;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n margin: 0 0 0 6px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n color: inherit;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children a.mega-menu-link:after {\n float: right;\n }\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after {\n content: \'\\f142\';\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-primary #mega-menu-primary > li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after {\n display: none;\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f139\';\n float: right;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n text-align: right;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n text-align: left;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n float: right;\n margin: 0 0 0 6px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n float: left;\n margin: 0 6px 0 0;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f141\';\n float: left;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n float: right;\n }\n}\n#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n left: -100%;\n top: 0;\n}\n#mega-menu-wrap-primary .mega-menu-toggle {\n display: none;\n z-index: 1;\n cursor: pointer;\n text-align: right;\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 2px 2px 2px 2px;\n -moz-border-radius: 2px 2px 2px 2px;\n -ms-border-radius: 2px 2px 2px 2px;\n -o-border-radius: 2px 2px 2px 2px;\n border-radius: 2px 2px 2px 2px;\n line-height: 40px;\n height: 40px;\n color: #fff;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary .mega-menu-toggle {\n display: block;\n }\n}\n#mega-menu-wrap-primary .mega-menu-toggle:before {\n content: \"\\f333\";\n font-family: \'dashicons\';\n font-size: 24px;\n margin: 0 5px;\n float: right;\n}\n#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:before {\n content: \"\\f153\";\n}\n#mega-menu-wrap-primary .mega-menu-toggle:after {\n content: \'MENU\';\n}\n#mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open:after {\n content: \"\";\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary {\n display: none;\n }\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item > ul.mega-sub-menu {\n display: none;\n visibility: visible;\n opacity: 1;\n }\n #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-primary .mega-menu-toggle + #mega-menu-primary li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n display: block;\n }\n #mega-menu-wrap-primary .mega-menu-toggle.mega-menu-open + #mega-menu-primary {\n display: block;\n }\n}\n#mega-menu-wrap-primary {\n clear: both;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left ul, #mega-menu-wrap-menu-left #mega-menu-menu-left li, #mega-menu-wrap-menu-left #mega-menu-menu-left p, #mega-menu-wrap-menu-left #mega-menu-menu-left img, #mega-menu-wrap-menu-left #mega-menu-menu-left div, #mega-menu-wrap-menu-left #mega-menu-menu-left a {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n background: none;\n border: 0;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n margin: 0;\n opacity: 1;\n padding: 0;\n position: relative;\n right: auto;\n top: auto;\n bottom: auto;\n left: auto;\n text-align: left;\n text-transform: none;\n vertical-align: baseline;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n list-style-type: none;\n line-height: 1.7;\n box-sizing: border-box;\n float: none;\n overflow: visible;\n display: block;\n min-height: 0;\n -webkit-transition: none;\n -moz-transition: none;\n -o-transition: none;\n transition: none;\n text-decoration: none;\n width: auto;\n clip: auto;\n height: auto;\n outline: none;\n visibility: inherit;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left ul:before, #mega-menu-wrap-menu-left #mega-menu-menu-left li:before, #mega-menu-wrap-menu-left #mega-menu-menu-left p:before, #mega-menu-wrap-menu-left #mega-menu-menu-left img:before, #mega-menu-wrap-menu-left #mega-menu-menu-left div:before, #mega-menu-wrap-menu-left #mega-menu-menu-left a:before, #mega-menu-wrap-menu-left #mega-menu-menu-left ul:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li:after, #mega-menu-wrap-menu-left #mega-menu-menu-left p:after, #mega-menu-wrap-menu-left #mega-menu-menu-left img:after, #mega-menu-wrap-menu-left #mega-menu-menu-left div:after, #mega-menu-wrap-menu-left #mega-menu-menu-left a:after {\n display: none;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left table, #mega-menu-wrap-menu-left #mega-menu-menu-left td, #mega-menu-wrap-menu-left #mega-menu-menu-left tr, #mega-menu-wrap-menu-left #mega-menu-menu-left th {\n border: 0;\n margin: 0;\n padding: 0;\n background: none;\n}\n#mega-menu-wrap-menu-left, #mega-menu-wrap-menu-left #mega-menu-menu-left, #mega-menu-wrap-menu-left #mega-menu-menu-left ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item, #mega-menu-wrap-menu-left #mega-menu-menu-left a.mega-menu-link {\n -moz-transition: none;\n -o-transition: none;\n -webkit-transition: none;\n transition: none;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n -webkit-box-shadow: none;\n -moz-box-shadow: none;\n -ms-box-shadow: none;\n -o-box-shadow: none;\n box-shadow: none;\n background: none;\n border: 0;\n bottom: auto;\n box-sizing: border-box;\n clip: auto;\n color: #666;\n display: block;\n float: none;\n font-family: inherit;\n font-size: 14px;\n height: auto;\n left: auto;\n line-height: 1.7;\n list-style-type: none;\n margin: 0;\n min-height: 0;\n opacity: 1;\n outline: none;\n overflow: visible;\n padding: 0;\n position: relative;\n right: auto;\n text-align: left;\n text-decoration: none;\n text-transform: none;\n top: auto;\n vertical-align: baseline;\n visibility: inherit;\n width: auto;\n}\n#mega-menu-wrap-menu-left:before, #mega-menu-wrap-menu-left #mega-menu-menu-left:before, #mega-menu-wrap-menu-left #mega-menu-menu-left ul.mega-sub-menu:before, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item:before, #mega-menu-wrap-menu-left #mega-menu-menu-left a.mega-menu-link:before, #mega-menu-wrap-menu-left:after, #mega-menu-wrap-menu-left #mega-menu-menu-left:after, #mega-menu-wrap-menu-left #mega-menu-menu-left ul.mega-sub-menu:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item:after, #mega-menu-wrap-menu-left #mega-menu-menu-left a.mega-menu-link:after {\n display: none;\n}\n#mega-menu-wrap-menu-left {\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left {\n visibility: visible;\n text-align: left;\n padding: 0px 0px 0px 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left a.mega-menu-link {\n display: inline;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left p {\n margin-bottom: 10px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left input, #mega-menu-wrap-menu-left #mega-menu-menu-left img {\n max-width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item > ul.mega-sub-menu {\n display: block;\n visibility: hidden;\n opacity: 1;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left.mega-no-js li.mega-menu-item:hover > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left.mega-no-js li.mega-menu-item:focus > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n visibility: visible;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item a[class^=\'dashicons\']:before {\n font-family: dashicons;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-disable-link > a.mega-menu-link {\n cursor: default;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item a.mega-menu-link:before {\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n position: static;\n margin: 0 6px 0 0px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n color: inherit;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item.mega-hide-text a.mega-menu-link:before {\n margin: 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-left.mega-toggle-on > a.mega-menu-link {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-right > ul.mega-sub-menu {\n right: 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-align-bottom-right.mega-toggle-on > a.mega-menu-link {\n -webkit-border-radius: 0px 0px 0 0;\n -moz-border-radius: 0px 0px 0 0;\n -ms-border-radius: 0px 0px 0 0;\n -o-border-radius: 0px 0px 0 0;\n border-radius: 0px 0px 0 0;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu.mega-menu-item {\n position: static;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item {\n margin: 0 0px 0 0;\n display: inline-block;\n height: auto;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-item-align-right {\n float: right;\n margin: 0 0 0 0px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-toggle-on > a, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a.mega-menu-link:focus {\n background: rgba(51, 51, 51, 0);\n color: #fff;\n font-weight: normal;\n text-decoration: none;\n border-color: #fff;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a.mega-menu-link {\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n outline: none;\n text-decoration: none;\n padding: 0px 10px 0px 10px;\n line-height: 40px;\n font-weight: normal;\n height: 40px;\n vertical-align: baseline;\n text-align: left;\n width: auto;\n display: block;\n color: #fff;\n text-transform: none;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n font-family: inherit;\n font-size: 14px;\n cursor: pointer;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item {\n display: list-item;\n margin: 0;\n clear: both;\n border: 0;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item.mega-item-align-right {\n float: none;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item > a.mega-menu-link {\n -webkit-border-radius: 0 0 0 0 0 0 0;\n -moz-border-radius: 0 0 0 0 0 0 0;\n -ms-border-radius: 0 0 0 0 0 0 0;\n -o-border-radius: 0 0 0 0 0 0 0;\n border-radius: 0 0 0 0 0 0 0;\n border: 0;\n margin: 0;\n line-height: 40px;\n height: 40px;\n padding: 0 10px;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n z-index: 999;\n -webkit-border-radius: 0px 0px 0px 0px;\n -moz-border-radius: 0px 0px 0px 0px;\n -ms-border-radius: 0px 0px 0px 0px;\n -o-border-radius: 0px 0px 0px 0px;\n border-radius: 0px 0px 0px 0px;\n background: #f1f1f1;\n padding: 0px 0px 0px 0px;\n position: absolute;\n width: 100%;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n left: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-1 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-2 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-2 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-3 {\n width: 33.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-3 {\n width: 66.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-3 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-4 {\n width: 25%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-4 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-4 {\n width: 75%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-4 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-5 {\n width: 20%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-5 {\n width: 40%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-5 {\n width: 60%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-5 {\n width: 80%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-5 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-6 {\n width: 16.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-6 {\n width: 33.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-6 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-6 {\n width: 66.66667%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-6 {\n width: 83.33333%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-6 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-7 {\n width: 14.28571%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-7 {\n width: 28.57143%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-7 {\n width: 42.85714%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-7 {\n width: 57.14286%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-7 {\n width: 71.42857%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-7 {\n width: 85.71429%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-7 {\n width: 100%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-1-of-8 {\n width: 12.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-2-of-8 {\n width: 25%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-3-of-8 {\n width: 37.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-4-of-8 {\n width: 50%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-5-of-8 {\n width: 62.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-6-of-8 {\n width: 75%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-7-of-8 {\n width: 87.5%;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-columns-8-of-8 {\n width: 100%;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu {\n border: 0;\n padding: 10px;\n -webkit-border-radius: 0 0 0 0;\n -moz-border-radius: 0 0 0 0;\n -ms-border-radius: 0 0 0 0;\n -o-border-radius: 0 0 0 0;\n border-radius: 0 0 0 0;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n width: 50% !important;\n clear: none;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li:nth-child(odd) {\n clear: left;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu {\n clear: both;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n margin-left: 10px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n margin-left: 20px;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n display: block;\n float: left;\n clear: none;\n padding: 15px 15px 15px 15px;\n vertical-align: top;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item.mega-menu-clear {\n clear: left;\n /* Widget titles */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item h4.mega-block-title {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 5px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link {\n color: #555;\n font-family: inherit;\n font-size: 16px;\n text-transform: uppercase;\n text-decoration: none;\n font-weight: bold;\n margin: 0px 0px 0px 0px;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n border-top: 0px solid #555;\n border-left: 0px solid #555;\n border-right: 0px solid #555;\n border-bottom: 0px solid #555;\n /* Second level menu item hover */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item > a.mega-menu-link:focus {\n color: #555;\n font-weight: bold;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n /* Third level menu item */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link {\n color: #666;\n font-family: inherit;\n font-size: 14px;\n text-transform: none;\n text-decoration: none;\n font-weight: normal;\n margin: 0;\n padding: 0px 0px 0px 0px;\n vertical-align: top;\n display: block;\n /* Third level menu item hover */\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-megamenu > ul.mega-sub-menu > li.mega-menu-item li.mega-menu-item > a.mega-menu-link:focus {\n color: #666;\n font-weight: normal;\n text-decoration: none;\n background: rgba(0, 0, 0, 0);\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu {\n z-index: 999;\n position: absolute;\n width: 300px;\n border-top: 0px solid #fff;\n border-left: 0px solid #fff;\n border-right: 0px solid #fff;\n border-bottom: 0px solid #fff;\n padding: 0px 0px 0px 0px;\n background: #f1f1f1;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu {\n float: left;\n position: static;\n width: 100% !important;\n padding: 0;\n border: 0;\n }\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item {\n clear: both;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link {\n display: block;\n background: #f1f1f1;\n color: #666;\n font-family: inherit;\n font-size: 14px;\n font-weight: normal;\n padding: 0px 10px 0px 10px;\n line-height: 35px;\n text-decoration: none;\n text-transform: none;\n vertical-align: baseline;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a.mega-menu-link {\n border-top-left-radius: 0px;\n border-top-right-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:first-child a.mega-menu-link {\n border-top-left-radius: 0;\n border-top-right-radius: 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a.mega-menu-link {\n border-bottom-right-radius: 0px;\n border-bottom-left-radius: 0px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item:last-child a.mega-menu-link {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:hover, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item a.mega-menu-link:focus {\n background: #ddd;\n font-weight: normal;\n text-decoration: none;\n color: #666;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: absolute;\n left: 100%;\n top: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n position: static;\n left: 0;\n width: 100%;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-flyout ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu a.mega-menu-link {\n padding-left: 20px;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n display: inline-block;\n font: inherit;\n font-family: dashicons;\n margin: 0 0 0 6px;\n vertical-align: top;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n -webkit-transform: rotate(0);\n -moz-transform: rotate(0);\n -ms-transform: rotate(0);\n -o-transform: rotate(0);\n transform: rotate(0);\n color: inherit;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children a.mega-menu-link:after {\n float: right;\n }\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children.mega-toggle-on > a.mega-menu-link:after {\n content: \'\\f142\';\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after, #mega-menu-wrap-menu-left #mega-menu-menu-left > li.mega-menu-item-has-children.mega-hide-arrow > a.mega-menu-link:after {\n display: none;\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f139\';\n float: right;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-item li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n text-align: right;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link {\n text-align: left;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n float: right;\n margin: 0 0 0 6px;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item a.mega-menu-link:before {\n float: left;\n margin: 0 6px 0 0;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f141\';\n float: left;\n margin: 0;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right li.mega-menu-item-has-children > a.mega-menu-link:after {\n content: \'\\f140\';\n float: right;\n }\n}\n#mega-menu-wrap-menu-left #mega-menu-menu-left li.mega-menu-flyout.mega-align-bottom-right ul.mega-sub-menu li.mega-menu-item ul.mega-sub-menu {\n left: -100%;\n top: 0;\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle {\n display: none;\n z-index: 1;\n cursor: pointer;\n text-align: right;\n background: rgba(34, 34, 34, 0);\n -webkit-border-radius: 2px 2px 2px 2px;\n -moz-border-radius: 2px 2px 2px 2px;\n -ms-border-radius: 2px 2px 2px 2px;\n -o-border-radius: 2px 2px 2px 2px;\n border-radius: 2px 2px 2px 2px;\n line-height: 40px;\n height: 40px;\n color: #fff;\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left .mega-menu-toggle {\n display: block;\n }\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle:before {\n content: \"\\f333\";\n font-family: \'dashicons\';\n font-size: 24px;\n margin: 0 5px;\n float: right;\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open:before {\n content: \"\\f153\";\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle:after {\n content: \'MENU\';\n}\n#mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open:after {\n content: \"\";\n}\n@media only screen and (max-width: 600px) {\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left {\n display: none;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item > ul.mega-sub-menu {\n display: none;\n visibility: visible;\n opacity: 1;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item.mega-toggle-on > ul.mega-sub-menu, #mega-menu-wrap-menu-left .mega-menu-toggle + #mega-menu-menu-left li.mega-menu-item.mega-menu-megamenu.mega-toggle-on ul.mega-sub-menu {\n display: block;\n }\n #mega-menu-wrap-menu-left .mega-menu-toggle.mega-menu-open + #mega-menu-menu-left {\n display: block;\n }\n}\n#mega-menu-wrap-menu-left {\n clear: both;\n}\n/** Tuesday 15th of September 2015 03:32:23 AM **/','yes'),(2591,'_transient_timeout_bfa-api-versions','1442386551','no'),(2592,'_transient_bfa-api-versions','O:8:\"stdClass\":2:{s:8:\"versions\";a:13:{i:0;s:5:\"4.4.0\";i:1;s:5:\"4.3.0\";i:2;s:5:\"4.2.0\";i:3;s:5:\"4.1.0\";i:4;s:5:\"4.0.3\";i:5;s:5:\"4.0.1\";i:6;s:5:\"4.0.0\";i:7;s:5:\"3.2.1\";i:8;s:5:\"3.2.0\";i:9;s:5:\"3.1.1\";i:10;s:5:\"3.0.2\";i:11;s:3:\"3.0\";i:12;s:3:\"2.0\";}s:11:\"lastversion\";s:5:\"4.4.0\";}','no'),(2595,'_site_transient_timeout_theme_roots','1442345153','yes'),(2596,'_site_transient_theme_roots','a:4:{s:5:\"ethic\";s:7:\"/themes\";s:13:\"twentyfifteen\";s:7:\"/themes\";s:14:\"twentyfourteen\";s:7:\"/themes\";s:14:\"twentythirteen\";s:7:\"/themes\";}','yes'),(2597,'db_upgraded','1','yes'),(2598,'_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.3.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-4.3.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-4.3.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-4.3.1-new-bundled.zip\";s:7:\"partial\";b:0;s:8:\"rollback\";b:0;}s:7:\"current\";s:5:\"4.3.1\";s:7:\"version\";s:5:\"4.3.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.1\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1442343357;s:15:\"version_checked\";s:5:\"4.3.1\";s:12:\"translations\";a:0:{}}','yes'),(2599,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:23:\"genywebmaster@gmail.com\";s:7:\"version\";s:5:\"4.3.1\";s:9:\"timestamp\";i:1442343358;}','yes'),(2601,'_transient_doing_cron','1442347056.2069430351257324218750','yes'); /*!40000 ALTER TABLE `g516db_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_postmeta` -- DROP TABLE IF EXISTS `g516db_postmeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM AUTO_INCREMENT=7582 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_postmeta` -- LOCK TABLES `g516db_postmeta` WRITE; /*!40000 ALTER TABLE `g516db_postmeta` DISABLE KEYS */; INSERT INTO `g516db_postmeta` VALUES (2,4,'_form','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>'),(3,4,'_mail','a:8:{s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"[your-name] <genywebmaster@gmail.com>\";s:4:\"body\";s:170:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on GENY School (http://genewyork.com)\";s:9:\"recipient\";s:23:\"genywebmaster@gmail.com\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(4,4,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:14:\"[your-subject]\";s:6:\"sender\";s:37:\"GENY School <genywebmaster@gmail.com>\";s:4:\"body\";s:112:\"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on GENY School (http://genewyork.com)\";s:9:\"recipient\";s:12:\"[your-email]\";s:18:\"additional_headers\";s:33:\"Reply-To: genywebmaster@gmail.com\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";i:0;s:13:\"exclude_blank\";i:0;}'),(5,4,'_messages','a:8:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";}'),(6,4,'_additional_settings',''),(7,4,'_locale','en_US'),(39,447,'_wp_attached_file','2015/04/banner-01.jpg'),(40,447,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-01-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-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:1;}}'),(41,448,'_wp_attached_file','2015/04/banner-02.jpg'),(42,448,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-02-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-02-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-02-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:1;}}'),(43,449,'_wp_attached_file','2015/04/banner-03.jpg'),(44,449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-03.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-03-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-03-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-03-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:1;}}'),(45,450,'_wp_attached_file','2015/04/banner-04.jpg'),(46,450,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-04.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-04-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-04-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-04-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:1;}}'),(47,451,'_wp_attached_file','2015/04/banner-05.jpg'),(48,451,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-05.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-05-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-05-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-05-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:1;}}'),(49,452,'_wp_attached_file','2015/04/banner-06.jpg'),(50,452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-06.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-06-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-06-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-06-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:1;}}'),(51,453,'_wp_attached_file','2015/04/banner-07.jpg'),(52,453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:21:\"2015/04/banner-07.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-07-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-07-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-07-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-07-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:1;}}'),(53,454,'_wp_attached_file','2015/04/banner-08.jpg'),(54,454,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:650;s:4:\"file\";s:21:\"2015/04/banner-08.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-08-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-08-300x102.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:102;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-08-1024x347.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:347;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-08-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:1;}}'),(55,455,'_wp_attached_file','2015/04/check.png'),(56,455,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8;s:6:\"height\";i:8;s:4:\"file\";s:17:\"2015/04/check.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(57,456,'_wp_attached_file','2015/04/check-01.png'),(58,456,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8;s:6:\"height\";i:9;s:4:\"file\";s:20:\"2015/04/check-01.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(59,457,'_wp_attached_file','2015/04/enjoy.jpg'),(60,457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:547;s:4:\"file\";s:17:\"2015/04/enjoy.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"enjoy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"enjoy-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"enjoy-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:17:\"enjoy-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:1;}}'),(61,458,'_wp_attached_file','2015/04/find-Copy-2.jpg'),(62,458,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:23:\"2015/04/find-Copy-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"find-Copy-2-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-2-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:1;}}'),(63,459,'_wp_attached_file','2015/04/find-Copy-3.jpg'),(64,459,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:23:\"2015/04/find-Copy-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"find-Copy-3-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-3-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:1;}}'),(65,460,'_wp_attached_file','2015/04/find-Copy-4.jpg'),(66,460,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:23:\"2015/04/find-Copy-4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"find-Copy-4-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"find-Copy-4-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:1;}}'),(67,461,'_wp_attached_file','2015/04/find-Copy.jpg'),(68,461,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:21:\"2015/04/find-Copy.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"find-Copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"find-Copy-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"find-Copy-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:1;}}'),(69,462,'_wp_attached_file','2015/04/find.jpg'),(70,462,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:16:\"2015/04/find.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"find-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"find-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:16:\"find-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:1;}}'),(71,463,'_wp_attached_file','2015/04/lastest-2-event-1.jpg'),(72,463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/lastest-2-event-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-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: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:1;}}'),(73,464,'_wp_attached_file','2015/04/lastest-2-event-2.jpg'),(74,464,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/lastest-2-event-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-2-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:1;}}'),(75,465,'_wp_attached_file','2015/04/lastest-2-event-3.jpg'),(76,465,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/lastest-2-event-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-3-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:1;}}'),(77,466,'_wp_attached_file','2015/04/lastest-2-event-4.jpg'),(78,466,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/lastest-2-event-4.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-2-event-4-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:1;}}'),(79,467,'_wp_attached_file','2015/04/lastest-6.jpg'),(80,467,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:21:\"2015/04/lastest-6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"lastest-6-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"lastest-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"lastest-6-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:1;}}'),(81,468,'_wp_attached_file','2015/04/lastest-Home-02-1.jpg'),(82,468,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-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: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:1;}}'),(83,469,'_wp_attached_file','2015/04/lastest-Home-02-2.jpg'),(84,469,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-2-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:1;}}'),(85,470,'_wp_attached_file','2015/04/lastest-Home-02-3.jpg'),(86,470,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-3-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:\"lastest-Home-02-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-3-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:1;}}'),(87,471,'_wp_attached_file','2015/04/lastest-Home-02-4.jpg'),(88,471,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-4.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-4-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:\"lastest-Home-02-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-4-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:1;}}'),(89,472,'_wp_attached_file','2015/04/lastest-Home-02-5.jpg'),(90,472,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-5-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:\"lastest-Home-02-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-5-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:1;}}'),(91,473,'_wp_attached_file','2015/04/lastest-Home-02-6.jpg'),(92,473,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-6.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-6-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:\"lastest-Home-02-6-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-6-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:1;}}'),(93,474,'_wp_attached_file','2015/04/lastest-Home-02-7.jpg'),(94,474,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-7-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:\"lastest-Home-02-7-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-7-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:1;}}'),(95,475,'_wp_attached_file','2015/04/lastest-Home-02-8.jpg'),(96,475,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:29:\"2015/04/lastest-Home-02-8.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-8-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:\"lastest-Home-02-8-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"lastest-Home-02-8-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:1;}}'),(97,476,'_wp_attached_file','2015/04/lastest-Home-02-10.jpg'),(98,476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-10.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-10-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:\"lastest-Home-02-10-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-10-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:1;}}'),(99,477,'_wp_attached_file','2015/04/number-one-logo.png'),(100,477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:52;s:4:\"file\";s:27:\"2015/04/number-one-logo.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(101,479,'_wp_attached_file','2015/04/logo-header-2.png'),(102,479,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:164;s:6:\"height\";i:71;s:4:\"file\";s:25:\"2015/04/logo-header-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header-2-150x71.png\";s:5:\"width\";i:150;s:6:\"height\";i:71;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header-2-150x71.png\";s:5:\"width\";i:150;s:6:\"height\";i:71;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;}}'),(103,481,'_wp_attached_file','2015/04/enjoy1.jpg'),(104,481,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:547;s:4:\"file\";s:18:\"2015/04/enjoy1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"enjoy1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"enjoy1-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:19:\"enjoy1-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:18:\"enjoy1-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:1;}}'),(105,523,'_wp_attached_file','2015/04/icon-footer.png'),(106,523,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:64;s:6:\"height\";i:80;s:4:\"file\";s:23:\"2015/04/icon-footer.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(107,539,'_wp_attached_file','2015/04/logo-header06.png'),(108,539,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:90;s:6:\"height\";i:108;s:4:\"file\";s:25:\"2015/04/logo-header06.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(109,542,'_wp_attached_file','2015/04/logo-services.png'),(110,542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:52;s:4:\"file\";s:25:\"2015/04/logo-services.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(111,581,'_wp_attached_file','2015/04/cources-Home-04-Copy-2.jpg'),(112,581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:34:\"2015/04/cources-Home-04-Copy-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-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:1;}}'),(113,582,'_wp_attached_file','2015/04/cources-Home-04-Copy-3.jpg'),(114,582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:34:\"2015/04/cources-Home-04-Copy-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-3-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:\"cources-Home-04-Copy-3-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-3-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:1;}}'),(115,583,'_wp_attached_file','2015/04/cources-Home-04-Copy.jpg'),(116,583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:32:\"2015/04/cources-Home-04-Copy.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"cources-Home-04-Copy-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:\"cources-Home-04-Copy-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"cources-Home-04-Copy-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:1;}}'),(117,584,'_wp_attached_file','2015/04/cources-Home-04.jpg'),(118,584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:27:\"2015/04/cources-Home-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cources-Home-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cources-Home-04-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"cources-Home-04-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:1;}}'),(119,597,'_wp_attached_file','2015/04/intruction-Home-06.jpg'),(120,597,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1880;s:6:\"height\";i:290;s:4:\"file\";s:30:\"2015/04/intruction-Home-06.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"intruction-Home-06-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:\"intruction-Home-06-300x46.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:46;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"intruction-Home-06-1024x158.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"intruction-Home-06-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:1;}}'),(121,603,'_wp_attached_file','2015/04/logo-instruction-home6.png'),(122,603,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:39;s:4:\"file\";s:34:\"2015/04/logo-instruction-home6.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(123,658,'_wp_attached_file','2015/04/lastest-Home-02-11.jpg'),(124,658,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-11.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-11-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:\"lastest-Home-02-11-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-11-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:1;}}'),(125,659,'_wp_attached_file','2015/04/lastest-Home-02-21.jpg'),(126,659,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-21.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-21-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:\"lastest-Home-02-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-21-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:1;}}'),(127,660,'_wp_attached_file','2015/04/lastest-Home-02-31.jpg'),(128,660,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-31.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-31-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:\"lastest-Home-02-31-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-31-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:1;}}'),(129,661,'_wp_attached_file','2015/04/lastest-Home-02-41.jpg'),(130,661,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-41.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-41-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:\"lastest-Home-02-41-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-41-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:1;}}'),(131,662,'_wp_attached_file','2015/04/lastest-Home-02-51.jpg'),(132,662,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-51.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-51-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:\"lastest-Home-02-51-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-51-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:1;}}'),(133,663,'_wp_attached_file','2015/04/lastest-Home-02-61.jpg'),(134,663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-61.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-61-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:\"lastest-Home-02-61-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-61-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:1;}}'),(135,664,'_wp_attached_file','2015/04/lastest-Home-02-71.jpg'),(136,664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-71.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-71-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:\"lastest-Home-02-71-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-71-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:1;}}'),(137,665,'_wp_attached_file','2015/04/lastest-Home-02-81.jpg'),(138,665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:30:\"2015/04/lastest-Home-02-81.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-81-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:\"lastest-Home-02-81-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"lastest-Home-02-81-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:1;}}'),(139,666,'_wp_attached_file','2015/04/lastest-Home-02-101.jpg'),(140,666,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:31:\"2015/04/lastest-Home-02-101.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"lastest-Home-02-101-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:\"lastest-Home-02-101-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"lastest-Home-02-101-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:1;}}'),(141,703,'_wp_attached_file','2015/04/logo-header5.png'),(142,703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:154;s:6:\"height\";i:55;s:4:\"file\";s:24:\"2015/04/logo-header5.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-header5-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-header5-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;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;}}'),(143,705,'_wp_attached_file','2015/04/logo-header51.png'),(144,705,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:154;s:6:\"height\";i:55;s:4:\"file\";s:25:\"2015/04/logo-header51.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header51-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header51-150x55.png\";s:5:\"width\";i:150;s:6:\"height\";i:55;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;}}'),(145,707,'_wp_attached_file','2015/04/logo-Header-07.png'),(146,707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:138;s:6:\"height\";i:48;s:4:\"file\";s:26:\"2015/04/logo-Header-07.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(147,711,'_wp_attached_file','2015/04/logo-Home5.png'),(148,711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:94;s:6:\"height\";i:120;s:4:\"file\";s:22:\"2015/04/logo-Home5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(149,712,'_wp_attached_file','2015/04/logo-1-Home5.png'),(150,712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:40;s:6:\"height\";i:53;s:4:\"file\";s:24:\"2015/04/logo-1-Home5.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(151,718,'_wp_attached_file','2015/04/cources-Home-05.jpg'),(152,718,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:27:\"2015/04/cources-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"cources-Home-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"cources-Home-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"cources-Home-05-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:1;}}'),(153,721,'_wp_attached_file','2015/04/lastest-event.jpg'),(154,721,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:25:\"2015/04/lastest-event.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"lastest-event-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"lastest-event-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:25:\"lastest-event-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:1;}}'),(155,735,'_wp_attached_file','2015/04/portfolio-1-Home-05.jpg'),(156,735,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/04/portfolio-1-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-05-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:\"portfolio-1-Home-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-05-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:1;}}'),(157,738,'_wp_attached_file','2015/04/portfolio-4-Home-05.jpg'),(158,738,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/04/portfolio-4-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-4-Home-05-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:\"portfolio-4-Home-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-4-Home-05-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:1;}}'),(159,741,'_wp_attached_file','2015/04/portfolio-3-Home-05.jpg'),(160,741,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:445;s:6:\"height\";i:759;s:4:\"file\";s:31:\"2015/04/portfolio-3-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-05-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:\"portfolio-3-Home-05-176x300.jpg\";s:5:\"width\";i:176;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-05-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:1;}}'),(161,745,'_wp_attached_file','2015/04/portfolio-2-Home-05.jpg'),(162,745,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/04/portfolio-2-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-05-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:\"portfolio-2-Home-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-05-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:1;}}'),(163,749,'_wp_attached_file','2015/04/portfolio-5-Home-05.jpg'),(164,749,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/04/portfolio-5-Home-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-5-Home-05-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:\"portfolio-5-Home-05-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-5-Home-05-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:1;}}'),(165,785,'_wp_attached_file','2015/04/life-student-Home-05.jpg'),(166,785,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:547;s:4:\"file\";s:32:\"2015/04/life-student-Home-05.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"life-student-Home-05-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:\"life-student-Home-05-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"life-student-Home-05-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"life-student-Home-05-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:1;}}'),(167,802,'_wp_attached_file','2015/04/leader-team-Home-01.jpg'),(168,802,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:31:\"2015/04/leader-team-Home-01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"leader-team-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"leader-team-Home-01-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:1;}}'),(169,806,'_wp_attached_file','2015/04/leader-team-3-Home-01.jpg'),(170,806,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:33:\"2015/04/leader-team-3-Home-01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-team-3-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-team-3-Home-01-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:1;}}'),(171,807,'_wp_attached_file','2015/04/leader-team-4-Home-01.jpg'),(172,807,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:33:\"2015/04/leader-team-4-Home-01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-team-4-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-team-4-Home-01-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:1;}}'),(173,808,'_wp_attached_file','2015/04/leader-tema-2-Home-01.jpg'),(174,808,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:33:\"2015/04/leader-tema-2-Home-01.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-tema-2-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"leader-tema-2-Home-01-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:1;}}'),(175,861,'_wp_attached_file','2015/04/images-informtion-Home-7.jpg'),(176,861,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:427;s:4:\"file\";s:36:\"2015/04/images-informtion-Home-7.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"images-informtion-Home-7-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:\"images-informtion-Home-7-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:36:\"images-informtion-Home-7-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:1;}}'),(177,872,'_wp_attached_file','2015/04/life-student-Home-07.jpg'),(178,872,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:547;s:4:\"file\";s:32:\"2015/04/life-student-Home-07.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"life-student-Home-07-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:\"life-student-Home-07-300x85.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:85;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"life-student-Home-07-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"life-student-Home-07-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:1;}}'),(179,959,'_wp_attached_file','2015/04/Logo-header3.png'),(180,959,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:145;s:4:\"file\";s:24:\"2015/04/Logo-header3.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(181,961,'_wp_attached_file','2015/04/logo-introduce-home3-.png'),(182,961,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:39;s:4:\"file\";s:33:\"2015/04/logo-introduce-home3-.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(183,966,'_wp_attached_file','2015/05/number-one-1-Home-03.jpg'),(184,966,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:32:\"2015/05/number-one-1-Home-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"number-one-1-Home-03-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:\"number-one-1-Home-03-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"number-one-1-Home-03-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:1;}}'),(185,989,'_wp_attached_file','2015/04/portfolio-1-Home-03.jpg'),(186,989,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:31:\"2015/04/portfolio-1-Home-03.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-03-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:1;}}'),(187,1057,'_wp_attached_file','2015/05/logo-header4.png'),(188,1057,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:145;s:4:\"file\";s:24:\"2015/05/logo-header4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(189,1068,'_wp_attached_file','2015/05/lastest-event-1-Home-04.jpg'),(190,1068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2015/05/lastest-event-1-Home-04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-1-Home-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-1-Home-04-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:1;}}'),(191,1070,'_wp_attached_file','2015/05/lastest-event-2-Home-04.jpg'),(192,1070,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2015/05/lastest-event-2-Home-04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-2-Home-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-2-Home-04-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:1;}}'),(193,1073,'_wp_attached_file','2015/05/lastest-event-3-Home-04.jpg'),(194,1073,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2015/05/lastest-event-3-Home-04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-3-Home-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-3-Home-04-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:1;}}'),(195,1076,'_wp_attached_file','2015/05/lastest-event-4-Home-04.jpg'),(196,1076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:200;s:4:\"file\";s:35:\"2015/05/lastest-event-4-Home-04.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-4-Home-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"lastest-event-4-Home-04-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:1;}}'),(197,1084,'_wp_attached_file','2015/05/instruction.jpg'),(198,1084,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:290;s:4:\"file\";s:23:\"2015/05/instruction.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"instruction-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:22:\"instruction-300x45.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:45;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"instruction-1024x155.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"instruction-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:1;}}'),(199,1085,'_wp_attached_file','2015/05/images1.png'),(200,1085,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:30;s:6:\"height\";i:39;s:4:\"file\";s:19:\"2015/05/images1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(201,1113,'_wp_attached_file','2015/05/portfolio-2-Home-04.jpg'),(202,1113,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:384;s:4:\"file\";s:31:\"2015/05/portfolio-2-Home-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-04-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:\"portfolio-2-Home-04-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-04-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:1;}}'),(203,1114,'_wp_attached_file','2015/05/cources-Home-04-Copy-2.jpg'),(204,1114,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:34:\"2015/05/cources-Home-04-Copy-2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"cources-Home-04-Copy-2-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:1;}}'),(205,1115,'_wp_attached_file','2015/05/lastest-event-4-Home-041.jpg'),(206,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:200;s:4:\"file\";s:36:\"2015/05/lastest-event-4-Home-041.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"lastest-event-4-Home-041-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:36:\"lastest-event-4-Home-041-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:1;}}'),(207,1116,'_wp_attached_file','2015/05/images-introduce-Home-04.jpg'),(208,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:297;s:4:\"file\";s:36:\"2015/05/images-introduce-Home-04.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"images-introduce-Home-04-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:\"images-introduce-Home-04-300x76.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:76;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"images-introduce-Home-04-1024x260.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:260;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:36:\"images-introduce-Home-04-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:1;}}'),(209,1117,'_wp_attached_file','2015/05/logo-introduce-home-4.png'),(210,1117,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:60;s:6:\"height\";i:78;s:4:\"file\";s:33:\"2015/05/logo-introduce-home-4.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(211,1131,'_wp_attached_file','2015/05/logo-banner.png'),(212,1131,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:172;s:6:\"height\";i:210;s:4:\"file\";s:23:\"2015/05/logo-banner.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-banner-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(213,1132,'_wp_attached_file','2015/05/logo-scroll.png'),(214,1132,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:44;s:6:\"height\";i:56;s:4:\"file\";s:23:\"2015/05/logo-scroll.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(215,1141,'_wp_attached_file','2015/05/introduce-Home-01.jpg'),(216,1141,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:569;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2015/05/introduce-Home-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"introduce-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"introduce-Home-01-300x158.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:158;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"introduce-Home-01-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:1;}}'),(217,1160,'_wp_attached_file','2015/05/lastest-image-Home-01.png'),(218,1160,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:522;s:4:\"file\";s:33:\"2015/05/lastest-image-Home-01.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"lastest-image-Home-01-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:\"lastest-image-Home-01-300x256.png\";s:5:\"width\";i:300;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"lastest-image-Home-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(219,1160,'_edit_last','2'),(220,1162,'_wp_attached_file','2015/05/lastest-background-Home-01.jpg'),(221,1162,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1899;s:6:\"height\";i:600;s:4:\"file\";s:38:\"2015/05/lastest-background-Home-01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"lastest-background-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"lastest-background-Home-01-300x95.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:95;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"lastest-background-Home-01-1024x324.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:324;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:38:\"lastest-background-Home-01-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:1;}}'),(222,1212,'_wp_attached_file','2015/05/port-folio-1-Home-01.jpg'),(223,1212,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:32:\"2015/05/port-folio-1-Home-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"port-folio-1-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"port-folio-1-Home-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"port-folio-1-Home-01-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:1;}}'),(224,1222,'_wp_attached_file','2015/05/port-folio-1-Home-011.jpg'),(225,1222,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:33:\"2015/05/port-folio-1-Home-011.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"port-folio-1-Home-011-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:\"port-folio-1-Home-011-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"port-folio-1-Home-011-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:1;}}'),(226,1223,'_wp_attached_file','2015/05/portfolio-9-Courses-2.jpg'),(227,1223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:33:\"2015/05/portfolio-9-Courses-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"portfolio-9-Courses-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"portfolio-9-Courses-2-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:1;}}'),(228,1227,'_wp_attached_file','2015/05/images-4-Courses-1.jpg'),(229,1227,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:30:\"2015/05/images-4-Courses-1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"images-4-Courses-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"images-4-Courses-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"images-4-Courses-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: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:1;}}'),(230,1277,'_wp_attached_file','2015/05/port-folio-1-Home-012.jpg'),(231,1277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:33:\"2015/05/port-folio-1-Home-012.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"port-folio-1-Home-012-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:\"port-folio-1-Home-012-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"port-folio-1-Home-012-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:1;}}'),(232,1278,'_wp_attached_file','2015/05/portfolio-2-Home-01.jpg'),(233,1278,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/05/portfolio-2-Home-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-01-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:1;}}'),(234,1279,'_wp_attached_file','2015/05/portfolio-3-Home-01.jpg'),(235,1279,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/05/portfolio-3-Home-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-01-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:1;}}'),(236,1280,'_wp_attached_file','2015/05/portfolio-4-Home-01.jpg'),(237,1280,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/05/portfolio-4-Home-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-4-Home-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"portfolio-4-Home-01-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-4-Home-01-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:1;}}'),(238,1281,'_wp_attached_file','2015/05/portfolio-2-Home-03.jpg'),(239,1281,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:31:\"2015/05/portfolio-2-Home-03.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-2-Home-03-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:1;}}'),(240,1282,'_wp_attached_file','2015/05/portfolio-3-Home-03.jpg'),(241,1282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:31:\"2015/05/portfolio-3-Home-03.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-03-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:1;}}'),(242,1283,'_wp_attached_file','2015/05/portfolio-1-Home-03.jpg'),(243,1283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:31:\"2015/05/portfolio-1-Home-03.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-1-Home-03-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:1;}}'),(244,1357,'_wp_attached_file','2015/04/login-Home-03.jpg'),(245,1357,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:425;s:6:\"height\";i:309;s:4:\"file\";s:25:\"2015/04/login-Home-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"login-Home-03-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:\"login-Home-03-300x218.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:218;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:25:\"login-Home-03-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:1;}}'),(246,1384,'_wp_attached_file','2015/04/logo-header-1.png'),(247,1384,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:215;s:6:\"height\";i:32;s:4:\"file\";s:25:\"2015/04/logo-header-1.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header-1-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"logo-header-1-150x32.png\";s:5:\"width\";i:150;s:6:\"height\";i:32;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;}}'),(248,1398,'_wp_attached_file','2015/05/portfolio-3-Home-07.jpg'),(249,1398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:31:\"2015/05/portfolio-3-Home-07.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-07-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:\"portfolio-3-Home-07-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"portfolio-3-Home-07-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:1;}}'),(250,1484,'_wp_attached_file','2015/05/image-1-Blog-01-Column.jpg'),(251,1484,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/image-1-Blog-01-Column.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"image-1-Blog-01-Column-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:\"image-1-Blog-01-Column-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"image-1-Blog-01-Column-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"image-1-Blog-01-Column-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:1;}}'),(252,1499,'_wp_attached_file','2015/05/portfolio-9-Courses-21.jpg'),(253,1499,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:34:\"2015/05/portfolio-9-Courses-21.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"portfolio-9-Courses-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"portfolio-9-Courses-21-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:1;}}'),(254,1537,'_wp_attached_file','2015/05/image-2-Blog-01-Column.jpg'),(255,1537,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/image-2-Blog-01-Column.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"image-2-Blog-01-Column-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:\"image-2-Blog-01-Column-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"image-2-Blog-01-Column-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"image-2-Blog-01-Column-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:1;}}'),(256,1540,'_wp_attached_file','2015/05/image-3-Blog-01-Column.jpg'),(257,1540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/image-3-Blog-01-Column.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"image-3-Blog-01-Column-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:\"image-3-Blog-01-Column-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"image-3-Blog-01-Column-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"image-3-Blog-01-Column-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:1;}}'),(258,1548,'_wp_attached_file','2015/05/image-4-Blog-01-Column.jpg'),(259,1548,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/image-4-Blog-01-Column.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"image-4-Blog-01-Column-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:\"image-4-Blog-01-Column-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"image-4-Blog-01-Column-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"image-4-Blog-01-Column-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:1;}}'),(260,1571,'_wp_attached_file','2015/05/images-1-Blog-2-Column.jpg'),(261,1571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-1-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-Blog-2-Column-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:\"images-1-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-Blog-2-Column-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:1;}}'),(262,1573,'_wp_attached_file','2015/05/images-2-Blog-2-Column.jpg'),(263,1573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-2-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-Blog-2-Column-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:\"images-2-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-Blog-2-Column-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:1;}}'),(264,1576,'_wp_attached_file','2015/05/images-3-Blog-2-Column.jpg'),(265,1576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-3-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-3-Blog-2-Column-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:\"images-3-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-3-Blog-2-Column-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:1;}}'),(266,1579,'_wp_attached_file','2015/05/images-4-RightSidebar.jpg'),(267,1579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-4-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-4-RightSidebar-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:\"images-4-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-4-RightSidebar-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:1;}}'),(268,1582,'_wp_attached_file','2015/05/images-5-Blog-2-Column.jpg'),(269,1582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-5-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-2-Column-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:\"images-5-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-2-Column-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:1;}}'),(270,1586,'_wp_attached_file','2015/05/images-6-Blog-2-Column.jpg'),(271,1586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-6-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-Blog-2-Column-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:\"images-6-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-Blog-2-Column-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:1;}}'),(272,1598,'_wp_attached_file','2015/05/images-1-RightSidebar.jpg'),(273,1598,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-1-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-1-RightSidebar-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:\"images-1-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-1-RightSidebar-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:1;}}'),(274,1601,'_wp_attached_file','2015/05/images-2-RightSidebar.jpg'),(275,1601,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-2-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-2-RightSidebar-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:\"images-2-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-2-RightSidebar-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:1;}}'),(276,1606,'_wp_attached_file','2015/05/Timeline-01.jpg'),(277,1606,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/05/Timeline-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-01-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-01-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:1;}}'),(278,1611,'_wp_attached_file','2015/05/images-6-RightSidebar.jpg'),(279,1611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-6-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-6-RightSidebar-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:\"images-6-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-6-RightSidebar-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:1;}}'),(280,1628,'_wp_attached_file','2015/04/404-Page.jpg'),(281,1628,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1758;s:6:\"height\";i:898;s:4:\"file\";s:20:\"2015/04/404-Page.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"404-Page-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"404-Page-300x153.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"404-Page-1024x523.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:20:\"404-Page-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:1;}}'),(282,1755,'_wp_attached_file','2015/06/about_us_introduce.jpg'),(283,1755,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:548;s:4:\"file\";s:30:\"2015/06/about_us_introduce.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"about_us_introduce-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:\"about_us_introduce-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"about_us_introduce-1024x292.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:292;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"about_us_introduce-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:1;}}'),(284,1857,'_wp_attached_file','2015/05/image-1-Blog-01-Column1.jpg'),(285,1857,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2015/05/image-1-Blog-01-Column1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"image-1-Blog-01-Column1-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:\"image-1-Blog-01-Column1-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"image-1-Blog-01-Column1-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"image-1-Blog-01-Column1-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:1;}}'),(286,1858,'_wp_attached_file','2015/05/image-3-Blog-01-Column1.jpg'),(287,1858,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1170;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2015/05/image-3-Blog-01-Column1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"image-3-Blog-01-Column1-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:\"image-3-Blog-01-Column1-300x103.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:103;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"image-3-Blog-01-Column1-1024x350.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:350;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"image-3-Blog-01-Column1-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:1;}}'),(288,1891,'_wp_attached_file','2015/04/learn-586409.jpg'),(289,1891,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:24:\"2015/04/learn-586409.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"learn-586409-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:\"learn-586409-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"learn-586409-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;}}'),(290,1892,'_wp_attached_file','2015/04/children-286239.jpg'),(291,1892,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:27:\"2015/04/children-286239.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"children-286239-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"children-286239-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"children-286239-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;}}'),(292,1893,'_wp_attached_file','2015/04/people-316506.jpg'),(293,1893,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:25:\"2015/04/people-316506.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"people-316506-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:\"people-316506-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:25:\"people-316506-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;}}'),(294,1895,'_wp_attached_file','2015/04/read-720528.jpg'),(295,1895,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:23:\"2015/04/read-720528.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"read-720528-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"read-720528-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"read-720528-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;}}'),(296,1896,'_wp_attached_file','2015/04/workstation-405768.jpg'),(297,1896,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:30:\"2015/04/workstation-405768.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"workstation-405768-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:\"workstation-405768-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"workstation-405768-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;}}'),(298,1897,'_wp_attached_file','2015/04/drawing_circle_hires.jpg'),(299,1897,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:32:\"2015/04/drawing_circle_hires.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"drawing_circle_hires-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:\"drawing_circle_hires-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"drawing_circle_hires-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;}}'),(300,1899,'_wp_attached_file','2015/04/teacher-702998.jpg'),(301,1899,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:26:\"2015/04/teacher-702998.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"teacher-702998-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"teacher-702998-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:26:\"teacher-702998-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;}}'),(302,1900,'_wp_attached_file','2015/04/workstation-4057681.jpg'),(303,1900,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:31:\"2015/04/workstation-4057681.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"workstation-4057681-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:\"workstation-4057681-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"workstation-4057681-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;}}'),(304,1901,'_wp_attached_file','2015/04/dieting_concept_hires.jpg'),(305,1901,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:770;s:6:\"height\";i:412;s:4:\"file\";s:33:\"2015/04/dieting_concept_hires.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"dieting_concept_hires-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:\"dieting_concept_hires-300x161.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"dieting_concept_hires-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;}}'),(306,1919,'_wp_attached_file','2015/04/check1.png'),(307,1919,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8;s:6:\"height\";i:8;s:4:\"file\";s:18:\"2015/04/check1.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(308,1927,'_wp_attached_file','2015/04/check-011.png'),(309,1927,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8;s:6:\"height\";i:8;s:4:\"file\";s:21:\"2015/04/check-011.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(310,1953,'_wp_attached_file','2015/04/check-012.png'),(311,1953,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:8;s:6:\"height\";i:9;s:4:\"file\";s:21:\"2015/04/check-012.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(312,1987,'_wp_attached_file','2015/05/logobanner-color-2.png'),(313,1987,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:172;s:6:\"height\";i:207;s:4:\"file\";s:30:\"2015/05/logobanner-color-2.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"logobanner-color-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"logobanner-color-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(314,2006,'_wp_attached_file','2015/04/images-2-Cources-3.jpg'),(315,2006,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:328;s:4:\"file\";s:30:\"2015/04/images-2-Cources-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"images-2-Cources-3-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:\"images-2-Cources-3-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"images-2-Cources-3-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:1;}}'),(316,2011,'_wp_attached_file','2015/06/images-4-Events-3.jpg'),(317,2011,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/06/images-4-Events-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-4-Events-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-4-Events-3-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:1;}}'),(318,2013,'_wp_attached_file','2015/06/images-3-Events-3.jpg'),(319,2013,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/06/images-3-Events-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-3-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:1;}}'),(320,2014,'_wp_attached_file','2015/06/images-5-Events-3.jpg'),(321,2014,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/06/images-5-Events-3.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-5-Events-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-5-Events-3-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:1;}}'),(322,2054,'_wp_attached_file','2015/04/images-2-Events-3.jpg'),(323,2054,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:870;s:6:\"height\";i:328;s:4:\"file\";s:29:\"2015/04/images-2-Events-3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-2-Events-3-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:\"images-2-Events-3-300x113.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:113;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-2-Events-3-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:1;}}'),(324,2096,'_wp_attached_file','2015/06/images-7-Events-1.jpg'),(325,2096,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/06/images-7-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-7-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-7-Events-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: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:1;}}'),(326,2097,'_wp_attached_file','2015/06/images-8-Events-1.jpg'),(327,2097,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/06/images-8-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-8-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-8-Events-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: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:1;}}'),(328,2098,'_wp_attached_file','2015/04/images-9-Events-1.jpg'),(329,2098,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/images-9-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-9-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-9-Events-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: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:1;}}'),(330,2099,'_wp_attached_file','2015/06/images-10-Events-1.jpg'),(331,2099,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:30:\"2015/06/images-10-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"images-10-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"images-10-Events-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: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:1;}}'),(332,2100,'_wp_attached_file','2015/04/images-11-Events-1.jpg'),(333,2100,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:30:\"2015/04/images-11-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"images-11-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"images-11-Events-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: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:1;}}'),(334,2101,'_wp_attached_file','2015/06/images-12-Events-1.jpg'),(335,2101,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:30:\"2015/06/images-12-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"images-12-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"images-12-Events-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: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:1;}}'),(336,2124,'_wp_attached_file','2015/05/images-1-RightSidebar1.jpg'),(337,2124,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-1-RightSidebar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-RightSidebar1-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:\"images-1-RightSidebar1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-RightSidebar1-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:1;}}'),(338,2125,'_wp_attached_file','2015/05/images-2-RightSidebar1.jpg'),(339,2125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-2-RightSidebar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-RightSidebar1-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:\"images-2-RightSidebar1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-RightSidebar1-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:1;}}'),(340,2126,'_wp_attached_file','2015/05/images-3-RightSidebar.jpg'),(341,2126,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-3-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-3-RightSidebar-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:\"images-3-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-3-RightSidebar-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:1;}}'),(342,2127,'_wp_attached_file','2015/05/images-4-RightSidebar1.jpg'),(343,2127,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-4-RightSidebar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-RightSidebar1-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:\"images-4-RightSidebar1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-RightSidebar1-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:1;}}'),(344,2128,'_wp_attached_file','2015/05/images-5-RightSidebar.jpg'),(345,2128,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:33:\"2015/05/images-5-RightSidebar.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"images-5-RightSidebar-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:\"images-5-RightSidebar-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"images-5-RightSidebar-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:1;}}'),(346,2129,'_wp_attached_file','2015/05/images-6-RightSidebar1.jpg'),(347,2129,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-6-RightSidebar1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-RightSidebar1-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:\"images-6-RightSidebar1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-RightSidebar1-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:1;}}'),(348,2175,'_wp_attached_file','2015/06/Timeline-01.jpg'),(349,2175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-01.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-01-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-01-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:1;}}'),(350,2176,'_wp_attached_file','2015/06/Timeline-02.jpg'),(351,2176,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-02.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-02-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-02-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:1;}}'),(352,2179,'_wp_attached_file','2015/06/Timeline-03.jpg'),(353,2179,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-03.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-03-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-03-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:1;}}'),(354,2182,'_wp_attached_file','2015/06/Timeline-04.jpg'),(355,2182,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-04.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-04-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-04-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-04-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:1;}}'),(356,2186,'_wp_attached_file','2015/06/Timeline-05.jpg'),(357,2186,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-05.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-05-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-05-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-05-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:1;}}'),(358,2189,'_wp_attached_file','2015/06/Timeline-06.jpg'),(359,2189,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:280;s:4:\"file\";s:23:\"2015/06/Timeline-06.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-06-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Timeline-06-300x227.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:227;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Timeline-06-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:1;}}'),(360,2235,'_wp_attached_file','2015/06/images-1-Blog-4-Column.jpg'),(361,2235,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-1-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-Blog-4-Column-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:\"images-1-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-1-Blog-4-Column-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:1;}}'),(362,2238,'_wp_attached_file','2015/06/images-2-Blog-4-Column.jpg'),(363,2238,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-2-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-Blog-4-Column-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:\"images-2-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-2-Blog-4-Column-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:1;}}'),(364,2241,'_wp_attached_file','2015/06/images-3-Blog-4-Column.jpg'),(365,2241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-3-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-3-Blog-4-Column-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:\"images-3-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-3-Blog-4-Column-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:1;}}'),(366,2244,'_wp_attached_file','2015/06/images-4-Blog-4-Column.jpg'),(367,2244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-4-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-Blog-4-Column-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:\"images-4-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-Blog-4-Column-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:1;}}'),(368,2247,'_wp_attached_file','2015/06/images-5-Blog-4-Column.jpg'),(369,2247,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-5-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-4-Column-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:\"images-5-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-4-Column-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:1;}}'),(370,2250,'_wp_attached_file','2015/06/images-6-Blog-4-Column.jpg'),(371,2250,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-6-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-Blog-4-Column-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:\"images-6-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-6-Blog-4-Column-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:1;}}'),(372,2253,'_wp_attached_file','2015/06/images-7-Blog-4-Column.jpg'),(373,2253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-7-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-7-Blog-4-Column-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:\"images-7-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-7-Blog-4-Column-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:1;}}'),(374,2256,'_wp_attached_file','2015/06/images-8-Blog-4-Column.jpg'),(375,2256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/06/images-8-Blog-4-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-8-Blog-4-Column-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:\"images-8-Blog-4-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-8-Blog-4-Column-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:1;}}'),(376,2267,'_wp_attached_file','2015/05/images-2-Blog-2-Column1.jpg'),(377,2267,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2015/05/images-2-Blog-2-Column1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"images-2-Blog-2-Column1-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:\"images-2-Blog-2-Column1-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"images-2-Blog-2-Column1-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:1;}}'),(378,2672,'_wp_attached_file','2015/07/image-home-4.png'),(379,2672,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:399;s:4:\"file\";s:24:\"2015/07/image-home-4.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"image-home-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"image-home-4-278x300.png\";s:5:\"width\";i:278;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"image-home-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(380,2699,'_wp_attached_file','2015/04/images-8-Events-1.jpg'),(381,2699,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/images-8-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-8-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-8-Events-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: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:1;}}'),(382,2700,'_wp_attached_file','2015/04/images-3-Events-2.jpg'),(383,2700,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/images-3-Events-2.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-2-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:1;}}'),(384,2702,'_wp_attached_file','2015/04/images-3-Events-1.jpg'),(385,2702,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:270;s:4:\"file\";s:29:\"2015/04/images-3-Events-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"images-3-Events-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: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:1;}}'),(386,2703,'_wp_attached_file','2015/05/images-4-Blog-2-Column.jpg'),(387,2703,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:34:\"2015/05/images-4-Blog-2-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-Blog-2-Column-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:\"images-4-Blog-2-Column-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-4-Blog-2-Column-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:1;}}'),(388,2704,'_wp_attached_file','2015/05/images-1-Blog-2-Column1.jpg'),(389,2704,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:570;s:6:\"height\";i:400;s:4:\"file\";s:35:\"2015/05/images-1-Blog-2-Column1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"images-1-Blog-2-Column1-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:\"images-1-Blog-2-Column1-300x211.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:211;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"images-1-Blog-2-Column1-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:1;}}'),(390,2706,'_wp_attached_file','2015/05/images-5-Blog-3-Column.jpg'),(391,2706,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:34:\"2015/05/images-5-Blog-3-Column.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-3-Column-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:\"images-5-Blog-3-Column-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"images-5-Blog-3-Column-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:1;}}'),(392,2707,'_wp_attached_file','2015/06/images-1-Blog-4-Column1.jpg'),(393,2707,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:370;s:6:\"height\";i:370;s:4:\"file\";s:35:\"2015/06/images-1-Blog-4-Column1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"images-1-Blog-4-Column1-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:\"images-1-Blog-4-Column1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"images-1-Blog-4-Column1-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:1;}}'),(394,2708,'_menu_item_type','custom'),(395,2708,'_menu_item_menu_item_parent','0'),(396,2708,'_menu_item_object_id','2708'),(397,2708,'_menu_item_object','custom'),(398,2708,'_menu_item_target',''),(399,2708,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(400,2708,'_menu_item_xfn',''),(401,2708,'_menu_item_url','http://wordpress.templaza.net/ethic'),(402,2709,'_menu_item_type','custom'),(403,2709,'_menu_item_menu_item_parent','0'),(404,2709,'_menu_item_object_id','2709'),(405,2709,'_menu_item_object','custom'),(406,2709,'_menu_item_target',''),(407,2709,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(408,2709,'_menu_item_xfn',''),(409,2709,'_menu_item_url','http://wordpress.templaza.net/ethic/forums/'),(410,2710,'_menu_item_type','custom'),(411,2710,'_menu_item_menu_item_parent','0'),(412,2710,'_menu_item_object_id','2710'),(413,2710,'_menu_item_object','custom'),(414,2710,'_menu_item_target',''),(415,2710,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(416,2710,'_menu_item_xfn',''),(417,2710,'_menu_item_url','http://wordpress.templaza.net/ethic/blog-left-sidebar/'),(418,2711,'_menu_item_type','custom'),(419,2711,'_menu_item_menu_item_parent','0'),(420,2711,'_menu_item_object_id','2711'),(421,2711,'_menu_item_object','custom'),(422,2711,'_menu_item_target',''),(423,2711,'_menu_item_classes','a:1:{i:0;s:14:\"full-container\";}'),(424,2711,'_menu_item_xfn',''),(425,2711,'_menu_item_url','http://wordpress.templaza.net/ethic'),(426,2712,'_menu_item_type','custom'),(427,2712,'_menu_item_menu_item_parent','0'),(428,2712,'_menu_item_object_id','2712'),(429,2712,'_menu_item_object','custom'),(430,2712,'_menu_item_target',''),(431,2712,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(432,2712,'_menu_item_xfn',''),(433,2712,'_menu_item_url','http://wordpress.templaza.net/ethic'),(434,2713,'_menu_item_type','custom'),(435,2713,'_menu_item_menu_item_parent','0'),(436,2713,'_menu_item_object_id','2713'),(437,2713,'_menu_item_object','custom'),(438,2713,'_menu_item_target',''),(439,2713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(440,2713,'_menu_item_xfn',''),(441,2713,'_menu_item_url','http://wordpress.templaza.net/ethic'),(442,2714,'_menu_item_type','custom'),(443,2714,'_menu_item_menu_item_parent','0'),(444,2714,'_menu_item_object_id','2714'),(445,2714,'_menu_item_object','custom'),(446,2714,'_menu_item_target',''),(447,2714,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(448,2714,'_menu_item_xfn',''),(449,2714,'_menu_item_url','http://wordpress.templaza.net/ethic'),(450,1634,'_edit_last','2'),(451,1634,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(452,1634,'slide_template','default'),(453,1634,'_bbp_last_active_time','2015-06-18 03:05:16'),(454,1634,'_bbp_forum_subforum_count','4'),(455,1634,'_bbp_reply_count','0'),(456,1634,'_bbp_total_reply_count','2'),(457,1634,'_bbp_topic_count','0'),(458,1634,'_bbp_total_topic_count','4'),(459,1634,'_bbp_topic_count_hidden','0'),(460,1634,'_bbp_forum_type','category'),(461,1634,'_bbp_last_topic_id','2285'),(462,1634,'_bbp_last_reply_id','1650'),(463,1634,'_bbp_last_active_id','2285'),(464,1644,'_edit_last','2'),(465,1644,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(466,1644,'slide_template','default'),(467,1644,'_bbp_last_active_time','2015-05-23 02:17:38'),(468,1644,'_bbp_forum_subforum_count','0'),(469,1644,'_bbp_reply_count','2'),(470,1644,'_bbp_total_reply_count','2'),(471,1644,'_bbp_topic_count','2'),(472,1644,'_bbp_total_topic_count','2'),(473,1644,'_bbp_topic_count_hidden','0'),(474,1644,'_bbp_last_reply_id','1650'),(475,1644,'_bbp_last_topic_id','1650'),(476,1644,'_bbp_last_active_id','1650'),(477,1644,'_bbp_group_ids','a:0:{}'),(478,1655,'_edit_last','2'),(479,1659,'_bbp_reply_count','0'),(480,1659,'_bbp_topic_count','1'),(481,1659,'_bbp_topic_count_hidden','0'),(482,1659,'_bbp_total_reply_count','0'),(483,1659,'_bbp_total_topic_count','1'),(484,1659,'_bbp_last_topic_id','1661'),(485,1659,'_bbp_last_reply_id','1661'),(486,1659,'_bbp_last_active_id','1661'),(487,1659,'_bbp_last_active_time','2015-05-23 02:52:02'),(488,1659,'_bbp_forum_subforum_count','0'),(489,1659,'_bbp_group_ids','a:1:{i:0;i:1;}'),(490,1662,'_edit_last','2'),(491,1662,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(492,1662,'slide_template','default'),(493,1662,'_bbp_last_active_time','2015-05-26 09:19:20'),(494,1662,'_bbp_forum_subforum_count','0'),(495,1662,'_bbp_reply_count','2'),(496,1662,'_bbp_total_reply_count','2'),(497,1662,'_bbp_topic_count','2'),(498,1662,'_bbp_total_topic_count','2'),(499,1662,'_bbp_topic_count_hidden','0'),(500,1662,'_bbp_last_topic_id','1672'),(501,1662,'_bbp_last_reply_id','1672'),(502,1662,'_bbp_last_active_id','1672'),(503,1667,'_edit_last','2'),(504,1667,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(505,1667,'slide_template','default'),(506,1667,'_bbp_last_active_time','2015-05-23 01:50:02'),(507,1667,'_bbp_forum_subforum_count','0'),(508,1667,'_bbp_reply_count','0'),(509,1667,'_bbp_total_reply_count','0'),(510,1667,'_bbp_topic_count','1'),(511,1667,'_bbp_total_topic_count','1'),(512,1667,'_bbp_topic_count_hidden','0'),(513,1667,'_bbp_last_topic_id','1640'),(514,1667,'_bbp_last_reply_id','1640'),(515,1667,'_bbp_last_active_id','1640'),(516,1677,'_bbp_reply_count','1'),(517,1677,'_bbp_topic_count','1'),(518,1677,'_bbp_topic_count_hidden','0'),(519,1677,'_bbp_total_reply_count','1'),(520,1677,'_bbp_total_topic_count','1'),(521,1677,'_bbp_last_topic_id','1683'),(522,1677,'_bbp_last_reply_id','1683'),(523,1677,'_bbp_last_active_id','1683'),(524,1677,'_bbp_last_active_time','2015-05-28 03:38:15'),(525,1677,'_bbp_forum_subforum_count','0'),(526,1677,'_bbp_group_ids','a:0:{}'),(527,1687,'_bbp_reply_count','0'),(528,1687,'_bbp_topic_count','0'),(529,1687,'_bbp_topic_count_hidden','0'),(530,1687,'_bbp_total_reply_count','0'),(531,1687,'_bbp_total_topic_count','0'),(532,1687,'_bbp_last_topic_id','0'),(533,1687,'_bbp_last_reply_id','0'),(534,1687,'_bbp_last_active_id','0'),(535,1687,'_bbp_last_active_time','0'),(536,1687,'_bbp_forum_subforum_count','0'),(537,1687,'_bbp_group_ids','a:1:{i:0;i:4;}'),(538,2277,'_edit_last','2'),(539,2277,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(540,2277,'slide_template','default'),(541,2277,'_bbp_last_active_time','2015-06-18 03:05:16'),(542,2277,'_bbp_forum_subforum_count','0'),(543,2277,'_bbp_reply_count','0'),(544,2277,'_bbp_total_reply_count','0'),(545,2277,'_bbp_topic_count','2'),(546,2277,'_bbp_total_topic_count','2'),(547,2277,'_bbp_topic_count_hidden','0'),(548,2277,'_bbp_last_topic_id','2285'),(549,2277,'_bbp_last_reply_id','2285'),(550,2277,'_bbp_last_active_id','2285'),(551,2277,'_bbp_group_ids','a:0:{}'),(552,2280,'_edit_last','2'),(553,2280,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(554,2280,'slide_template','default'),(555,2280,'_bbp_last_active_time','2015-06-18 02:48:40'),(556,2280,'_bbp_forum_subforum_count','0'),(557,2280,'_bbp_reply_count','0'),(558,2280,'_bbp_total_reply_count','0'),(559,2280,'_bbp_topic_count','0'),(560,2280,'_bbp_total_topic_count','0'),(561,2280,'_bbp_topic_count_hidden','0'),(562,2280,'_bbp_last_reply_id','0'),(563,2282,'_edit_last','2'),(564,2282,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(565,2282,'slide_template','default'),(566,2282,'_bbp_last_active_time','2015-06-18 02:50:23'),(567,2282,'_bbp_forum_subforum_count','0'),(568,2282,'_bbp_reply_count','0'),(569,2282,'_bbp_total_reply_count','0'),(570,2282,'_bbp_topic_count','0'),(571,2282,'_bbp_total_topic_count','0'),(572,2282,'_bbp_topic_count_hidden','0'),(573,2282,'_bbp_last_reply_id','0'),(574,2288,'_edit_last','2'),(575,2288,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(576,2288,'slide_template','default'),(577,2288,'_bbp_last_active_time','2015-06-19 03:04:51'),(578,2288,'_bbp_forum_subforum_count','0'),(579,2288,'_bbp_reply_count','0'),(580,2288,'_bbp_total_reply_count','0'),(581,2288,'_bbp_topic_count','0'),(582,2288,'_bbp_total_topic_count','0'),(583,2288,'_bbp_topic_count_hidden','0'),(608,2718,'_menu_item_type','custom'),(609,2718,'_menu_item_menu_item_parent','0'),(610,2718,'_menu_item_object_id','2718'),(611,2718,'_menu_item_object','custom'),(612,2718,'_menu_item_target',''),(613,2718,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(614,2718,'_menu_item_xfn',''),(615,2718,'_menu_item_url','#'),(616,2719,'_menu_item_type','custom'),(617,2719,'_menu_item_menu_item_parent','0'),(618,2719,'_menu_item_object_id','2719'),(619,2719,'_menu_item_object','custom'),(620,2719,'_menu_item_target',''),(621,2719,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(622,2719,'_menu_item_xfn',''),(623,2719,'_menu_item_url','http://wordpress.templaza.net/ethic/blog-left-sidebar/'),(624,2720,'_menu_item_type','custom'),(625,2720,'_menu_item_menu_item_parent','0'),(626,2720,'_menu_item_object_id','2720'),(627,2720,'_menu_item_object','custom'),(628,2720,'_menu_item_target',''),(629,2720,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(630,2720,'_menu_item_xfn',''),(631,2720,'_menu_item_url','#'),(632,2721,'_menu_item_type','custom'),(633,2721,'_menu_item_menu_item_parent','0'),(634,2721,'_menu_item_object_id','2721'),(635,2721,'_menu_item_object','custom'),(636,2721,'_menu_item_target',''),(637,2721,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(638,2721,'_menu_item_xfn',''),(639,2721,'_menu_item_url','#'),(640,2722,'_menu_item_type','custom'),(641,2722,'_menu_item_menu_item_parent','0'),(642,2722,'_menu_item_object_id','2722'),(643,2722,'_menu_item_object','custom'),(644,2722,'_menu_item_target',''),(645,2722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(646,2722,'_menu_item_xfn',''),(647,2722,'_menu_item_url','#'),(648,2723,'_menu_item_type','custom'),(649,2723,'_menu_item_menu_item_parent','0'),(650,2723,'_menu_item_object_id','2723'),(651,2723,'_menu_item_object','custom'),(652,2723,'_menu_item_target',''),(653,2723,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(654,2723,'_menu_item_xfn',''),(655,2723,'_menu_item_url','#'),(656,2724,'_menu_item_type','custom'),(657,2724,'_menu_item_menu_item_parent','0'),(658,2724,'_menu_item_object_id','2724'),(659,2724,'_menu_item_object','custom'),(660,2724,'_menu_item_target',''),(661,2724,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(662,2724,'_menu_item_xfn',''),(663,2724,'_menu_item_url','#'),(664,2725,'_menu_item_type','custom'),(665,2725,'_menu_item_menu_item_parent','0'),(666,2725,'_menu_item_object_id','2725'),(667,2725,'_menu_item_object','custom'),(668,2725,'_menu_item_target',''),(669,2725,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(670,2725,'_menu_item_xfn',''),(671,2725,'_menu_item_url','#'),(672,2726,'_menu_item_type','taxonomy'),(673,2726,'_menu_item_menu_item_parent','2713'),(674,2726,'_menu_item_object_id','19'),(675,2726,'_menu_item_object','tribe_events_cat'),(676,2726,'_menu_item_target',''),(677,2726,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(678,2726,'_menu_item_xfn',''),(679,2726,'_menu_item_url',''),(736,2734,'_menu_item_type','custom'),(737,2734,'_menu_item_menu_item_parent','0'),(738,2734,'_menu_item_object_id','2734'),(739,2734,'_menu_item_object','custom'),(740,2734,'_menu_item_target',''),(741,2734,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(742,2734,'_menu_item_xfn',''),(743,2734,'_menu_item_url','#'),(744,2735,'_menu_item_type','custom'),(745,2735,'_menu_item_menu_item_parent','0'),(746,2735,'_menu_item_object_id','2735'),(747,2735,'_menu_item_object','custom'),(748,2735,'_menu_item_target',''),(749,2735,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(750,2735,'_menu_item_xfn',''),(751,2735,'_menu_item_url','#'),(752,2736,'_menu_item_type','custom'),(753,2736,'_menu_item_menu_item_parent','0'),(754,2736,'_menu_item_object_id','2736'),(755,2736,'_menu_item_object','custom'),(756,2736,'_menu_item_target',''),(757,2736,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(758,2736,'_menu_item_xfn',''),(759,2736,'_menu_item_url','#'),(776,2739,'_menu_item_type','custom'),(777,2739,'_menu_item_menu_item_parent','0'),(778,2739,'_menu_item_object_id','2739'),(779,2739,'_menu_item_object','custom'),(780,2739,'_menu_item_target',''),(781,2739,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(782,2739,'_menu_item_xfn',''),(783,2739,'_menu_item_url','#'),(800,2742,'_menu_item_type','custom'),(801,2742,'_menu_item_menu_item_parent','0'),(802,2742,'_menu_item_object_id','2742'),(803,2742,'_menu_item_object','custom'),(804,2742,'_menu_item_target',''),(805,2742,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(806,2742,'_menu_item_xfn',''),(807,2742,'_menu_item_url','#'),(808,2743,'_menu_item_type','custom'),(809,2743,'_menu_item_menu_item_parent','0'),(810,2743,'_menu_item_object_id','2743'),(811,2743,'_menu_item_object','custom'),(812,2743,'_menu_item_target',''),(813,2743,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(814,2743,'_menu_item_xfn',''),(815,2743,'_menu_item_url','#'),(816,2744,'_menu_item_type','custom'),(817,2744,'_menu_item_menu_item_parent','0'),(818,2744,'_menu_item_object_id','2744'),(819,2744,'_menu_item_object','custom'),(820,2744,'_menu_item_target',''),(821,2744,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(822,2744,'_menu_item_xfn',''),(823,2744,'_menu_item_url','#'),(824,2745,'_menu_item_type','custom'),(825,2745,'_menu_item_menu_item_parent','0'),(826,2745,'_menu_item_object_id','2745'),(827,2745,'_menu_item_object','custom'),(828,2745,'_menu_item_target',''),(829,2745,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(830,2745,'_menu_item_xfn',''),(831,2745,'_menu_item_url','#'),(872,2751,'_menu_item_type','custom'),(873,2751,'_menu_item_menu_item_parent','0'),(874,2751,'_menu_item_object_id','2751'),(875,2751,'_menu_item_object','custom'),(876,2751,'_menu_item_target',''),(877,2751,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(878,2751,'_menu_item_xfn',''),(879,2751,'_menu_item_url','#'),(880,2752,'_menu_item_type','custom'),(881,2752,'_menu_item_menu_item_parent','0'),(882,2752,'_menu_item_object_id','2752'),(883,2752,'_menu_item_object','custom'),(884,2752,'_menu_item_target',''),(885,2752,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(886,2752,'_menu_item_xfn',''),(887,2752,'_menu_item_url','#'),(896,2754,'_menu_item_type','taxonomy'),(897,2754,'_menu_item_menu_item_parent','0'),(898,2754,'_menu_item_object_id','3'),(899,2754,'_menu_item_object','category'),(900,2754,'_menu_item_target',''),(901,2754,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(902,2754,'_menu_item_xfn',''),(903,2754,'_menu_item_url',''),(904,2755,'_menu_item_type','taxonomy'),(905,2755,'_menu_item_menu_item_parent','0'),(906,2755,'_menu_item_object_id','4'),(907,2755,'_menu_item_object','category'),(908,2755,'_menu_item_target',''),(909,2755,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(910,2755,'_menu_item_xfn',''),(911,2755,'_menu_item_url',''),(912,2756,'_menu_item_type','taxonomy'),(913,2756,'_menu_item_menu_item_parent','0'),(914,2756,'_menu_item_object_id','6'),(915,2756,'_menu_item_object','category'),(916,2756,'_menu_item_target',''),(917,2756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(918,2756,'_menu_item_xfn',''),(919,2756,'_menu_item_url',''),(920,2757,'_menu_item_type','taxonomy'),(921,2757,'_menu_item_menu_item_parent','0'),(922,2757,'_menu_item_object_id','10'),(923,2757,'_menu_item_object','category'),(924,2757,'_menu_item_target',''),(925,2757,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(926,2757,'_menu_item_xfn',''),(927,2757,'_menu_item_url',''),(928,2758,'_menu_item_type','custom'),(929,2758,'_menu_item_menu_item_parent','0'),(930,2758,'_menu_item_object_id','2758'),(931,2758,'_menu_item_object','custom'),(932,2758,'_menu_item_target',''),(933,2758,'_menu_item_classes','a:2:{i:0;s:7:\"bp-menu\";i:1;s:13:\"bp-forums-nav\";}'),(934,2758,'_menu_item_xfn',''),(935,2758,'_menu_item_url','http://wordpress.templaza.net/ethic/members/admin/forums/'),(936,2759,'_menu_item_type','custom'),(937,2759,'_menu_item_menu_item_parent','0'),(938,2759,'_menu_item_object_id','2759'),(939,2759,'_menu_item_object','custom'),(940,2759,'_menu_item_target',''),(941,2759,'_menu_item_classes','a:2:{i:0;s:7:\"bp-menu\";i:1;s:13:\"bp-groups-nav\";}'),(942,2759,'_menu_item_xfn',''),(943,2759,'_menu_item_url','http://wordpress.templaza.net/ethic/members/admin/groups/'),(944,2760,'_menu_item_type','custom'),(945,2760,'_menu_item_menu_item_parent','2712'),(946,2760,'_menu_item_object_id','2760'),(947,2760,'_menu_item_object','custom'),(948,2760,'_menu_item_target',''),(949,2760,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(950,2760,'_menu_item_xfn',''),(951,2760,'_menu_item_url','http://wordpress.templaza.net/ethic/courses/course-1-2/'),(952,2761,'_menu_item_type','custom'),(953,2761,'_menu_item_menu_item_parent','2713'),(954,2761,'_menu_item_object_id','2761'),(955,2761,'_menu_item_object','custom'),(956,2761,'_menu_item_target',''),(957,2761,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(958,2761,'_menu_item_xfn',''),(959,2761,'_menu_item_url','http://wordpress.templaza.net/ethic/event/pesticide-applicators-training-2/'),(976,2764,'_menu_item_type','custom'),(977,2764,'_menu_item_menu_item_parent','2710'),(978,2764,'_menu_item_object_id','2764'),(979,2764,'_menu_item_object','custom'),(980,2764,'_menu_item_target',''),(981,2764,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(982,2764,'_menu_item_xfn',''),(983,2764,'_menu_item_url','http://wordpress.templaza.net/ethic/centro-de-inovacoes-inovacidades-3/'),(984,2765,'_menu_item_type','custom'),(985,2765,'_menu_item_menu_item_parent','2719'),(986,2765,'_menu_item_object_id','2765'),(987,2765,'_menu_item_object','custom'),(988,2765,'_menu_item_target',''),(989,2765,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(990,2765,'_menu_item_xfn',''),(991,2765,'_menu_item_url','http://wordpress.templaza.net/ethic/responsive-blog-centro-de-inovacoes-inovacidades-25/'),(1046,536,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1047,536,'_edit_last','1'),(1048,536,'_wp_page_template','template-homepage.php'),(1049,536,'_wpb_vc_js_status','true'),(1050,536,'slide_template','default'),(1051,536,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1052,536,'plazart_desktop_column','1'),(1053,536,'plazart_tabletportrait_column','1'),(1054,536,'plazart_mobilelandscape_column','1'),(1055,536,'plazart_mobileportrait_column','1'),(1056,536,'plazart_portfolio_limit','10'),(1057,536,'plazart_porfolio_orderby','date'),(1058,536,'plazart_porfolio_order','desc'),(1059,536,'plazart_paging','pagenavi'),(1060,536,'plazart_porfolio_filter_status','show'),(1061,536,'plazart_porfolio_filter','portfolio-tags'),(1062,536,'plazart_header_type','2'),(1063,536,'_wpb_shortcodes_custom_css','.vc_custom_1441844234877{background-color: #fcfcfc !important;}.vc_custom_1441836880779{margin: 50px !important;}.vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}.vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}.vc_custom_1441845497633{padding-bottom: 50px !important;}.vc_custom_1442282104630{margin-bottom: 90px !important;}.vc_custom_1442281601138{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}.vc_custom_1442283230188{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}.vc_custom_1442283170672{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}.vc_custom_1442283248087{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}'),(1064,536,'eg_sources_html5_mp4',''),(1065,536,'eg_sources_html5_ogv',''),(1066,536,'eg_sources_html5_webm',''),(1067,536,'eg_sources_youtube',''),(1068,536,'eg_sources_vimeo',''),(1069,536,'eg_sources_wistia',''),(1070,536,'eg_sources_image',''),(1071,536,'eg_sources_iframe',''),(1072,536,'eg_sources_soundcloud',''),(1073,536,'eg_vimeo_ratio','0'),(1074,536,'eg_youtube_ratio','0'),(1075,536,'eg_wistia_ratio','0'),(1076,536,'eg_html5_ratio','0'),(1077,536,'eg_soundcloud_ratio','0'),(1078,536,'eg_settings_custom_meta_skin',''),(1079,536,'eg_settings_custom_meta_element',''),(1080,536,'eg_settings_custom_meta_setting',''),(1081,536,'eg_settings_custom_meta_style',''),(1082,536,'eg_sources_revslider',''),(1083,536,'plazart_blog_column','1'),(1084,536,'plazart_blog_limit','10'),(1085,536,'plazart_tzpostSidebar','0'),(1086,536,'plazart_tzpostDate','show'),(1087,536,'plazart_tzpostAuthor','show'),(1088,536,'plazart_tzpostComments','show'),(1089,536,'plazart_tzpostthumbnail','show'),(1090,536,'plazart_tzpostexcerpt','show'),(1091,536,'plazart_tzpostmoredetail','show'),(1092,536,'plazart_tzpostshare','show'),(1093,536,'plazart_event_grid_limit','6'),(1094,536,'plazart_portfolio_timeline_limit','6'),(1095,536,'plazart_porfolio_timeline_orderby','date'),(1096,536,'plazart_portfolio_timeline_order','desc'),(1097,536,'plazart_course_grid_limit','6'),(1149,801,'_edit_last','2'),(1150,801,'_thumbnail_id','802'),(1151,801,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1152,801,'slide_template','default'),(1153,801,'eg_sources_html5_mp4',''),(1154,801,'eg_sources_html5_ogv',''),(1155,801,'eg_sources_html5_webm',''),(1156,801,'eg_sources_youtube',''),(1157,801,'eg_sources_vimeo',''),(1158,801,'eg_sources_wistia',''),(1159,801,'eg_sources_image',''),(1160,801,'eg_sources_iframe',''),(1161,801,'eg_sources_soundcloud',''),(1162,801,'eg_vimeo_ratio','0'),(1163,801,'eg_youtube_ratio','0'),(1164,801,'eg_wistia_ratio','0'),(1165,801,'eg_html5_ratio','0'),(1166,801,'eg_soundcloud_ratio','0'),(1167,801,'eg_settings_custom_meta_skin',''),(1168,801,'eg_settings_custom_meta_element',''),(1169,801,'eg_settings_custom_meta_setting',''),(1170,801,'eg_settings_custom_meta_style',''),(1171,801,'eg_sources_revslider',''),(1172,803,'_edit_last','2'),(1173,803,'_thumbnail_id','808'),(1174,803,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1175,803,'slide_template','default'),(1176,803,'eg_sources_html5_mp4',''),(1177,803,'eg_sources_html5_ogv',''),(1178,803,'eg_sources_html5_webm',''),(1179,803,'eg_sources_youtube',''),(1180,803,'eg_sources_vimeo',''),(1181,803,'eg_sources_wistia',''),(1182,803,'eg_sources_image',''),(1183,803,'eg_sources_iframe',''),(1184,803,'eg_sources_soundcloud',''),(1185,803,'eg_vimeo_ratio','0'),(1186,803,'eg_youtube_ratio','0'),(1187,803,'eg_wistia_ratio','0'),(1188,803,'eg_html5_ratio','0'),(1189,803,'eg_soundcloud_ratio','0'),(1190,803,'eg_settings_custom_meta_skin',''),(1191,803,'eg_settings_custom_meta_element',''),(1192,803,'eg_settings_custom_meta_setting',''),(1193,803,'eg_settings_custom_meta_style',''),(1194,803,'eg_sources_revslider',''),(1195,804,'_edit_last','2'),(1196,804,'_thumbnail_id','806'),(1197,804,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1198,804,'slide_template','default'),(1199,804,'eg_sources_html5_mp4',''),(1200,804,'eg_sources_html5_ogv',''),(1201,804,'eg_sources_html5_webm',''),(1202,804,'eg_sources_youtube',''),(1203,804,'eg_sources_vimeo',''),(1204,804,'eg_sources_wistia',''),(1205,804,'eg_sources_image',''),(1206,804,'eg_sources_iframe',''),(1207,804,'eg_sources_soundcloud',''),(1208,804,'eg_vimeo_ratio','0'),(1209,804,'eg_youtube_ratio','0'),(1210,804,'eg_wistia_ratio','0'),(1211,804,'eg_html5_ratio','0'),(1212,804,'eg_soundcloud_ratio','0'),(1213,804,'eg_settings_custom_meta_skin',''),(1214,804,'eg_settings_custom_meta_element',''),(1215,804,'eg_settings_custom_meta_setting',''),(1216,804,'eg_settings_custom_meta_style',''),(1217,804,'eg_sources_revslider',''),(1218,805,'_edit_last','2'),(1219,805,'_thumbnail_id','807'),(1220,805,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1221,805,'slide_template','default'),(1222,805,'eg_sources_html5_mp4',''),(1223,805,'eg_sources_html5_ogv',''),(1224,805,'eg_sources_html5_webm',''),(1225,805,'eg_sources_youtube',''),(1226,805,'eg_sources_vimeo',''),(1227,805,'eg_sources_wistia',''),(1228,805,'eg_sources_image',''),(1229,805,'eg_sources_iframe',''),(1230,805,'eg_sources_soundcloud',''),(1231,805,'eg_vimeo_ratio','0'),(1232,805,'eg_youtube_ratio','0'),(1233,805,'eg_wistia_ratio','0'),(1234,805,'eg_html5_ratio','0'),(1235,805,'eg_soundcloud_ratio','0'),(1236,805,'eg_settings_custom_meta_skin',''),(1237,805,'eg_settings_custom_meta_element',''),(1238,805,'eg_settings_custom_meta_setting',''),(1239,805,'eg_settings_custom_meta_style',''),(1240,805,'eg_sources_revslider',''),(1241,817,'_edit_last','2'),(1242,817,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1243,817,'slide_template','default'),(1244,817,'eg_sources_html5_mp4',''),(1245,817,'eg_sources_html5_ogv',''),(1246,817,'eg_sources_html5_webm',''),(1247,817,'eg_sources_youtube',''),(1248,817,'eg_sources_vimeo',''),(1249,817,'eg_sources_wistia',''),(1250,817,'eg_sources_image',''),(1251,817,'eg_sources_iframe',''),(1252,817,'eg_sources_soundcloud',''),(1253,817,'eg_vimeo_ratio','0'),(1254,817,'eg_youtube_ratio','0'),(1255,817,'eg_wistia_ratio','0'),(1256,817,'eg_html5_ratio','0'),(1257,817,'eg_soundcloud_ratio','0'),(1258,817,'eg_settings_custom_meta_skin',''),(1259,817,'eg_settings_custom_meta_element',''),(1260,817,'eg_settings_custom_meta_setting',''),(1261,817,'eg_settings_custom_meta_style',''),(1262,817,'eg_sources_revslider',''),(1263,817,'_thumbnail_id','808'),(1264,818,'_edit_last','2'),(1265,818,'_thumbnail_id','802'),(1266,818,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1267,818,'slide_template','default'),(1268,818,'eg_sources_html5_mp4',''),(1269,818,'eg_sources_html5_ogv',''),(1270,818,'eg_sources_html5_webm',''),(1271,818,'eg_sources_youtube',''),(1272,818,'eg_sources_vimeo',''),(1273,818,'eg_sources_wistia',''),(1274,818,'eg_sources_image',''),(1275,818,'eg_sources_iframe',''),(1276,818,'eg_sources_soundcloud',''),(1277,818,'eg_vimeo_ratio','0'),(1278,818,'eg_youtube_ratio','0'),(1279,818,'eg_wistia_ratio','0'),(1280,818,'eg_html5_ratio','0'),(1281,818,'eg_soundcloud_ratio','0'),(1282,818,'eg_settings_custom_meta_skin',''),(1283,818,'eg_settings_custom_meta_element',''),(1284,818,'eg_settings_custom_meta_setting',''),(1285,818,'eg_settings_custom_meta_style',''),(1286,818,'eg_sources_revslider',''),(1569,1441,'_tml_action','login'),(1570,1441,'_edit_last','2'),(1571,1441,'_wp_page_template','template_login_form.php'),(1572,1441,'_wpb_vc_js_status','false'),(1573,1441,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1574,1441,'slide_template','default'),(1575,1441,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1576,1441,'plazart_desktop_column','1'),(1577,1441,'plazart_tabletportrait_column','1'),(1578,1441,'plazart_mobilelandscape_column','1'),(1579,1441,'plazart_mobileportrait_column','1'),(1580,1441,'plazart_portfolio_limit','10'),(1581,1441,'plazart_porfolio_orderby','date'),(1582,1441,'plazart_porfolio_order','desc'),(1583,1441,'plazart_paging','pagenavi'),(1584,1441,'plazart_porfolio_filter_status','show'),(1585,1441,'plazart_porfolio_filter','portfolio-tags'),(1586,1441,'plazart_blog_column','1'),(1587,1441,'plazart_blog_limit','10'),(1588,1441,'plazart_tzpostSidebar','0'),(1589,1441,'plazart_tzpostDate','show'),(1590,1441,'plazart_tzpostAuthor','show'),(1591,1441,'plazart_tzpostComments','show'),(1592,1441,'plazart_tzpostthumbnail','show'),(1593,1441,'plazart_tzpostexcerpt','show'),(1594,1441,'plazart_tzpostmoredetail','show'),(1595,1441,'plazart_tzpostshare','show'),(1596,1441,'plazart_event_grid_limit','6'),(1597,1441,'plazart_portfolio_timeline_limit','6'),(1598,1441,'plazart_porfolio_timeline_orderby','date'),(1599,1441,'plazart_portfolio_timeline_order','desc'),(1600,1442,'_tml_action','logout'),(1601,1442,'_edit_last','2'),(1602,1442,'_wp_page_template','template-special.php'),(1603,1442,'_wpb_vc_js_status','false'),(1604,1442,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1605,1442,'slide_template','default'),(1606,1442,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1607,1442,'plazart_desktop_column','1'),(1608,1442,'plazart_tabletportrait_column','1'),(1609,1442,'plazart_mobilelandscape_column','1'),(1610,1442,'plazart_mobileportrait_column','1'),(1611,1442,'plazart_portfolio_limit','10'),(1612,1442,'plazart_porfolio_orderby','date'),(1613,1442,'plazart_porfolio_order','desc'),(1614,1442,'plazart_paging','pagenavi'),(1615,1442,'plazart_porfolio_filter_status','show'),(1616,1442,'plazart_porfolio_filter','portfolio-tags'),(1617,1443,'_tml_action','register'),(1618,1443,'_edit_last','2'),(1619,1443,'_wp_page_template','template-special.php'),(1620,1443,'_wpb_vc_js_status','false'),(1621,1443,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1622,1443,'slide_template','default'),(1623,1443,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1624,1443,'plazart_desktop_column','1'),(1625,1443,'plazart_tabletportrait_column','1'),(1626,1443,'plazart_mobilelandscape_column','1'),(1627,1443,'plazart_mobileportrait_column','1'),(1628,1443,'plazart_portfolio_limit','10'),(1629,1443,'plazart_porfolio_orderby','date'),(1630,1443,'plazart_porfolio_order','desc'),(1631,1443,'plazart_paging','pagenavi'),(1632,1443,'plazart_porfolio_filter_status','show'),(1633,1443,'plazart_porfolio_filter','portfolio-tags'),(1634,1444,'_tml_action','lostpassword'),(1635,1444,'_edit_last','2'),(1636,1444,'_wp_page_template','template-special.php'),(1637,1444,'_wpb_vc_js_status','false'),(1638,1444,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1639,1444,'slide_template','default'),(1640,1444,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1641,1444,'plazart_desktop_column','1'),(1642,1444,'plazart_tabletportrait_column','1'),(1643,1444,'plazart_mobilelandscape_column','1'),(1644,1444,'plazart_mobileportrait_column','1'),(1645,1444,'plazart_portfolio_limit','10'),(1646,1444,'plazart_porfolio_orderby','date'),(1647,1444,'plazart_porfolio_order','desc'),(1648,1444,'plazart_paging','pagenavi'),(1649,1444,'plazart_porfolio_filter_status','show'),(1650,1444,'plazart_porfolio_filter','portfolio-tags'),(1651,1445,'_tml_action','resetpass'),(1652,1445,'_edit_last','2'),(1653,1445,'_wp_page_template','template-special.php'),(1654,1445,'_wpb_vc_js_status','false'),(1655,1445,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1656,1445,'slide_template','default'),(1657,1445,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1658,1445,'plazart_desktop_column','1'),(1659,1445,'plazart_tabletportrait_column','1'),(1660,1445,'plazart_mobilelandscape_column','1'),(1661,1445,'plazart_mobileportrait_column','1'),(1662,1445,'plazart_portfolio_limit','10'),(1663,1445,'plazart_porfolio_orderby','date'),(1664,1445,'plazart_porfolio_order','desc'),(1665,1445,'plazart_paging','pagenavi'),(1666,1445,'plazart_porfolio_filter_status','show'),(1667,1445,'plazart_porfolio_filter','portfolio-tags'),(1668,1454,'_tml_action','profile'),(1669,1454,'_edit_last','2'),(1670,1454,'_wp_page_template','template-special.php'),(1671,1454,'_wpb_vc_js_status','false'),(1672,1454,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1673,1454,'slide_template','default'),(1674,1454,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(1675,1454,'plazart_desktop_column','1'),(1676,1454,'plazart_tabletportrait_column','1'),(1677,1454,'plazart_mobilelandscape_column','1'),(1678,1454,'plazart_mobileportrait_column','1'),(1679,1454,'plazart_portfolio_limit','10'),(1680,1454,'plazart_porfolio_orderby','date'),(1681,1454,'plazart_porfolio_order','desc'),(1682,1454,'plazart_paging','pagenavi'),(1683,1454,'plazart_porfolio_filter_status','show'),(1684,1454,'plazart_porfolio_filter','portfolio-tags'),(1914,1689,'_edit_last','1'),(1915,1689,'_wp_page_template','template-contact.php'),(1916,1689,'_wpb_vc_js_status','true'),(1917,1689,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1918,1689,'slide_template','default'),(1919,1689,'plazart_desktop_column','1'),(1920,1689,'plazart_tabletportrait_column','1'),(1921,1689,'plazart_mobilelandscape_column','1'),(1922,1689,'plazart_mobileportrait_column','1'),(1923,1689,'plazart_porfolio_orderby','date'),(1924,1689,'plazart_porfolio_order','desc'),(1925,1689,'plazart_paging','pagenavi'),(1926,1689,'plazart_porfolio_filter_status','show'),(1927,1689,'plazart_porfolio_filter','portfolio-tags'),(1928,1689,'plazart_portfolio_limit','6'),(1929,1689,'plazart_blog_column','1'),(1930,1689,'plazart_blog_limit','10'),(1931,1689,'plazart_tzpostSidebar','0'),(1932,1689,'plazart_tzpostDate','show'),(1933,1689,'plazart_tzpostAuthor','show'),(1934,1689,'plazart_tzpostComments','show'),(1935,1689,'plazart_tzpostthumbnail','show'),(1936,1689,'plazart_tzpostexcerpt','show'),(1937,1689,'plazart_tzpostmoredetail','show'),(1938,1689,'plazart_tzpostshare','show'),(1939,1689,'plazart_portfolio_timeline_limit','6'),(1940,1689,'plazart_porfolio_timeline_orderby','date'),(1941,1689,'plazart_portfolio_timeline_order','desc'),(1942,1689,'plazart_event_grid_limit','6'),(1943,1689,'plazart_course_grid_limit','6'),(1973,1752,'_edit_last','1'),(1974,1752,'_wp_page_template','template-contact.php'),(1975,1752,'_wpb_vc_js_status','true'),(1976,1752,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(1977,1752,'slide_template','default'),(1978,1752,'plazart_desktop_column','1'),(1979,1752,'plazart_tabletportrait_column','1'),(1980,1752,'plazart_mobilelandscape_column','1'),(1981,1752,'plazart_mobileportrait_column','1'),(1982,1752,'plazart_porfolio_orderby','date'),(1983,1752,'plazart_porfolio_order','desc'),(1984,1752,'plazart_paging','pagenavi'),(1985,1752,'plazart_porfolio_filter_status','show'),(1986,1752,'plazart_porfolio_filter','portfolio-tags'),(1987,1752,'plazart_portfolio_limit','6'),(1988,1752,'plazart_blog_column','1'),(1989,1752,'plazart_blog_limit','10'),(1990,1752,'plazart_tzpostSidebar','0'),(1991,1752,'plazart_tzpostDate','show'),(1992,1752,'plazart_tzpostAuthor','show'),(1993,1752,'plazart_tzpostComments','show'),(1994,1752,'plazart_tzpostthumbnail','show'),(1995,1752,'plazart_tzpostexcerpt','show'),(1996,1752,'plazart_tzpostmoredetail','show'),(1997,1752,'plazart_tzpostshare','show'),(1998,1752,'_wpb_shortcodes_custom_css','.vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}.vc_custom_1441402830563{padding: 0px !important;background-color: #f6f6f6 !important;}.vc_custom_1441402914772{margin-top: -50px !important;margin-bottom: 50px !important;}'),(1999,1752,'plazart_portfolio_timeline_limit','6'),(2000,1752,'plazart_porfolio_timeline_orderby','date'),(2001,1752,'plazart_portfolio_timeline_order','desc'),(2002,1752,'plazart_event_grid_limit','6'),(2003,1752,'plazart_course_grid_limit','6'),(2056,1791,'_edit_last','2'),(2057,1791,'_wp_page_template','template-homepage.php'),(2058,1791,'_wpb_vc_js_status','true'),(2059,1791,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(2060,1791,'slide_template','default'),(2061,1791,'plazart_desktop_column','1'),(2062,1791,'plazart_tabletportrait_column','1'),(2063,1791,'plazart_mobilelandscape_column','1'),(2064,1791,'plazart_mobileportrait_column','1'),(2065,1791,'plazart_porfolio_orderby','date'),(2066,1791,'plazart_porfolio_order','desc'),(2067,1791,'plazart_paging','pagenavi'),(2068,1791,'plazart_porfolio_filter_status','show'),(2069,1791,'plazart_porfolio_filter','portfolio-tags'),(2070,1791,'plazart_portfolio_limit','6'),(2071,1791,'plazart_blog_column','1'),(2072,1791,'plazart_blog_limit','10'),(2073,1791,'plazart_tzpostSidebar','0'),(2074,1791,'plazart_tzpostDate','show'),(2075,1791,'plazart_tzpostAuthor','show'),(2076,1791,'plazart_tzpostComments','show'),(2077,1791,'plazart_tzpostthumbnail','show'),(2078,1791,'plazart_tzpostexcerpt','show'),(2079,1791,'plazart_tzpostmoredetail','show'),(2080,1791,'plazart_tzpostshare','show'),(2081,1791,'_wpb_shortcodes_custom_css','.vc_custom_1433229980541{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f7f7f7 !important;}.vc_custom_1433232382246{padding-top: 70px !important;padding-bottom: 70px !important;background-color: #ffffff !important;}.vc_custom_1433234205025{padding-bottom: 57px !important;background-color: #f6f6f6 !important;}.vc_custom_1437189178433{padding-bottom: 75px !important;}.vc_custom_1436751223164{padding-right: 0px !important;padding-left: 0px !important;}.vc_custom_1436751565202{background-color: #ffffff !important;}.vc_custom_1433229964587{margin-top: 15px !important;}.vc_custom_1433230090410{background-color: #ffffff !important;}.vc_custom_1433231813284{background-color: #e8be6c !important;}.vc_custom_1433231830045{background-color: #5da7f0 !important;}.vc_custom_1433231840131{background-color: #829c53 !important;}.vc_custom_1433231866415{background-color: #334878 !important;}.vc_custom_1436862939344{background-color: #334878 !important;}.vc_custom_1436862955291{background-color: #334878 !important;}.vc_custom_1436862967436{background-color: #334878 !important;}.vc_custom_1436862978026{background-color: #334878 !important;}.vc_custom_1436862989035{background-color: #334878 !important;}.vc_custom_1436863001902{background-color: #334878 !important;}.vc_custom_1436863016627{background-color: #334878 !important;}.vc_custom_1436863026903{background-color: #334878 !important;}.vc_custom_1436863038530{background-color: #334878 !important;}.vc_custom_1436863048932{background-color: #334878 !important;}.vc_custom_1437189352335{padding-bottom: 30px !important;}'),(2082,1791,'plazart_portfolio_timeline_limit','6'),(2083,1791,'plazart_porfolio_timeline_orderby','date'),(2084,1791,'plazart_portfolio_timeline_order','desc'),(2085,1791,'plazart_event_grid_limit','6'),(2086,1791,'plazart_course_grid_limit','6'),(2910,1642,'_edit_last','2'),(2911,1642,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(2912,1642,'_bbp_activity_id','57'),(2913,1642,'slide_template','default'),(2914,1642,'_bbp_forum_id','1662'),(2915,1642,'_bbp_topic_id','1'),(2916,1642,'_bbp_author_ip','::1'),(2917,1656,'_bbp_forum_id','1644'),(2918,1656,'_bbp_topic_id','1650'),(2919,1656,'_bbp_author_ip','::1'),(2920,1656,'_bbp_activity_id','11'),(2921,1657,'_bbp_forum_id','1644'),(2922,1657,'_bbp_topic_id','1650'),(2923,1657,'_bbp_author_ip','::1'),(2924,1657,'_bbp_activity_id','12'),(2925,1676,'_bbp_forum_id','1662'),(2926,1676,'_bbp_topic_id','1672'),(2927,1676,'_bbp_author_ip','::1'),(2928,1676,'_bbp_activity_id','28'),(2929,1680,'_bbp_forum_id','1662'),(2930,1680,'_bbp_topic_id','1672'),(2931,1680,'_bbp_author_ip','::1'),(2932,1680,'_bbp_activity_id','29'),(2933,1685,'_bbp_forum_id','1677'),(2934,1685,'_bbp_topic_id','1683'),(2935,1685,'_bbp_author_ip','::1'),(2936,1685,'_bbp_activity_id','48'),(3019,1636,'_edit_last','2'),(3020,1636,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3021,1636,'_bbp_activity_id','3'),(3022,1636,'slide_template','default'),(3023,1636,'_bbp_forum_id','1636'),(3024,1636,'_bbp_topic_id','1636'),(3025,1636,'_bbp_author_ip','::1'),(3026,1636,'_bbp_last_active_time','2015-05-23 01:47:37'),(3027,1636,'_bbp_reply_count','0'),(3028,1636,'_bbp_reply_count_hidden','0'),(3029,1636,'_bbp_last_active_id','1636'),(3030,1636,'_bbp_voice_count','1'),(3031,1638,'_edit_last','2'),(3032,1638,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3033,1638,'_bbp_activity_id','4'),(3034,1638,'slide_template','default'),(3035,1638,'_bbp_forum_id','1638'),(3036,1638,'_bbp_topic_id','1638'),(3037,1638,'_bbp_author_ip','::1'),(3038,1638,'_bbp_last_active_time','2015-05-23 01:48:19'),(3039,1638,'_bbp_reply_count','0'),(3040,1638,'_bbp_reply_count_hidden','0'),(3041,1638,'_bbp_last_active_id','1638'),(3042,1638,'_bbp_voice_count','1'),(3043,1640,'_edit_last','2'),(3044,1640,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3045,1640,'_bbp_activity_id','86'),(3046,1640,'slide_template','default'),(3047,1640,'_bbp_forum_id','1667'),(3048,1640,'_bbp_topic_id','1640'),(3049,1640,'_bbp_author_ip','::1'),(3050,1640,'_bbp_last_active_time','2015-05-23 01:50:04'),(3051,1640,'_bbp_reply_count','0'),(3052,1640,'_bbp_reply_count_hidden','0'),(3053,1640,'_bbp_last_active_id','1640'),(3054,1640,'_bbp_voice_count','1'),(3055,1640,'_bbp_revision_log','a:1:{i:2286;a:2:{s:6:\"author\";i:1;s:6:\"reason\";s:0:\"\";}}'),(3056,1646,'_edit_last','2'),(3057,1646,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3058,1646,'_bbp_activity_id','8'),(3059,1646,'slide_template','default'),(3060,1646,'_bbp_forum_id','1644'),(3061,1646,'_bbp_topic_id','1646'),(3062,1646,'_bbp_author_ip','::1'),(3063,1646,'_bbp_last_active_time','2015-05-23 01:56:14'),(3064,1646,'_bbp_reply_count','0'),(3065,1646,'_bbp_reply_count_hidden','0'),(3066,1646,'_bbp_last_active_id','1646'),(3067,1646,'_bbp_voice_count','1'),(3068,2052,'_edit_last','2'),(3069,2052,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3070,2052,'slide_template','default'),(3071,2052,'_tmm_head',''),(3072,2052,'_tmm_columns','3'),(3073,2052,'_tmm_picture_shape','-'),(3074,2052,'_tmm_picture_border','-'),(3075,2052,'_tmm_picture_position','-'),(3076,2052,'_tmm_picture_filter','-'),(3077,304,'_EventOrigin','events-calendar'),(3078,304,'_EventOrigin','events-calendar'),(3079,304,'_EventOrigin','events-calendar'),(3080,304,'_edit_last','2'),(3081,304,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3082,304,'slide_template','default'),(3083,304,'_EventShowMapLink','1'),(3084,304,'_EventShowMap','1'),(3085,304,'_EventStartDate','2015-04-15 08:00:00'),(3086,304,'_EventEndDate','2015-12-16 17:00:00'),(3087,304,'_EventDuration','21200400'),(3088,304,'_EventVenueID','2055'),(3089,304,'_EventCurrencySymbol','$'),(3090,304,'_EventCurrencyPosition','prefix'),(3091,304,'_EventURL',''),(3092,304,'_EventOrganizerID','323'),(3093,304,'_thumbnail_id','465'),(3094,304,'eg_sources_html5_mp4',''),(3095,304,'eg_sources_html5_ogv',''),(3096,304,'eg_sources_html5_webm',''),(3097,304,'eg_sources_youtube',''),(3098,304,'eg_sources_vimeo',''),(3099,304,'eg_sources_wistia',''),(3100,304,'eg_sources_image',''),(3101,304,'eg_sources_iframe',''),(3102,304,'eg_sources_soundcloud',''),(3103,304,'eg_vimeo_ratio','0'),(3104,304,'eg_youtube_ratio','0'),(3105,304,'eg_wistia_ratio','0'),(3106,304,'eg_html5_ratio','0'),(3107,304,'eg_soundcloud_ratio','0'),(3108,304,'eg_settings_custom_meta_skin',''),(3109,304,'eg_settings_custom_meta_element',''),(3110,304,'eg_settings_custom_meta_setting',''),(3111,304,'eg_settings_custom_meta_style',''),(3112,304,'eg_sources_revslider',''),(3113,304,'_EventCost','50'),(3114,305,'_EventOrigin','events-calendar'),(3115,305,'_EventOrigin','events-calendar'),(3116,305,'_EventOrigin','events-calendar'),(3117,305,'_edit_last','2'),(3118,305,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3119,305,'slide_template','default'),(3120,305,'_EventShowMapLink','1'),(3121,305,'_EventShowMap','1'),(3122,305,'_EventStartDate','2015-04-10 04:00:00'),(3123,305,'_EventEndDate','2018-07-19 17:00:00'),(3124,305,'_EventDuration','103381200'),(3125,305,'_EventVenueID','2055'),(3126,305,'_EventCurrencySymbol','$'),(3127,305,'_EventCurrencyPosition','prefix'),(3128,305,'_EventURL',''),(3129,305,'_EventOrganizerID','323'),(3130,305,'eg_sources_html5_mp4',''),(3131,305,'eg_sources_html5_ogv',''),(3132,305,'eg_sources_html5_webm',''),(3133,305,'eg_sources_youtube',''),(3134,305,'eg_sources_vimeo',''),(3135,305,'eg_sources_wistia',''),(3136,305,'eg_sources_image',''),(3137,305,'eg_sources_iframe',''),(3138,305,'eg_sources_soundcloud',''),(3139,305,'eg_vimeo_ratio','0'),(3140,305,'eg_youtube_ratio','0'),(3141,305,'eg_wistia_ratio','0'),(3142,305,'eg_html5_ratio','0'),(3143,305,'eg_soundcloud_ratio','0'),(3144,305,'eg_settings_custom_meta_skin',''),(3145,305,'eg_settings_custom_meta_element',''),(3146,305,'eg_settings_custom_meta_setting',''),(3147,305,'eg_settings_custom_meta_style',''),(3148,305,'eg_sources_revslider',''),(3149,305,'_thumbnail_id','2699'),(3150,305,'_EventCost','35'),(3151,308,'_EventOrigin','events-calendar'),(3152,308,'_EventOrigin','events-calendar'),(3153,308,'_EventOrigin','events-calendar'),(3154,308,'_edit_last','2'),(3155,308,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3156,308,'slide_template','default'),(3157,308,'_EventShowMapLink','1'),(3158,308,'_EventShowMap','1'),(3159,308,'_EventStartDate','2015-04-10 02:30:00'),(3160,308,'_EventEndDate','2018-06-28 21:00:00'),(3161,308,'_EventDuration','101586600'),(3162,308,'_EventVenueID','2055'),(3163,308,'_EventCurrencySymbol','$'),(3164,308,'_EventCurrencyPosition','prefix'),(3165,308,'_EventURL',''),(3166,308,'_EventOrganizerID','323'),(3167,308,'eg_sources_html5_mp4',''),(3168,308,'eg_sources_html5_ogv',''),(3169,308,'eg_sources_html5_webm',''),(3170,308,'eg_sources_youtube',''),(3171,308,'eg_sources_vimeo',''),(3172,308,'eg_sources_wistia',''),(3173,308,'eg_sources_image',''),(3174,308,'eg_sources_iframe',''),(3175,308,'eg_sources_soundcloud',''),(3176,308,'eg_vimeo_ratio','0'),(3177,308,'eg_youtube_ratio','0'),(3178,308,'eg_wistia_ratio','0'),(3179,308,'eg_html5_ratio','0'),(3180,308,'eg_soundcloud_ratio','0'),(3181,308,'eg_settings_custom_meta_skin',''),(3182,308,'eg_settings_custom_meta_element',''),(3183,308,'eg_settings_custom_meta_setting',''),(3184,308,'eg_settings_custom_meta_style',''),(3185,308,'eg_sources_revslider',''),(3186,308,'_thumbnail_id','466'),(3187,308,'_EventCost','30'),(3188,310,'_EventOrigin','events-calendar'),(3189,310,'_EventOrigin','events-calendar'),(3190,310,'_EventOrigin','events-calendar'),(3191,310,'_edit_last','2'),(3192,310,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3193,310,'slide_template','default'),(3194,310,'_EventShowMapLink','1'),(3195,310,'_EventShowMap','1'),(3196,310,'_EventStartDate','2015-04-10 07:00:00'),(3197,310,'_EventEndDate','2015-11-11 17:00:00'),(3198,310,'_EventDuration','18612000'),(3199,310,'_EventVenueID','2055'),(3200,310,'_EventCurrencySymbol','$'),(3201,310,'_EventCurrencyPosition','prefix'),(3202,310,'_EventURL',''),(3203,310,'_EventOrganizerID','323'),(3204,310,'eg_sources_html5_mp4',''),(3205,310,'eg_sources_html5_ogv',''),(3206,310,'eg_sources_html5_webm',''),(3207,310,'eg_sources_youtube',''),(3208,310,'eg_sources_vimeo',''),(3209,310,'eg_sources_wistia',''),(3210,310,'eg_sources_image',''),(3211,310,'eg_sources_iframe',''),(3212,310,'eg_sources_soundcloud',''),(3213,310,'eg_vimeo_ratio','0'),(3214,310,'eg_youtube_ratio','0'),(3215,310,'eg_wistia_ratio','0'),(3216,310,'eg_html5_ratio','0'),(3217,310,'eg_soundcloud_ratio','0'),(3218,310,'eg_settings_custom_meta_skin',''),(3219,310,'eg_settings_custom_meta_element',''),(3220,310,'eg_settings_custom_meta_setting',''),(3221,310,'eg_settings_custom_meta_style',''),(3222,310,'eg_sources_revslider',''),(3223,310,'_thumbnail_id','2700'),(3224,310,'_EventCost','19'),(3225,312,'_EventOrigin','events-calendar'),(3226,312,'_EventOrigin','events-calendar'),(3227,312,'_EventOrigin','events-calendar'),(3228,312,'_edit_last','2'),(3229,312,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3230,312,'slide_template','default'),(3231,312,'_EventShowMapLink','1'),(3232,312,'_EventShowMap','1'),(3233,312,'_EventStartDate','2015-04-10 03:00:00'),(3234,312,'_EventEndDate','2017-06-22 17:00:00'),(3235,312,'_EventDuration','69516000'),(3236,312,'_EventVenueID','2055'),(3237,312,'_EventCurrencySymbol','$'),(3238,312,'_EventCurrencyPosition','prefix'),(3239,312,'_EventURL',''),(3240,312,'_EventOrganizerID','323'),(3241,312,'eg_sources_html5_mp4',''),(3242,312,'eg_sources_html5_ogv',''),(3243,312,'eg_sources_html5_webm',''),(3244,312,'eg_sources_youtube',''),(3245,312,'eg_sources_vimeo',''),(3246,312,'eg_sources_wistia',''),(3247,312,'eg_sources_image',''),(3248,312,'eg_sources_iframe',''),(3249,312,'eg_sources_soundcloud',''),(3250,312,'eg_vimeo_ratio','0'),(3251,312,'eg_youtube_ratio','0'),(3252,312,'eg_wistia_ratio','0'),(3253,312,'eg_html5_ratio','0'),(3254,312,'eg_soundcloud_ratio','0'),(3255,312,'eg_settings_custom_meta_skin',''),(3256,312,'eg_settings_custom_meta_element',''),(3257,312,'eg_settings_custom_meta_setting',''),(3258,312,'eg_settings_custom_meta_style',''),(3259,312,'eg_sources_revslider',''),(3260,312,'_thumbnail_id','2100'),(3261,312,'_EventCost','35'),(3262,313,'_EventOrigin','events-calendar'),(3263,313,'_EventOrigin','events-calendar'),(3264,313,'_EventOrigin','events-calendar'),(3265,313,'_edit_last','2'),(3266,313,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3267,313,'slide_template','default'),(3268,313,'_EventShowMapLink','1'),(3269,313,'_EventShowMap','1'),(3270,313,'_EventStartDate','2015-04-10 07:00:00'),(3271,313,'_EventEndDate','2018-07-12 17:00:00'),(3272,313,'_EventDuration','102765600'),(3273,313,'_EventVenueID','2055'),(3274,313,'_EventCurrencySymbol','$'),(3275,313,'_EventCurrencyPosition','prefix'),(3276,313,'_EventURL',''),(3277,313,'_EventOrganizerID','323'),(3278,313,'eg_sources_html5_mp4',''),(3279,313,'eg_sources_html5_ogv',''),(3280,313,'eg_sources_html5_webm',''),(3281,313,'eg_sources_youtube',''),(3282,313,'eg_sources_vimeo',''),(3283,313,'eg_sources_wistia',''),(3284,313,'eg_sources_image',''),(3285,313,'eg_sources_iframe',''),(3286,313,'eg_sources_soundcloud',''),(3287,313,'eg_vimeo_ratio','0'),(3288,313,'eg_youtube_ratio','0'),(3289,313,'eg_wistia_ratio','0'),(3290,313,'eg_html5_ratio','0'),(3291,313,'eg_soundcloud_ratio','0'),(3292,313,'eg_settings_custom_meta_skin',''),(3293,313,'eg_settings_custom_meta_element',''),(3294,313,'eg_settings_custom_meta_setting',''),(3295,313,'eg_settings_custom_meta_style',''),(3296,313,'eg_sources_revslider',''),(3297,313,'_thumbnail_id','2702'),(3298,313,'_EventCost','30'),(3299,314,'_EventOrigin','events-calendar'),(3300,314,'_EventOrigin','events-calendar'),(3301,314,'_EventOrigin','events-calendar'),(3302,314,'_edit_last','2'),(3303,314,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3304,314,'slide_template','default'),(3305,314,'_EventShowMapLink','1'),(3306,314,'_EventShowMap','1'),(3307,314,'_EventStartDate','2015-04-10 03:00:00'),(3308,314,'_EventEndDate','2018-06-23 20:00:00'),(3309,314,'_EventDuration','101149200'),(3310,314,'_EventVenueID','2055'),(3311,314,'_EventCurrencySymbol','$'),(3312,314,'_EventCurrencyPosition','prefix'),(3313,314,'_EventURL',''),(3314,314,'_EventOrganizerID','323'),(3315,314,'eg_sources_html5_mp4',''),(3316,314,'eg_sources_html5_ogv',''),(3317,314,'eg_sources_html5_webm',''),(3318,314,'eg_sources_youtube',''),(3319,314,'eg_sources_vimeo',''),(3320,314,'eg_sources_wistia',''),(3321,314,'eg_sources_image',''),(3322,314,'eg_sources_iframe',''),(3323,314,'eg_sources_soundcloud',''),(3324,314,'eg_vimeo_ratio','0'),(3325,314,'eg_youtube_ratio','0'),(3326,314,'eg_wistia_ratio','0'),(3327,314,'eg_html5_ratio','0'),(3328,314,'eg_soundcloud_ratio','0'),(3329,314,'eg_settings_custom_meta_skin',''),(3330,314,'eg_settings_custom_meta_element',''),(3331,314,'eg_settings_custom_meta_setting',''),(3332,314,'eg_settings_custom_meta_style',''),(3333,314,'eg_sources_revslider',''),(3334,314,'_thumbnail_id','2098'),(3335,314,'_EventCost','45'),(3336,315,'_EventOrigin','events-calendar'),(3337,315,'_EventOrigin','events-calendar'),(3338,315,'_EventOrigin','events-calendar'),(3339,315,'_edit_last','2'),(3340,315,'_thumbnail_id','466'),(3341,315,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3342,315,'slide_template','default'),(3343,315,'_EventShowMapLink','1'),(3344,315,'_EventShowMap','1'),(3345,315,'_EventStartDate','2015-04-10 07:00:00'),(3346,315,'_EventEndDate','2018-07-12 17:00:00'),(3347,315,'_EventDuration','102765600'),(3348,315,'_EventVenueID','2055'),(3349,315,'_EventCurrencySymbol','$'),(3350,315,'_EventCurrencyPosition','prefix'),(3351,315,'_EventURL',''),(3352,315,'_EventOrganizerID','323'),(3353,315,'eg_sources_html5_mp4',''),(3354,315,'eg_sources_html5_ogv',''),(3355,315,'eg_sources_html5_webm',''),(3356,315,'eg_sources_youtube',''),(3357,315,'eg_sources_vimeo',''),(3358,315,'eg_sources_wistia',''),(3359,315,'eg_sources_image',''),(3360,315,'eg_sources_iframe',''),(3361,315,'eg_sources_soundcloud',''),(3362,315,'eg_vimeo_ratio','0'),(3363,315,'eg_youtube_ratio','0'),(3364,315,'eg_wistia_ratio','0'),(3365,315,'eg_html5_ratio','0'),(3366,315,'eg_soundcloud_ratio','0'),(3367,315,'eg_settings_custom_meta_skin',''),(3368,315,'eg_settings_custom_meta_element',''),(3369,315,'eg_settings_custom_meta_setting',''),(3370,315,'eg_settings_custom_meta_style',''),(3371,315,'eg_sources_revslider',''),(3372,315,'_EventCost','25'),(3373,860,'_EventOrigin','events-calendar'),(3374,860,'_EventOrigin','events-calendar'),(3375,860,'_edit_last','2'),(3376,860,'_thumbnail_id','861'),(3377,860,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3378,860,'slide_template','default'),(3379,860,'eg_sources_html5_mp4',''),(3380,860,'eg_sources_html5_ogv',''),(3381,860,'eg_sources_html5_webm',''),(3382,860,'eg_sources_youtube',''),(3383,860,'eg_sources_vimeo',''),(3384,860,'eg_sources_wistia',''),(3385,860,'eg_sources_image',''),(3386,860,'eg_sources_iframe',''),(3387,860,'eg_sources_soundcloud',''),(3388,860,'eg_vimeo_ratio','0'),(3389,860,'eg_youtube_ratio','0'),(3390,860,'eg_wistia_ratio','0'),(3391,860,'eg_html5_ratio','0'),(3392,860,'eg_soundcloud_ratio','0'),(3393,860,'eg_settings_custom_meta_skin',''),(3394,860,'eg_settings_custom_meta_element',''),(3395,860,'eg_settings_custom_meta_setting',''),(3396,860,'eg_settings_custom_meta_style',''),(3397,860,'eg_sources_revslider',''),(3398,860,'_EventShowMapLink','1'),(3399,860,'_EventShowMap','1'),(3400,860,'_EventStartDate','2015-04-24 08:00:00'),(3401,860,'_EventEndDate','2020-07-10 17:00:00'),(3402,860,'_EventDuration','164538000'),(3403,860,'_EventVenueID','2055'),(3404,860,'_EventCurrencySymbol','$'),(3405,860,'_EventCurrencyPosition','prefix'),(3406,860,'_EventURL',''),(3407,860,'_EventOrganizerID','323'),(3408,860,'_EventCost','12'),(3409,965,'_EventOrigin','events-calendar'),(3410,965,'_EventOrigin','events-calendar'),(3411,965,'_edit_last','2'),(3412,965,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3413,965,'slide_template','default'),(3414,965,'eg_sources_html5_mp4',''),(3415,965,'eg_sources_html5_ogv',''),(3416,965,'eg_sources_html5_webm',''),(3417,965,'eg_sources_youtube',''),(3418,965,'eg_sources_vimeo',''),(3419,965,'eg_sources_wistia',''),(3420,965,'eg_sources_image',''),(3421,965,'eg_sources_iframe',''),(3422,965,'eg_sources_soundcloud',''),(3423,965,'eg_vimeo_ratio','0'),(3424,965,'eg_youtube_ratio','0'),(3425,965,'eg_wistia_ratio','0'),(3426,965,'eg_html5_ratio','0'),(3427,965,'eg_soundcloud_ratio','0'),(3428,965,'eg_settings_custom_meta_skin',''),(3429,965,'eg_settings_custom_meta_element',''),(3430,965,'eg_settings_custom_meta_setting',''),(3431,965,'eg_settings_custom_meta_style',''),(3432,965,'eg_sources_revslider',''),(3433,965,'_EventShowMapLink','1'),(3434,965,'_EventShowMap','1'),(3435,965,'_EventStartDate','2015-05-01 08:00:00'),(3436,965,'_EventEndDate','2015-09-22 17:00:00'),(3437,965,'_EventDuration','12474000'),(3438,965,'_EventVenueID','2055'),(3439,965,'_EventCurrencySymbol','$'),(3440,965,'_EventCurrencyPosition','prefix'),(3441,965,'_EventURL',''),(3442,965,'_EventOrganizerID','323'),(3443,965,'_thumbnail_id','2672'),(3444,965,'_EventCost','16'),(3445,1067,'_EventOrigin','events-calendar'),(3446,1067,'_EventOrigin','events-calendar'),(3447,1067,'_edit_last','2'),(3448,1067,'_thumbnail_id','1068'),(3449,1067,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3450,1067,'slide_template','default'),(3451,1067,'eg_sources_html5_mp4',''),(3452,1067,'eg_sources_html5_ogv',''),(3453,1067,'eg_sources_html5_webm',''),(3454,1067,'eg_sources_youtube',''),(3455,1067,'eg_sources_vimeo',''),(3456,1067,'eg_sources_wistia',''),(3457,1067,'eg_sources_image',''),(3458,1067,'eg_sources_iframe',''),(3459,1067,'eg_sources_soundcloud',''),(3460,1067,'eg_vimeo_ratio','0'),(3461,1067,'eg_youtube_ratio','0'),(3462,1067,'eg_wistia_ratio','0'),(3463,1067,'eg_html5_ratio','0'),(3464,1067,'eg_soundcloud_ratio','0'),(3465,1067,'eg_settings_custom_meta_skin',''),(3466,1067,'eg_settings_custom_meta_element',''),(3467,1067,'eg_settings_custom_meta_setting',''),(3468,1067,'eg_settings_custom_meta_style',''),(3469,1067,'eg_sources_revslider',''),(3470,1067,'_EventShowMapLink','1'),(3471,1067,'_EventShowMap','1'),(3472,1067,'_EventStartDate','2017-06-14 08:00:00'),(3473,1067,'_EventEndDate','2017-06-14 17:00:00'),(3474,1067,'_EventDuration','32400'),(3475,1067,'_EventVenueID','2055'),(3476,1067,'_EventCurrencySymbol','$'),(3477,1067,'_EventCurrencyPosition','prefix'),(3478,1067,'_EventURL',''),(3479,1067,'_EventOrganizerID','323'),(3480,1067,'_EventCost','55'),(3481,1069,'_EventOrigin','events-calendar'),(3482,1069,'_EventOrigin','events-calendar'),(3483,1069,'_edit_last','2'),(3484,1069,'_thumbnail_id','1070'),(3485,1069,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3486,1069,'slide_template','default'),(3487,1069,'eg_sources_html5_mp4',''),(3488,1069,'eg_sources_html5_ogv',''),(3489,1069,'eg_sources_html5_webm',''),(3490,1069,'eg_sources_youtube',''),(3491,1069,'eg_sources_vimeo',''),(3492,1069,'eg_sources_wistia',''),(3493,1069,'eg_sources_image',''),(3494,1069,'eg_sources_iframe',''),(3495,1069,'eg_sources_soundcloud',''),(3496,1069,'eg_vimeo_ratio','0'),(3497,1069,'eg_youtube_ratio','0'),(3498,1069,'eg_wistia_ratio','0'),(3499,1069,'eg_html5_ratio','0'),(3500,1069,'eg_soundcloud_ratio','0'),(3501,1069,'eg_settings_custom_meta_skin',''),(3502,1069,'eg_settings_custom_meta_element',''),(3503,1069,'eg_settings_custom_meta_setting',''),(3504,1069,'eg_settings_custom_meta_style',''),(3505,1069,'eg_sources_revslider',''),(3506,1069,'_EventShowMapLink','1'),(3507,1069,'_EventShowMap','1'),(3508,1069,'_EventStartDate','2015-05-02 08:00:00'),(3509,1069,'_EventEndDate','2016-06-15 17:00:00'),(3510,1069,'_EventDuration','35456400'),(3511,1069,'_EventVenueID','2055'),(3512,1069,'_EventCurrencySymbol','$'),(3513,1069,'_EventCurrencyPosition','prefix'),(3514,1069,'_EventURL',''),(3515,1069,'_EventOrganizerID','323'),(3516,1069,'_EventCost','25'),(3517,1648,'_edit_last','2'),(3518,1648,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3519,1648,'_bbp_activity_id','17'),(3520,1648,'slide_template','default'),(3521,1648,'_bbp_forum_id','1662'),(3522,1648,'_bbp_topic_id','1648'),(3523,1648,'_bbp_author_ip','::1'),(3524,1648,'_bbp_last_active_time','2015-05-23 01:57:25'),(3525,1648,'_bbp_reply_count','0'),(3526,1648,'_bbp_reply_count_hidden','0'),(3527,1648,'_bbp_last_active_id','1648'),(3528,1648,'_bbp_voice_count','1'),(3529,1650,'_edit_last','2'),(3530,1650,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3531,1650,'_bbp_activity_id','10'),(3532,1650,'slide_template','default'),(3533,1650,'_bbp_forum_id','1644'),(3534,1650,'_bbp_topic_id','1650'),(3535,1650,'_bbp_author_ip','::1'),(3536,1650,'_bbp_last_active_time','2015-05-23 02:17:38'),(3537,1650,'_bbp_reply_count','2'),(3538,1650,'_bbp_reply_count_hidden','0'),(3539,1650,'_bbp_last_active_id','1657'),(3540,1650,'_bbp_voice_count','1'),(3541,1650,'_bbp_last_reply_id','1657'),(3542,1661,'_bbp_forum_id','1659'),(3543,1661,'_bbp_topic_id','1661'),(3544,1661,'_bbp_author_ip','::1'),(3545,1661,'_bbp_last_active_id','1661'),(3546,1661,'_bbp_last_active_time','2015-05-23 02:52:03'),(3547,1661,'_bbp_reply_count','0'),(3548,1661,'_bbp_reply_count_hidden','0'),(3549,1661,'_bbp_voice_count','1'),(3550,1661,'_bbp_activity_id','14'),(3551,1672,'_edit_last','2'),(3552,1672,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3553,1672,'_bbp_activity_id','30'),(3554,1672,'slide_template','default'),(3555,1672,'_bbp_forum_id','1662'),(3556,1672,'_bbp_topic_id','1672'),(3557,1672,'_bbp_author_ip','::1'),(3558,1672,'_bbp_last_active_time','2015-05-26 10:51:39'),(3559,1672,'_bbp_reply_count','1'),(3560,1672,'_bbp_reply_count_hidden','0'),(3561,1672,'_bbp_last_active_id','1676'),(3562,1672,'_bbp_voice_count','1'),(3563,1672,'_bbp_last_reply_id','1676'),(3564,1672,'_bbp_pre_spammed_replies','a:2:{i:0;i:1680;i:1;i:1676;}'),(3565,1683,'_bbp_forum_id','1677'),(3566,1683,'_bbp_topic_id','1683'),(3567,1683,'_bbp_author_ip','::1'),(3568,1683,'_bbp_last_active_id','1685'),(3569,1683,'_bbp_last_active_time','2015-05-28 03:38:15'),(3570,1683,'_bbp_reply_count','1'),(3571,1683,'_bbp_reply_count_hidden','0'),(3572,1683,'_bbp_voice_count','1'),(3573,1683,'_bbp_activity_id','42'),(3574,1683,'_bbp_last_reply_id','1685'),(3575,2284,'_bbp_forum_id','2277'),(3576,2284,'_bbp_topic_id','2284'),(3577,2284,'_bbp_author_ip','192.168.1.83'),(3578,2284,'_bbp_last_reply_id','0'),(3579,2284,'_bbp_last_active_id','2284'),(3580,2284,'_bbp_last_active_time','2015-06-18 03:02:24'),(3581,2284,'_bbp_reply_count','0'),(3582,2284,'_bbp_reply_count_hidden','0'),(3583,2284,'_bbp_voice_count','1'),(3584,2284,'_bbp_activity_id','65'),(3585,2285,'_bbp_forum_id','2277'),(3586,2285,'_bbp_topic_id','2285'),(3587,2285,'_bbp_author_ip','192.168.1.83'),(3588,2285,'_bbp_last_reply_id','0'),(3589,2285,'_bbp_last_active_id','2285'),(3590,2285,'_bbp_last_active_time','2015-06-18 03:05:17'),(3591,2285,'_bbp_reply_count','0'),(3592,2285,'_bbp_reply_count_hidden','0'),(3593,2285,'_bbp_voice_count','1'),(3594,2285,'_bbp_activity_id','66'),(3595,2291,'_edit_last','2'),(3596,2291,'_oembed_9fd44ef607ffbfb98d338442dd006899','<iframe width=\"900\" height=\"506\" src=\"https://www.youtube.com/embed/bUIvhQPPCRg?feature=oembed\" frameborder=\"0\" allowfullscreen></iframe>'),(3597,2291,'_oembed_time_9fd44ef607ffbfb98d338442dd006899','1434683538'),(3598,2291,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3599,2291,'_bbp_activity_id','91'),(3600,2291,'slide_template','default'),(3601,2291,'_bbp_forum_id','2291'),(3602,2291,'_bbp_topic_id','2291'),(3603,2291,'_bbp_author_ip','192.168.1.83'),(3604,2291,'_bbp_last_active_time','2015-06-19 03:13:14'),(3605,2291,'_bbp_reply_count','0'),(3606,2291,'_bbp_reply_count_hidden','0'),(3607,2291,'_bbp_last_active_id','2291'),(3608,2291,'_bbp_voice_count','1'),(3609,319,'_VenueOrigin','events-calendar'),(3610,319,'_VenueOrigin','events-calendar'),(3611,319,'_VenueOrigin','events-calendar'),(3612,319,'_EventShowMapLink',''),(3613,319,'_EventShowMap',''),(3614,319,'_VenueVenue','Venue Name:'),(3615,319,'_VenueAddress','Address:'),(3616,319,'_VenueCity','City:'),(3617,319,'_VenueCountry',''),(3618,319,'_VenueProvince',''),(3619,319,'_VenueState',''),(3620,319,'_VenueZip','Postal Code:'),(3621,319,'_VenuePhone',''),(3622,319,'_VenueURL',''),(3623,319,'_VenueStateProvince',''),(3624,323,'_OrganizerOrigin','events-calendar'),(3625,323,'_OrganizerOrigin','events-calendar'),(3626,323,'_OrganizerOrigin','events-calendar'),(3627,323,'_edit_last','2'),(3628,323,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3629,323,'_OrganizerPhone','09842654259'),(3630,323,'_OrganizerWebsite','https://www.youtube.com'),(3631,323,'_OrganizerEmail','contact@templaza.com'),(3632,323,'slide_template','default'),(3633,324,'_VenueOrigin','events-calendar'),(3634,324,'_VenueOrigin','events-calendar'),(3635,324,'_VenueOrigin','events-calendar'),(3636,324,'_EventShowMapLink',''),(3637,324,'_EventShowMap',''),(3638,324,'_VenueVenueID','0'),(3639,324,'_VenueVenue','Templaza.com'),(3640,324,'_VenueAddress','Address:Ha Noi Viet Nam'),(3641,324,'_VenueCity','City: Ha Noi'),(3642,324,'_VenueCountry','Viet Nam'),(3643,324,'_VenueProvince','Ha Noi'),(3644,324,'_VenueZip','Postal Code:'),(3645,324,'_VenuePhone','098748888'),(3646,324,'_VenueURL','https://www.youtube.com'),(3647,324,'_VenueStateProvince','Ha Noi'),(3648,369,'_OrganizerOrigin','events-calendar'),(3649,369,'_OrganizerOrigin','events-calendar'),(3650,369,'_OrganizerOrigin','events-calendar'),(3651,369,'_OrganizerOrganizerID','0'),(3652,369,'_OrganizerOrganizer','ádfsdfsdf'),(3653,369,'_OrganizerPhone','123456789'),(3654,369,'_OrganizerWebsite','sdfsdf'),(3655,369,'_OrganizerEmail',''),(3656,374,'_VenueOrigin','events-calendar'),(3657,374,'_VenueOrigin','events-calendar'),(3658,375,'_OrganizerOrigin','events-calendar'),(3659,375,'_OrganizerOrigin','events-calendar'),(3660,1071,'_EventOrigin','events-calendar'),(3661,1071,'_EventOrigin','events-calendar'),(3662,1071,'_thumbnail_id','1073'),(3663,1071,'_edit_last','2'),(3664,1071,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3665,1071,'slide_template','default'),(3666,1071,'eg_sources_html5_mp4',''),(3667,1071,'eg_sources_html5_ogv',''),(3668,1071,'eg_sources_html5_webm',''),(3669,1071,'eg_sources_youtube',''),(3670,1071,'eg_sources_vimeo',''),(3671,1071,'eg_sources_wistia',''),(3672,1071,'eg_sources_image',''),(3673,1071,'eg_sources_iframe',''),(3674,1071,'eg_sources_soundcloud',''),(3675,1071,'eg_vimeo_ratio','0'),(3676,1071,'eg_youtube_ratio','0'),(3677,1071,'eg_wistia_ratio','0'),(3678,1071,'eg_html5_ratio','0'),(3679,1071,'eg_soundcloud_ratio','0'),(3680,1071,'eg_settings_custom_meta_skin',''),(3681,1071,'eg_settings_custom_meta_element',''),(3682,1071,'eg_settings_custom_meta_setting',''),(3683,1071,'eg_settings_custom_meta_style',''),(3684,1071,'eg_sources_revslider',''),(3685,1071,'_EventShowMapLink','1'),(3686,1071,'_EventShowMap','1'),(3687,1071,'_EventStartDate','2015-05-02 08:00:00'),(3688,1071,'_EventEndDate','2016-06-15 17:00:00'),(3689,1071,'_EventDuration','35456400'),(3690,1071,'_EventVenueID','2055'),(3691,1071,'_EventCurrencySymbol','$'),(3692,1071,'_EventCurrencyPosition','prefix'),(3693,1071,'_EventURL',''),(3694,1071,'_EventOrganizerID','323'),(3695,1071,'_EventCost','17'),(3696,1074,'_EventOrigin','events-calendar'),(3697,1074,'_EventOrigin','events-calendar'),(3698,1074,'_edit_last','2'),(3699,1074,'_thumbnail_id','1076'),(3700,1074,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3701,1074,'slide_template','default'),(3702,1074,'eg_sources_html5_mp4',''),(3703,1074,'eg_sources_html5_ogv',''),(3704,1074,'eg_sources_html5_webm',''),(3705,1074,'eg_sources_youtube',''),(3706,1074,'eg_sources_vimeo',''),(3707,1074,'eg_sources_wistia',''),(3708,1074,'eg_sources_image',''),(3709,1074,'eg_sources_iframe',''),(3710,1074,'eg_sources_soundcloud',''),(3711,1074,'eg_vimeo_ratio','0'),(3712,1074,'eg_youtube_ratio','0'),(3713,1074,'eg_wistia_ratio','0'),(3714,1074,'eg_html5_ratio','0'),(3715,1074,'eg_soundcloud_ratio','0'),(3716,1074,'eg_settings_custom_meta_skin',''),(3717,1074,'eg_settings_custom_meta_element',''),(3718,1074,'eg_settings_custom_meta_setting',''),(3719,1074,'eg_settings_custom_meta_style',''),(3720,1074,'eg_sources_revslider',''),(3721,1074,'_EventShowMapLink','1'),(3722,1074,'_EventShowMap','1'),(3723,1074,'_EventStartDate','2015-05-02 08:00:00'),(3724,1074,'_EventEndDate','2015-05-02 17:00:00'),(3725,1074,'_EventDuration','32400'),(3726,1074,'_EventVenueID','2055'),(3727,1074,'_EventCurrencySymbol','$'),(3728,1074,'_EventCurrencyPosition','prefix'),(3729,1074,'_EventURL',''),(3730,1074,'_EventOrganizerID','323'),(3731,1074,'_EventCost','20'),(3732,1077,'_OrganizerOrigin','events-calendar'),(3733,1077,'eg_sources_html5_mp4',''),(3734,1077,'eg_sources_html5_ogv',''),(3735,1077,'eg_sources_html5_webm',''),(3736,1077,'eg_sources_youtube',''),(3737,1077,'eg_sources_vimeo',''),(3738,1077,'eg_sources_wistia',''),(3739,1077,'eg_sources_image',''),(3740,1077,'eg_sources_iframe',''),(3741,1077,'eg_sources_soundcloud',''),(3742,1077,'eg_vimeo_ratio','0'),(3743,1077,'eg_youtube_ratio','0'),(3744,1077,'eg_wistia_ratio','0'),(3745,1077,'eg_html5_ratio','0'),(3746,1077,'eg_soundcloud_ratio','0'),(3747,1077,'eg_settings_custom_meta_skin',''),(3748,1077,'eg_settings_custom_meta_element',''),(3749,1077,'eg_settings_custom_meta_setting',''),(3750,1077,'eg_settings_custom_meta_style',''),(3751,1077,'eg_sources_revslider',''),(3752,1077,'_OrganizerOrigin','events-calendar'),(3753,1077,'_OrganizerOrganizerID','0'),(3754,1077,'_OrganizerOrganizer','LenaSky'),(3755,1077,'_OrganizerPhone','098467688'),(3756,1077,'_OrganizerWebsite','facebook.com'),(3757,1077,'_OrganizerEmail','truongcat.9x@gmail.com'),(3758,1078,'_VenueOrigin','events-calendar'),(3759,1078,'eg_sources_html5_mp4',''),(3760,1078,'eg_sources_html5_ogv',''),(3761,1078,'eg_sources_html5_webm',''),(3762,1078,'eg_sources_youtube',''),(3763,1078,'eg_sources_vimeo',''),(3764,1078,'eg_sources_wistia',''),(3765,1078,'eg_sources_image',''),(3766,1078,'eg_sources_iframe',''),(3767,1078,'eg_sources_soundcloud',''),(3768,1078,'eg_vimeo_ratio','0'),(3769,1078,'eg_youtube_ratio','0'),(3770,1078,'eg_wistia_ratio','0'),(3771,1078,'eg_html5_ratio','0'),(3772,1078,'eg_soundcloud_ratio','0'),(3773,1078,'eg_settings_custom_meta_skin',''),(3774,1078,'eg_settings_custom_meta_element',''),(3775,1078,'eg_settings_custom_meta_setting',''),(3776,1078,'eg_settings_custom_meta_style',''),(3777,1078,'eg_sources_revslider',''),(3778,1078,'_VenueOrigin','events-calendar'),(3779,1078,'_EventShowMapLink','1'),(3780,1078,'_EventShowMap','1'),(3781,1078,'_VenueVenueID','0'),(3782,1078,'_VenueVenue','Life Of King'),(3783,1078,'_VenueAddress','LonDon'),(3784,1078,'_VenueCity','Mickey'),(3785,1078,'_VenueCountry','United States'),(3786,1078,'_VenueProvince',''),(3787,1078,'_VenueState','CO'),(3788,1078,'_VenueZip','46'),(3789,1078,'_VenuePhone','084678874448'),(3790,1078,'_VenueURL',''),(3791,1078,'_VenueStateProvince','CO'),(3792,2055,'_VenueOrigin','events-calendar'),(3793,2055,'_VenueOrigin','events-calendar'),(3794,2055,'_edit_last','2'),(3795,2055,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3796,2055,'_EventShowMapLink',''),(3797,2055,'_EventShowMap',''),(3798,2055,'_VenueAddress','1531 Seventh Ave, Seattle, WA 98101-1703'),(3799,2055,'_VenueCity','Washington'),(3800,2055,'_VenueCountry','United States'),(3801,2055,'_VenueProvince',''),(3802,2055,'_VenueState','WA'),(3803,2055,'_VenueZip',''),(3804,2055,'_VenuePhone','800-716-9999'),(3805,2055,'_VenueURL','http://templaza.com'),(3806,2055,'_VenueShowMap','true'),(3807,2055,'_VenueShowMapLink','true'),(3808,2055,'_VenueStateProvince','WA'),(3809,2055,'slide_template','default'),(3810,2089,'_EventOrigin','events-calendar'),(3811,2089,'_EventOrigin','events-calendar'),(3812,2089,'_EventOrigin','events-calendar'),(3813,2089,'_EventOrigin','events-calendar'),(3814,2089,'_edit_last','2'),(3815,2089,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3816,2089,'slide_template','default'),(3817,2089,'_EventShowMapLink','1'),(3818,2089,'_EventShowMap','1'),(3819,2089,'_EventStartDate','2015-04-10 07:00:00'),(3820,2089,'_EventEndDate','2017-07-11 17:00:00'),(3821,2089,'_EventDuration','71143200'),(3822,2089,'_EventVenueID','2055'),(3823,2089,'_EventCurrencySymbol','$'),(3824,2089,'_EventCurrencyPosition','prefix'),(3825,2089,'_EventURL',''),(3826,2089,'_EventOrganizerID','323'),(3827,2089,'eg_sources_html5_mp4',''),(3828,2089,'eg_sources_html5_ogv',''),(3829,2089,'eg_sources_html5_webm',''),(3830,2089,'eg_sources_youtube',''),(3831,2089,'eg_sources_vimeo',''),(3832,2089,'eg_sources_wistia',''),(3833,2089,'eg_sources_image',''),(3834,2089,'eg_sources_iframe',''),(3835,2089,'eg_sources_soundcloud',''),(3836,2089,'eg_vimeo_ratio','0'),(3837,2089,'eg_youtube_ratio','0'),(3838,2089,'eg_wistia_ratio','0'),(3839,2089,'eg_html5_ratio','0'),(3840,2089,'eg_soundcloud_ratio','0'),(3841,2089,'eg_settings_custom_meta_skin',''),(3842,2089,'eg_settings_custom_meta_element',''),(3843,2089,'eg_settings_custom_meta_setting',''),(3844,2089,'eg_settings_custom_meta_style',''),(3845,2089,'eg_sources_revslider',''),(3846,2089,'_dp_original','310'),(3847,2089,'_thumbnail_id','2096'),(3848,2089,'_EventCost','45'),(3849,2090,'_EventOrigin','events-calendar'),(3850,2090,'_EventOrigin','events-calendar'),(3851,2090,'_EventOrigin','events-calendar'),(3852,2090,'_EventOrigin','events-calendar'),(3853,2090,'_edit_last','2'),(3854,2090,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3855,2090,'slide_template','default'),(3856,2090,'_EventShowMapLink','1'),(3857,2090,'_EventShowMap','1'),(3858,2090,'_EventStartDate','2015-04-10 07:00:00'),(3859,2090,'_EventEndDate','2018-07-10 17:00:00'),(3860,2090,'_EventDuration','102592800'),(3861,2090,'_EventVenueID','2055'),(3862,2090,'_EventCurrencySymbol','$'),(3863,2090,'_EventCurrencyPosition','prefix'),(3864,2090,'_EventURL',''),(3865,2090,'_EventOrganizerID','323'),(3866,2090,'eg_sources_html5_mp4',''),(3867,2090,'eg_sources_html5_ogv',''),(3868,2090,'eg_sources_html5_webm',''),(3869,2090,'eg_sources_youtube',''),(3870,2090,'eg_sources_vimeo',''),(3871,2090,'eg_sources_wistia',''),(3872,2090,'eg_sources_image',''),(3873,2090,'eg_sources_iframe',''),(3874,2090,'eg_sources_soundcloud',''),(3875,2090,'eg_vimeo_ratio','0'),(3876,2090,'eg_youtube_ratio','0'),(3877,2090,'eg_wistia_ratio','0'),(3878,2090,'eg_html5_ratio','0'),(3879,2090,'eg_soundcloud_ratio','0'),(3880,2090,'eg_settings_custom_meta_skin',''),(3881,2090,'eg_settings_custom_meta_element',''),(3882,2090,'eg_settings_custom_meta_setting',''),(3883,2090,'eg_settings_custom_meta_style',''),(3884,2090,'eg_sources_revslider',''),(3885,2090,'_dp_original','313'),(3886,2090,'_thumbnail_id','2097'),(3887,2090,'_EventCost','25'),(3888,2091,'_EventOrigin','events-calendar'),(3889,2091,'_EventOrigin','events-calendar'),(3890,2091,'_EventOrigin','events-calendar'),(3891,2091,'_EventOrigin','events-calendar'),(3892,2091,'_edit_last','2'),(3893,2091,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3894,2091,'slide_template','default'),(3895,2091,'_EventShowMapLink','1'),(3896,2091,'_EventShowMap','1'),(3897,2091,'_EventStartDate','2015-04-10 04:00:00'),(3898,2091,'_EventEndDate','2019-07-16 17:00:00'),(3899,2091,'_EventDuration','134658000'),(3900,2091,'_EventVenueID','2055'),(3901,2091,'_EventCurrencySymbol','$'),(3902,2091,'_EventCurrencyPosition','prefix'),(3903,2091,'_EventURL',''),(3904,2091,'_EventOrganizerID','323'),(3905,2091,'eg_sources_html5_mp4',''),(3906,2091,'eg_sources_html5_ogv',''),(3907,2091,'eg_sources_html5_webm',''),(3908,2091,'eg_sources_youtube',''),(3909,2091,'eg_sources_vimeo',''),(3910,2091,'eg_sources_wistia',''),(3911,2091,'eg_sources_image',''),(3912,2091,'eg_sources_iframe',''),(3913,2091,'eg_sources_soundcloud',''),(3914,2091,'eg_vimeo_ratio','0'),(3915,2091,'eg_youtube_ratio','0'),(3916,2091,'eg_wistia_ratio','0'),(3917,2091,'eg_html5_ratio','0'),(3918,2091,'eg_soundcloud_ratio','0'),(3919,2091,'eg_settings_custom_meta_skin',''),(3920,2091,'eg_settings_custom_meta_element',''),(3921,2091,'eg_settings_custom_meta_setting',''),(3922,2091,'eg_settings_custom_meta_style',''),(3923,2091,'eg_sources_revslider',''),(3924,2091,'_dp_original','305'),(3925,2091,'_thumbnail_id','2099'),(3926,2091,'_EventCost','25'),(3927,2092,'_EventOrigin','events-calendar'),(3928,2092,'_EventOrigin','events-calendar'),(3929,2092,'_EventOrigin','events-calendar'),(3930,2092,'_EventOrigin','events-calendar'),(3931,2092,'_edit_last','2'),(3932,2092,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3933,2092,'slide_template','default'),(3934,2092,'_EventShowMapLink','1'),(3935,2092,'_EventShowMap','1'),(3936,2092,'_EventStartDate','2015-04-10 03:00:00'),(3937,2092,'_EventEndDate','2021-06-12 20:00:00'),(3938,2092,'_EventDuration','194893200'),(3939,2092,'_EventVenueID','2055'),(3940,2092,'_EventCurrencySymbol','$'),(3941,2092,'_EventCurrencyPosition','prefix'),(3942,2092,'_EventURL',''),(3943,2092,'_EventOrganizerID','323'),(3944,2092,'eg_sources_html5_mp4',''),(3945,2092,'eg_sources_html5_ogv',''),(3946,2092,'eg_sources_html5_webm',''),(3947,2092,'eg_sources_youtube',''),(3948,2092,'eg_sources_vimeo',''),(3949,2092,'eg_sources_wistia',''),(3950,2092,'eg_sources_image',''),(3951,2092,'eg_sources_iframe',''),(3952,2092,'eg_sources_soundcloud',''),(3953,2092,'eg_vimeo_ratio','0'),(3954,2092,'eg_youtube_ratio','0'),(3955,2092,'eg_wistia_ratio','0'),(3956,2092,'eg_html5_ratio','0'),(3957,2092,'eg_soundcloud_ratio','0'),(3958,2092,'eg_settings_custom_meta_skin',''),(3959,2092,'eg_settings_custom_meta_element',''),(3960,2092,'eg_settings_custom_meta_setting',''),(3961,2092,'eg_settings_custom_meta_style',''),(3962,2092,'eg_sources_revslider',''),(3963,2092,'_dp_original','314'),(3964,2092,'_thumbnail_id','2096'),(3965,2092,'_EventCost','25'),(3966,2093,'_EventOrigin','events-calendar'),(3967,2093,'_EventOrigin','events-calendar'),(3968,2093,'_EventOrigin','events-calendar'),(3969,2093,'_EventOrigin','events-calendar'),(3970,2093,'_edit_last','2'),(3971,2093,'_thumbnail_id','463'),(3972,2093,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(3973,2093,'slide_template','default'),(3974,2093,'_EventShowMapLink','1'),(3975,2093,'_EventShowMap','1'),(3976,2093,'_EventStartDate','2015-04-10 03:00:00'),(3977,2093,'_EventEndDate','2018-07-17 17:00:00'),(3978,2093,'_EventDuration','103212000'),(3979,2093,'_EventVenueID','2055'),(3980,2093,'_EventCurrencySymbol','$'),(3981,2093,'_EventCurrencyPosition','prefix'),(3982,2093,'_EventURL',''),(3983,2093,'_EventOrganizerID','323'),(3984,2093,'eg_sources_html5_mp4',''),(3985,2093,'eg_sources_html5_ogv',''),(3986,2093,'eg_sources_html5_webm',''),(3987,2093,'eg_sources_youtube',''),(3988,2093,'eg_sources_vimeo',''),(3989,2093,'eg_sources_wistia',''),(3990,2093,'eg_sources_image',''),(3991,2093,'eg_sources_iframe',''),(3992,2093,'eg_sources_soundcloud',''),(3993,2093,'eg_vimeo_ratio','0'),(3994,2093,'eg_youtube_ratio','0'),(3995,2093,'eg_wistia_ratio','0'),(3996,2093,'eg_html5_ratio','0'),(3997,2093,'eg_soundcloud_ratio','0'),(3998,2093,'eg_settings_custom_meta_skin',''),(3999,2093,'eg_settings_custom_meta_element',''),(4000,2093,'eg_settings_custom_meta_setting',''),(4001,2093,'eg_settings_custom_meta_style',''),(4002,2093,'eg_sources_revslider',''),(4003,2093,'_dp_original','312'),(4004,2093,'_EventCost','25'),(4005,2094,'_EventOrigin','events-calendar'),(4006,2094,'_EventOrigin','events-calendar'),(4007,2094,'_EventOrigin','events-calendar'),(4008,2094,'_EventOrigin','events-calendar'),(4009,2094,'_edit_last','2'),(4010,2094,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4011,2094,'slide_template','default'),(4012,2094,'_EventShowMapLink','1'),(4013,2094,'_EventShowMap','1'),(4014,2094,'_EventStartDate','2015-04-10 02:30:00'),(4015,2094,'_EventEndDate','2019-07-17 21:00:00'),(4016,2094,'_EventDuration','134764200'),(4017,2094,'_EventVenueID','2055'),(4018,2094,'_EventCurrencySymbol','$'),(4019,2094,'_EventCurrencyPosition','prefix'),(4020,2094,'_EventURL',''),(4021,2094,'_EventOrganizerID','323'),(4022,2094,'eg_sources_html5_mp4',''),(4023,2094,'eg_sources_html5_ogv',''),(4024,2094,'eg_sources_html5_webm',''),(4025,2094,'eg_sources_youtube',''),(4026,2094,'eg_sources_vimeo',''),(4027,2094,'eg_sources_wistia',''),(4028,2094,'eg_sources_image',''),(4029,2094,'eg_sources_iframe',''),(4030,2094,'eg_sources_soundcloud',''),(4031,2094,'eg_vimeo_ratio','0'),(4032,2094,'eg_youtube_ratio','0'),(4033,2094,'eg_wistia_ratio','0'),(4034,2094,'eg_html5_ratio','0'),(4035,2094,'eg_soundcloud_ratio','0'),(4036,2094,'eg_settings_custom_meta_skin',''),(4037,2094,'eg_settings_custom_meta_element',''),(4038,2094,'eg_settings_custom_meta_setting',''),(4039,2094,'eg_settings_custom_meta_style',''),(4040,2094,'eg_sources_revslider',''),(4041,2094,'_dp_original','308'),(4042,2094,'_thumbnail_id','2101'),(4043,2094,'_EventCost','30'),(4044,2095,'_EventOrigin','events-calendar'),(4045,2095,'_EventOrigin','events-calendar'),(4046,2095,'_EventOrigin','events-calendar'),(4047,2095,'_EventOrigin','events-calendar'),(4048,2095,'_edit_last','2'),(4049,2095,'_thumbnail_id','464'),(4050,2095,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4051,2095,'slide_template','default'),(4052,2095,'_EventShowMapLink','1'),(4053,2095,'_EventShowMap','1'),(4054,2095,'_EventStartDate','2015-04-10 02:30:00'),(4055,2095,'_EventEndDate','2020-08-25 21:00:00'),(4056,2095,'_EventDuration','169756200'),(4057,2095,'_EventVenueID','2055'),(4058,2095,'_EventCurrencySymbol','$'),(4059,2095,'_EventCurrencyPosition','prefix'),(4060,2095,'_EventURL',''),(4061,2095,'_EventOrganizerID','323'),(4062,2095,'eg_sources_html5_mp4',''),(4063,2095,'eg_sources_html5_ogv',''),(4064,2095,'eg_sources_html5_webm',''),(4065,2095,'eg_sources_youtube',''),(4066,2095,'eg_sources_vimeo',''),(4067,2095,'eg_sources_wistia',''),(4068,2095,'eg_sources_image',''),(4069,2095,'eg_sources_iframe',''),(4070,2095,'eg_sources_soundcloud',''),(4071,2095,'eg_vimeo_ratio','0'),(4072,2095,'eg_youtube_ratio','0'),(4073,2095,'eg_wistia_ratio','0'),(4074,2095,'eg_html5_ratio','0'),(4075,2095,'eg_soundcloud_ratio','0'),(4076,2095,'eg_settings_custom_meta_skin',''),(4077,2095,'eg_settings_custom_meta_element',''),(4078,2095,'eg_settings_custom_meta_setting',''),(4079,2095,'eg_settings_custom_meta_style',''),(4080,2095,'eg_sources_revslider',''),(4081,2095,'_dp_original','308'),(4082,2095,'_EventCost','45'),(4083,2973,'_EventOrigin','events-calendar'),(4084,2973,'_EventOrigin','events-calendar'),(4085,2973,'_edit_last','2'),(4086,2973,'_thumbnail_id','450'),(4087,2973,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4088,2973,'slide_template','default'),(4089,2973,'_EventShowMapLink','1'),(4090,2973,'_EventShowMap','1'),(4091,2973,'_EventStartDate','2015-07-13 08:00:00'),(4092,2973,'_EventEndDate','2015-07-13 17:00:00'),(4093,2973,'_EventDuration','32400'),(4094,2973,'_EventVenueID','2974'),(4095,2973,'_EventCurrencySymbol',''),(4096,2973,'_EventCurrencyPosition','prefix'),(4097,2973,'_EventCost',''),(4098,2973,'_EventURL',''),(4099,2973,'_EventOrganizerID','0'),(4100,2974,'_VenueOrigin','events-calendar'),(4101,2974,'_VenueOrigin','events-calendar'),(4102,2974,'_EventShowMapLink','1'),(4103,2974,'_EventShowMap','1'),(4104,2974,'_VenueVenue','Templaza'),(4105,2974,'_VenueAddress','Hanoi, Vietnam'),(4106,2974,'_VenueCity','Hanoi'),(4107,2974,'_VenueCountry','Viet Nam'),(4108,2974,'_VenueProvince',''),(4109,2974,'_VenueState',''),(4110,2974,'_VenueZip',''),(4111,2974,'_VenuePhone',''),(4112,2974,'_VenueURL',''),(4113,2974,'_VenueStateProvince',''),(4114,3020,'_form','<ul class=\"tz-contact-wapper\">\n <li>\n <span>YOU WANT TO KNOW MORE <br> INFORMATION? SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]\n </li>\n </ul>'),(4115,3020,'_mail','a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4116,3020,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4117,3020,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(4118,3020,'_additional_settings',''),(4119,3020,'_locale','en_US'),(4120,3020,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4121,370,'_VenueOrigin','events-calendar'),(4122,370,'_VenueOrigin','events-calendar'),(4123,370,'_VenueOrigin','events-calendar'),(4124,370,'_EventShowMapLink','1'),(4125,370,'_EventShowMap','1'),(4126,370,'_VenueVenueID','0'),(4127,370,'_VenueVenue','sdfasf'),(4128,370,'_VenueAddress','sfsdf'),(4129,370,'_VenueCity','Luon Don'),(4130,370,'_VenueCountry','United States'),(4131,370,'_VenueProvince',''),(4132,370,'_VenueState','WA'),(4133,370,'_VenueZip','sdfsdf'),(4134,370,'_VenuePhone','123456789'),(4135,370,'_VenueURL','templaza.com'),(4136,370,'_VenueStateProvince','WA'),(4137,888,'_form','<ul class=\"tz-contact-wapper tz-contact-wapper-style-7\">\n <li class=\"theme-color-white\">\n <span class=\"theme-color-white\">YOU WANT TO KNOW MORE <br> INFORMATION? SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li class=\"theme-color-white\" ><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]\n </li>\n </ul>'),(4138,888,'_mail','a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4139,888,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4140,888,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(4141,888,'_additional_settings',''),(4142,888,'_locale','en_US'),(4143,888,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4144,1059,'_form','<ul class=\"tz-contact-wapper tz-contact-wapper-style-4\">\n <li class=\"theme-color-white\">\n <span class=\"theme-color-white\">WANT MORE INFORMATION?<br> SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li class=\"theme-color-white\" ><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]</li>\n </ul>'),(4145,1059,'_mail','a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4146,1059,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4147,1059,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(4148,1059,'_additional_settings',''),(4149,1059,'_locale','en_US'),(4150,1059,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4151,1701,'_form','<div class=\"tz-map-form\">\n <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n <label>YOUR NAME<span>(Required)</span></label>[text txtyourname class:tz-username class:form-control]\n <label>YOUR EMAIL<span>(Required)</span></label>[email txtemailcontact class:tz-email class:form-control]\n <label>SUBJECT</label>[text txt_subject_contact class:tz-subject class:form-control ]\n </div>\n <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\n <label>MESSAGES<span>(Required)</span></label>[textarea textarea-message 40x8 class:txt-area-contact class:form-control ]\n </div>\n <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\n <div class=\"tz-comment-post\">\n <span><i class=\"fa fa-envelope\"></i>[submit \"SEND\"]</span>\n </div>\n </div>\n </div>'),(4152,1701,'_mail','a:8:{s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:23:\"genywebmaster@gmail.com\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4153,1701,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:0:\"\";s:6:\"sender\";s:0:\"\";s:4:\"body\";s:0:\"\";s:9:\"recipient\";s:0:\"\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(4154,1701,'_messages','a:23:{s:12:\"mail_sent_ok\";s:43:\"Your message was sent successfully. Thanks.\";s:12:\"mail_sent_ng\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:16:\"validation_error\";s:74:\"Validation errors occurred. Please confirm the fields and submit it again.\";s:4:\"spam\";s:93:\"Failed to send your message. Please try later or contact the administrator by another method.\";s:12:\"accept_terms\";s:35:\"Please accept the terms to proceed.\";s:16:\"invalid_required\";s:34:\"Please fill in the required field.\";s:16:\"invalid_too_long\";s:23:\"This input is too long.\";s:17:\"invalid_too_short\";s:24:\"This input is too short.\";s:17:\"captcha_not_match\";s:31:\"Your entered code is incorrect.\";s:14:\"invalid_number\";s:28:\"Number format seems invalid.\";s:16:\"number_too_small\";s:25:\"This number is too small.\";s:16:\"number_too_large\";s:25:\"This number is too large.\";s:13:\"invalid_email\";s:28:\"Email address seems invalid.\";s:11:\"invalid_url\";s:18:\"URL seems invalid.\";s:11:\"invalid_tel\";s:31:\"Telephone number seems invalid.\";s:23:\"quiz_answer_not_correct\";s:27:\"Your answer is not correct.\";s:12:\"invalid_date\";s:26:\"Date format seems invalid.\";s:14:\"date_too_early\";s:23:\"This date is too early.\";s:13:\"date_too_late\";s:22:\"This date is too late.\";s:13:\"upload_failed\";s:22:\"Failed to upload file.\";s:24:\"upload_file_type_invalid\";s:30:\"This file type is not allowed.\";s:21:\"upload_file_too_large\";s:23:\"This file is too large.\";s:23:\"upload_failed_php_error\";s:38:\"Failed to upload file. Error occurred.\";}'),(4155,1701,'_additional_settings',''),(4156,1701,'_locale','en_US'),(4157,1701,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4238,3031,'_menu_item_type','post_type'),(4239,3031,'_menu_item_menu_item_parent','2720'),(4240,3031,'_menu_item_object_id','536'),(4241,3031,'_menu_item_object','page'),(4242,3031,'_menu_item_target',''),(4243,3031,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4244,3031,'_menu_item_xfn',''),(4245,3031,'_menu_item_url',''),(4318,3041,'_menu_item_type','post_type'),(4319,3041,'_menu_item_menu_item_parent','2714'),(4320,3041,'_menu_item_object_id','536'),(4321,3041,'_menu_item_object','page'),(4322,3041,'_menu_item_target',''),(4323,3041,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4324,3041,'_menu_item_xfn',''),(4325,3041,'_menu_item_url',''),(4390,3050,'_menu_item_type','post_type'),(4391,3050,'_menu_item_menu_item_parent','2711'),(4392,3050,'_menu_item_object_id','1752'),(4393,3050,'_menu_item_object','page'),(4394,3050,'_menu_item_target',''),(4395,3050,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4396,3050,'_menu_item_xfn',''),(4397,3050,'_menu_item_url',''),(4406,3052,'_menu_item_type','post_type'),(4407,3052,'_menu_item_menu_item_parent','2711'),(4408,3052,'_menu_item_object_id','1689'),(4409,3052,'_menu_item_object','page'),(4410,3052,'_menu_item_target',''),(4411,3052,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4412,3052,'_menu_item_xfn',''),(4413,3052,'_menu_item_url',''),(4414,3053,'_menu_item_type','post_type'),(4415,3053,'_menu_item_menu_item_parent','2711'),(4416,3053,'_menu_item_object_id','1791'),(4417,3053,'_menu_item_object','page'),(4418,3053,'_menu_item_target',''),(4419,3053,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4420,3053,'_menu_item_xfn',''),(4421,3053,'_menu_item_url',''),(4566,3072,'_menu_item_type','post_type'),(4567,3072,'_menu_item_menu_item_parent','2708'),(4568,3072,'_menu_item_object_id','1441'),(4569,3072,'_menu_item_object','page'),(4570,3072,'_menu_item_target',''),(4571,3072,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4572,3072,'_menu_item_xfn',''),(4573,3072,'_menu_item_url',''),(4582,3074,'_menu_item_type','post_type'),(4583,3074,'_menu_item_menu_item_parent','2708'),(4584,3074,'_menu_item_object_id','1454'),(4585,3074,'_menu_item_object','page'),(4586,3074,'_menu_item_target',''),(4587,3074,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4588,3074,'_menu_item_xfn',''),(4589,3074,'_menu_item_url',''),(4622,3079,'_menu_item_type','post_type'),(4623,3079,'_menu_item_menu_item_parent','2711'),(4624,3079,'_menu_item_object_id','1442'),(4625,3079,'_menu_item_object','page'),(4626,3079,'_menu_item_target',''),(4627,3079,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4628,3079,'_menu_item_xfn',''),(4629,3079,'_menu_item_url',''),(4630,3080,'_menu_item_type','post_type'),(4631,3080,'_menu_item_menu_item_parent','2711'),(4632,3080,'_menu_item_object_id','1444'),(4633,3080,'_menu_item_object','page'),(4634,3080,'_menu_item_target',''),(4635,3080,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4636,3080,'_menu_item_xfn',''),(4637,3080,'_menu_item_url',''),(4638,3081,'_menu_item_type','post_type'),(4639,3081,'_menu_item_menu_item_parent','2711'),(4640,3081,'_menu_item_object_id','1445'),(4641,3081,'_menu_item_object','page'),(4642,3081,'_menu_item_target',''),(4643,3081,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4644,3081,'_menu_item_xfn',''),(4645,3081,'_menu_item_url',''),(4646,3082,'_menu_item_type','post_type'),(4647,3082,'_menu_item_menu_item_parent','2711'),(4648,3082,'_menu_item_object_id','1454'),(4649,3082,'_menu_item_object','page'),(4650,3082,'_menu_item_target',''),(4651,3082,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4652,3082,'_menu_item_xfn',''),(4653,3082,'_menu_item_url',''),(4654,3083,'_menu_item_type','post_type'),(4655,3083,'_menu_item_menu_item_parent','2718'),(4656,3083,'_menu_item_object_id','1454'),(4657,3083,'_menu_item_object','page'),(4658,3083,'_menu_item_target',''),(4659,3083,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4660,3083,'_menu_item_xfn',''),(4661,3083,'_menu_item_url',''),(4662,3084,'_menu_item_type','post_type'),(4663,3084,'_menu_item_menu_item_parent','2718'),(4664,3084,'_menu_item_object_id','1441'),(4665,3084,'_menu_item_object','page'),(4666,3084,'_menu_item_target',''),(4667,3084,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4668,3084,'_menu_item_xfn',''),(4669,3084,'_menu_item_url',''),(4710,3090,'_wp_attached_file','revslider/Slider1/banner-03.jpg'),(4711,3090,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:31:\"revslider/Slider1/banner-03.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-03-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-03-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-03-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-03-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:1;}}'),(4712,3091,'_wp_attached_file','revslider/Slider1/banner-02.jpg'),(4713,3091,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:31:\"revslider/Slider1/banner-02.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-02-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-02-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-02-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-02-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:1;}}'),(4714,3092,'_wp_attached_file','revslider/Slider1/banner-01.jpg'),(4715,3092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:31:\"revslider/Slider1/banner-01.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"banner-01-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"banner-01-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"banner-01-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:1;}}'),(4727,3095,'_menu_item_type','post_type'),(4728,3095,'_menu_item_menu_item_parent','0'),(4729,3095,'_menu_item_object_id','1752'),(4730,3095,'_menu_item_object','page'),(4731,3095,'_menu_item_target',''),(4732,3095,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4733,3095,'_menu_item_xfn',''),(4734,3095,'_menu_item_url',''),(4736,3096,'_menu_item_type','post_type'),(4737,3096,'_menu_item_menu_item_parent','0'),(4738,3096,'_menu_item_object_id','1689'),(4739,3096,'_menu_item_object','page'),(4740,3096,'_menu_item_target',''),(4741,3096,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4742,3096,'_menu_item_xfn',''),(4743,3096,'_menu_item_url',''),(4745,3097,'_menu_item_type','post_type'),(4746,3097,'_menu_item_menu_item_parent','0'),(4747,3097,'_menu_item_object_id','536'),(4748,3097,'_menu_item_object','page'),(4749,3097,'_menu_item_target',''),(4750,3097,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4751,3097,'_menu_item_xfn',''),(4752,3097,'_menu_item_url',''),(4755,3097,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4756,3095,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4757,3096,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4758,536,'_edit_lock','1442284868:1'),(4762,1689,'_edit_lock','1441513515:1'),(4763,1689,'_wpb_shortcodes_custom_css','.vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}.vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}'),(4768,3123,'_edit_lock','1441403012:1'),(4769,3123,'_edit_last','1'),(4770,3123,'_wp_page_template','default'),(4771,3123,'_wpb_vc_js_status','false'),(4772,3123,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4773,3123,'slide_template','default'),(4774,3123,'plazart_desktop_column','1'),(4775,3123,'plazart_tabletportrait_column','1'),(4776,3123,'plazart_mobilelandscape_column','1'),(4777,3123,'plazart_mobileportrait_column','1'),(4778,3123,'plazart_portfolio_limit','10'),(4779,3123,'plazart_porfolio_orderby','date'),(4780,3123,'plazart_porfolio_order','desc'),(4781,3123,'plazart_paging','pagenavi'),(4782,3123,'plazart_porfolio_filter_status','show'),(4783,3123,'plazart_porfolio_filter','portfolio-tags'),(4784,3123,'plazart_portfolio_timeline_limit','6'),(4785,3123,'plazart_porfolio_timeline_orderby','date'),(4786,3123,'plazart_portfolio_timeline_order','desc'),(4787,3123,'plazart_blog_column','1'),(4788,3123,'plazart_blog_limit','10'),(4789,3123,'plazart_tzpostSidebar','0'),(4790,3123,'plazart_tzpostDate','show'),(4791,3123,'plazart_tzpostAuthor','show'),(4792,3123,'plazart_tzpostComments','show'),(4793,3123,'plazart_tzpostthumbnail','show'),(4794,3123,'plazart_tzpostexcerpt','show'),(4795,3123,'plazart_tzpostmoredetail','show'),(4796,3123,'plazart_tzpostshare','show'),(4797,3123,'plazart_event_grid_limit','6'),(4798,3123,'plazart_course_grid_limit','6'),(4799,3125,'_edit_lock','1441772504:1'),(4800,3125,'_edit_last','1'),(4801,3125,'_wp_page_template','default'),(4802,3125,'_wpb_vc_js_status','true'),(4803,3125,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1441772236944-02964ea6-300a-3\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:6:{s:9:\"post_type\";s:4:\"page\";s:9:\"max_items\";s:2:\"20\";s:13:\"element_width\";s:1:\"3\";s:7:\"orderby\";s:5:\"title\";s:7:\"grid_id\";s:36:\"vc_gid:1441772236944-02964ea6-300a-3\";s:10:\"taxonomies\";s:3:\"108\";}s:7:\"content\";s:0:\"\";}}}}'),(4804,3125,'slide_template','default'),(4805,3125,'plazart_desktop_column','1'),(4806,3125,'plazart_tabletportrait_column','1'),(4807,3125,'plazart_mobilelandscape_column','1'),(4808,3125,'plazart_mobileportrait_column','1'),(4809,3125,'plazart_portfolio_limit','10'),(4810,3125,'plazart_porfolio_orderby','date'),(4811,3125,'plazart_porfolio_order','desc'),(4812,3125,'plazart_paging','pagenavi'),(4813,3125,'plazart_porfolio_filter_status','show'),(4814,3125,'plazart_porfolio_filter','portfolio-tags'),(4815,3125,'plazart_portfolio_timeline_limit','6'),(4816,3125,'plazart_porfolio_timeline_orderby','date'),(4817,3125,'plazart_portfolio_timeline_order','desc'),(4818,3125,'plazart_blog_column','1'),(4819,3125,'plazart_blog_limit','10'),(4820,3125,'plazart_tzpostSidebar','0'),(4821,3125,'plazart_tzpostDate','show'),(4822,3125,'plazart_tzpostAuthor','show'),(4823,3125,'plazart_tzpostComments','show'),(4824,3125,'plazart_tzpostthumbnail','show'),(4825,3125,'plazart_tzpostexcerpt','show'),(4826,3125,'plazart_tzpostmoredetail','show'),(4827,3125,'plazart_tzpostshare','show'),(4828,3125,'plazart_event_grid_limit','6'),(4829,3125,'plazart_course_grid_limit','6'),(4830,3128,'_menu_item_type','post_type'),(4831,3128,'_menu_item_menu_item_parent','0'),(4832,3128,'_menu_item_object_id','3123'),(4833,3128,'_menu_item_object','page'),(4834,3128,'_menu_item_target',''),(4835,3128,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4836,3128,'_menu_item_xfn',''),(4837,3128,'_menu_item_url',''),(4839,3129,'_menu_item_type','post_type'),(4840,3129,'_menu_item_menu_item_parent','0'),(4841,3129,'_menu_item_object_id','3125'),(4842,3129,'_menu_item_object','page'),(4843,3129,'_menu_item_target',''),(4844,3129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4845,3129,'_menu_item_xfn',''),(4846,3129,'_menu_item_url',''),(4848,3128,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4849,3129,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4882,3140,'_wp_attached_file','2015/08/ESL-e1440652704406.jpg'),(4883,3140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:375;s:4:\"file\";s:30:\"2015/08/ESL-e1440652704406.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"ESL-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"ESL-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:16:\"ESL-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:15:\"ESL-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\";d:3.100000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"COOLPIX L810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1340071616;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(4884,3140,'_edit_lock','1440652604:1'),(4885,3140,'_wp_attachment_backup_sizes','a:1:{s:9:\"full-orig\";a:3:{s:5:\"width\";i:4608;s:6:\"height\";i:3456;s:4:\"file\";s:7:\"ESL.jpg\";}}'),(4886,3140,'_edit_last','1'),(4896,3129,'_megamenu','a:1:{s:4:\"type\";s:6:\"flyout\";}'),(4899,3146,'_wp_attached_file','2015/08/ets_toefl_logo.png'),(4900,3146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:861;s:6:\"height\";i:303;s:4:\"file\";s:26:\"2015/08/ets_toefl_logo.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ets_toefl_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"ets_toefl_logo-300x106.png\";s:5:\"width\";i:300;s:6:\"height\";i:106;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:26:\"ets_toefl_logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(4902,3146,'_edit_lock','1440735800:1'),(4912,1752,'_edit_lock','1442271068:1'),(4917,3175,'_wp_attached_file','2015/08/geny_favicon.png'),(4918,3175,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:31;s:6:\"height\";i:32;s:4:\"file\";s:24:\"2015/08/geny_favicon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4925,3183,'_wp_attached_file','2015/04/geny_logo_225x200.png'),(4926,3183,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:225;s:6:\"height\";i:200;s:4:\"file\";s:29:\"2015/04/geny_logo_225x200.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"geny_logo_225x200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"geny_logo_225x200-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(4927,3187,'_wp_attached_file','2015/04/geny_logo_gray.png'),(4928,3187,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:391;s:4:\"file\";s:26:\"2015/04/geny_logo_gray.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"geny_logo_gray-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"geny_logo_gray-300x267.png\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:26:\"geny_logo_gray-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(4929,3188,'_wp_attached_file','2015/04/geny_logo_gray_113x100.png'),(4930,3188,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:113;s:6:\"height\";i:100;s:4:\"file\";s:34:\"2015/04/geny_logo_gray_113x100.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(4931,3194,'_wp_attached_file','2015/08/geny_logo_white.png'),(4932,3194,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:440;s:6:\"height\";i:391;s:4:\"file\";s:27:\"2015/08/geny_logo_white.png\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"geny_logo_white-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"geny_logo_white-300x267.png\";s:5:\"width\";i:300;s:6:\"height\";i:267;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"geny_logo_white-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;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;}}'),(4933,3194,'_edit_lock','1440826306:1'),(4936,3197,'_edit_lock','1441510637:1'),(4937,3197,'_edit_last','1'),(4938,3197,'_wp_page_template','default'),(4939,3197,'_wpb_vc_js_status','true'),(4940,3197,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1441507240724-39d94b3e-588e-6\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:5:{s:9:\"post_type\";s:4:\"page\";s:9:\"max_items\";s:1:\"3\";s:7:\"orderby\";s:5:\"title\";s:7:\"grid_id\";s:36:\"vc_gid:1441507240724-39d94b3e-588e-6\";s:10:\"taxonomies\";s:3:\"107\";}s:7:\"content\";s:0:\"\";}}}}'),(4941,3197,'slide_template','default'),(4942,3197,'plazart_desktop_column','1'),(4943,3197,'plazart_tabletportrait_column','1'),(4944,3197,'plazart_mobilelandscape_column','1'),(4945,3197,'plazart_mobileportrait_column','1'),(4946,3197,'plazart_portfolio_limit','10'),(4947,3197,'plazart_porfolio_orderby','date'),(4948,3197,'plazart_porfolio_order','desc'),(4949,3197,'plazart_paging','pagenavi'),(4950,3197,'plazart_porfolio_filter_status','show'),(4951,3197,'plazart_porfolio_filter','portfolio-tags'),(4952,3197,'plazart_portfolio_timeline_limit','6'),(4953,3197,'plazart_porfolio_timeline_orderby','date'),(4954,3197,'plazart_portfolio_timeline_order','desc'),(4955,3197,'plazart_blog_column','1'),(4956,3197,'plazart_blog_limit','10'),(4957,3197,'plazart_tzpostSidebar','0'),(4958,3197,'plazart_tzpostDate','show'),(4959,3197,'plazart_tzpostAuthor','show'),(4960,3197,'plazart_tzpostComments','show'),(4961,3197,'plazart_tzpostthumbnail','show'),(4962,3197,'plazart_tzpostexcerpt','show'),(4963,3197,'plazart_tzpostmoredetail','show'),(4964,3197,'plazart_tzpostshare','show'),(4965,3197,'plazart_event_grid_limit','6'),(4966,3197,'plazart_course_grid_limit','6'),(4967,3200,'_menu_item_type','post_type'),(4968,3200,'_menu_item_menu_item_parent','3129'),(4969,3200,'_menu_item_object_id','3197'),(4970,3200,'_menu_item_object','page'),(4971,3200,'_menu_item_target',''),(4972,3200,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4973,3200,'_menu_item_xfn',''),(4974,3200,'_menu_item_url',''),(4976,3200,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(4978,3206,'_edit_lock','1442025702:1'),(4979,3206,'_edit_last','1'),(4980,3206,'_wp_page_template','default'),(4981,3206,'_wpb_vc_js_status','true'),(4982,3206,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1441512256529-2a59c92d-cafc-3\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:5:{s:9:\"post_type\";s:4:\"page\";s:9:\"max_items\";s:1:\"2\";s:7:\"orderby\";s:5:\"title\";s:7:\"grid_id\";s:36:\"vc_gid:1441512256529-2a59c92d-cafc-3\";s:10:\"taxonomies\";s:3:\"110\";}s:7:\"content\";s:0:\"\";}}}}'),(4983,3206,'slide_template','default'),(4984,3206,'plazart_desktop_column','1'),(4985,3206,'plazart_tabletportrait_column','1'),(4986,3206,'plazart_mobilelandscape_column','1'),(4987,3206,'plazart_mobileportrait_column','1'),(4988,3206,'plazart_portfolio_limit','10'),(4989,3206,'plazart_porfolio_orderby','date'),(4990,3206,'plazart_porfolio_order','desc'),(4991,3206,'plazart_paging','pagenavi'),(4992,3206,'plazart_porfolio_filter_status','show'),(4993,3206,'plazart_porfolio_filter','portfolio-tags'),(4994,3206,'plazart_portfolio_timeline_limit','6'),(4995,3206,'plazart_porfolio_timeline_orderby','date'),(4996,3206,'plazart_portfolio_timeline_order','desc'),(4997,3206,'plazart_blog_column','1'),(4998,3206,'plazart_blog_limit','10'),(4999,3206,'plazart_tzpostSidebar','0'),(5000,3206,'plazart_tzpostDate','show'),(5001,3206,'plazart_tzpostAuthor','show'),(5002,3206,'plazart_tzpostComments','show'),(5003,3206,'plazart_tzpostthumbnail','show'),(5004,3206,'plazart_tzpostexcerpt','show'),(5005,3206,'plazart_tzpostmoredetail','show'),(5006,3206,'plazart_tzpostshare','show'),(5007,3206,'plazart_event_grid_limit','6'),(5008,3206,'plazart_course_grid_limit','6'),(5009,3208,'_menu_item_type','post_type'),(5010,3208,'_menu_item_menu_item_parent','0'),(5011,3208,'_menu_item_object_id','3206'),(5012,3208,'_menu_item_object','page'),(5013,3208,'_menu_item_target',''),(5014,3208,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5015,3208,'_menu_item_xfn',''),(5016,3208,'_menu_item_url',''),(5017,3208,'_menu_item_orphaned','1440829231'),(5018,3209,'_menu_item_type','post_type'),(5019,3209,'_menu_item_menu_item_parent','3129'),(5020,3209,'_menu_item_object_id','3206'),(5021,3209,'_menu_item_object','page'),(5022,3209,'_menu_item_target',''),(5023,3209,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5024,3209,'_menu_item_xfn',''),(5025,3209,'_menu_item_url',''),(5027,3209,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(5031,3218,'_wp_attached_file','2015/05/empire-state-building-nyc-2000x919.jpg'),(5032,3218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:919;s:4:\"file\";s:46:\"2015/05/empire-state-building-nyc-2000x919.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"empire-state-building-nyc-2000x919-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"empire-state-building-nyc-2000x919-300x138.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"empire-state-building-nyc-2000x919-1024x471.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:471;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:46:\"empire-state-building-nyc-2000x919-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:1;}}'),(5033,3221,'_wp_attached_file','2015/05/35th8th.jpg'),(5034,3221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1106;s:6:\"height\";i:553;s:4:\"file\";s:19:\"2015/05/35th8th.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"35th8th-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"35th8th-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:20:\"35th8th-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:19:\"35th8th-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\";d:3.100000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"COOLPIX L810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1340696484;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(5035,3221,'_wp_attachment_image_alt','35th street & 8th avenue'),(5039,3175,'_wp_attachment_image_alt','geny favicon'),(5040,3226,'_wp_attached_file','2015/08/geny_logo_circle_gold_nav_120x120.png'),(5041,3226,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"file\";s:45:\"2015/08/geny_logo_circle_gold_nav_120x120.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5042,3228,'_wp_attached_file','2015/08/geny_logo_white_footer.png'),(5043,3228,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:121;s:6:\"height\";i:108;s:4:\"file\";s:34:\"2015/08/geny_logo_white_footer.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5044,3229,'_wp_attached_file','2015/05/35th8th1.jpg'),(5045,3229,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1106;s:6:\"height\";i:456;s:4:\"file\";s:20:\"2015/05/35th8th1.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"35th8th1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"35th8th1-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"35th8th1-1024x422.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:422;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:20:\"35th8th1-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\";d:3.100000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"COOLPIX L810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1340696484;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:6:\"0.0025\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(5715,3290,'_menu_item_type','custom'),(5716,3290,'_menu_item_menu_item_parent','0'),(5717,3290,'_menu_item_object_id','3290'),(5718,3290,'_menu_item_object','custom'),(5719,3290,'_menu_item_target',''),(5720,3290,'_menu_item_classes','a:2:{i:0;s:7:\"xl-list\";i:1;s:11:\"navmenu-1ao\";}'),(5721,3290,'_menu_item_xfn',''),(5722,3290,'_menu_item_url','#insertlist'),(5723,3290,'_menu_item_orphaned','1441034698'),(5724,3291,'_menu_item_type','custom'),(5725,3291,'_menu_item_menu_item_parent','0'),(5726,3291,'_menu_item_object_id','3291'),(5727,3291,'_menu_item_object','custom'),(5728,3291,'_menu_item_target',''),(5729,3291,'_menu_item_classes','a:1:{i:0;s:8:\"xlsplist\";}'),(5730,3291,'_menu_item_xfn',''),(5731,3291,'_menu_item_url','#insertpagelist'),(5732,3291,'_menu_item_orphaned','1441034698'),(5733,3292,'_menu_item_type','custom'),(5734,3292,'_menu_item_menu_item_parent','0'),(5735,3292,'_menu_item_object_id','3292'),(5736,3292,'_menu_item_object','custom'),(5737,3292,'_menu_item_target',''),(5738,3292,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5739,3292,'_menu_item_xfn',''),(5740,3292,'_menu_item_url','#insertmenu'),(5741,3292,'_menu_item_orphaned','1441034698'),(5752,3295,'_menu_item_type','custom'),(5753,3295,'_menu_item_menu_item_parent','0'),(5754,3295,'_menu_item_object_id','3295'),(5755,3295,'_menu_item_object','custom'),(5756,3295,'_menu_item_target',''),(5757,3295,'_menu_item_classes','a:2:{i:0;s:7:\"xl-list\";i:1;s:11:\"navmenu-1ao\";}'),(5758,3295,'_menu_item_xfn',''),(5759,3295,'_menu_item_url','#insertlist'),(5760,3295,'_menu_item_orphaned','1441038155'),(5761,3296,'_menu_item_type','custom'),(5762,3296,'_menu_item_menu_item_parent','0'),(5763,3296,'_menu_item_object_id','3296'),(5764,3296,'_menu_item_object','custom'),(5765,3296,'_menu_item_target',''),(5766,3296,'_menu_item_classes','a:1:{i:0;s:8:\"xlsplist\";}'),(5767,3296,'_menu_item_xfn',''),(5768,3296,'_menu_item_url','#insertpagelist'),(5769,3296,'_menu_item_orphaned','1441038155'),(5770,3297,'_menu_item_type','custom'),(5771,3297,'_menu_item_menu_item_parent','0'),(5772,3297,'_menu_item_object_id','3297'),(5773,3297,'_menu_item_object','custom'),(5774,3297,'_menu_item_target',''),(5775,3297,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5776,3297,'_menu_item_xfn',''),(5777,3297,'_menu_item_url','#insertmenu'),(5778,3297,'_menu_item_orphaned','1441038155'),(5779,3298,'_menu_item_type','custom'),(5780,3298,'_menu_item_menu_item_parent','0'),(5781,3298,'_menu_item_object_id','3298'),(5782,3298,'_menu_item_object','custom'),(5783,3298,'_menu_item_target',''),(5784,3298,'_menu_item_classes','a:2:{i:0;s:7:\"xl-list\";i:1;s:11:\"navmenu-1ao\";}'),(5785,3298,'_menu_item_xfn',''),(5786,3298,'_menu_item_url','#insertlist'),(5787,3298,'_menu_item_orphaned','1441038166'),(5788,3299,'_menu_item_type','custom'),(5789,3299,'_menu_item_menu_item_parent','0'),(5790,3299,'_menu_item_object_id','3299'),(5791,3299,'_menu_item_object','custom'),(5792,3299,'_menu_item_target',''),(5793,3299,'_menu_item_classes','a:1:{i:0;s:8:\"xlsplist\";}'),(5794,3299,'_menu_item_xfn',''),(5795,3299,'_menu_item_url','#insertpagelist'),(5796,3299,'_menu_item_orphaned','1441038166'),(5797,3300,'_menu_item_type','custom'),(5798,3300,'_menu_item_menu_item_parent','0'),(5799,3300,'_menu_item_object_id','3300'),(5800,3300,'_menu_item_object','custom'),(5801,3300,'_menu_item_target',''),(5802,3300,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(5803,3300,'_menu_item_xfn',''),(5804,3300,'_menu_item_url','#insertmenu'),(5805,3300,'_menu_item_orphaned','1441038166'),(5812,3304,'_wp_page_template',''),(5814,3304,'_wpb_vc_js_status','true'),(5815,3304,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(5816,3304,'slide_template','default'),(5817,3304,'plazart_desktop_column','1'),(5818,3304,'plazart_tabletportrait_column','1'),(5819,3304,'plazart_mobilelandscape_column','1'),(5820,3304,'plazart_mobileportrait_column','1'),(5821,3304,'plazart_portfolio_limit','10'),(5822,3304,'plazart_porfolio_orderby','date'),(5823,3304,'plazart_porfolio_order','desc'),(5824,3304,'plazart_paging','pagenavi'),(5825,3304,'plazart_porfolio_filter_status','show'),(5826,3304,'plazart_porfolio_filter','portfolio-tags'),(5827,3304,'plazart_portfolio_timeline_limit','6'),(5828,3304,'plazart_porfolio_timeline_orderby','date'),(5829,3304,'plazart_portfolio_timeline_order','desc'),(5830,3304,'plazart_blog_column','1'),(5831,3304,'plazart_blog_limit','10'),(5832,3304,'plazart_tzpostSidebar','0'),(5833,3304,'plazart_tzpostDate','show'),(5834,3304,'plazart_tzpostAuthor','show'),(5835,3304,'plazart_tzpostComments','show'),(5836,3304,'plazart_tzpostthumbnail','show'),(5837,3304,'plazart_tzpostexcerpt','show'),(5838,3304,'plazart_tzpostmoredetail','show'),(5839,3304,'plazart_tzpostshare','show'),(5840,3304,'plazart_event_grid_limit','6'),(5841,3304,'plazart_course_grid_limit','6'),(5842,3304,'_wpb_shortcodes_custom_css','.vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}.vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}'),(5843,3304,'lang-zh_cn','3284'),(5844,3304,'_edit_lock','1441156808:1'),(5845,3304,'_edit_last','1'),(5868,3318,'_wp_page_template',''),(5869,3318,'_icl_lang_duplicate_of','3132'),(5870,3318,'_wpb_vc_js_status','true'),(5871,3318,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(5872,3318,'slide_template','default'),(5873,3318,'plazart_desktop_column','1'),(5874,3318,'plazart_tabletportrait_column','1'),(5875,3318,'plazart_mobilelandscape_column','1'),(5876,3318,'plazart_mobileportrait_column','1'),(5877,3318,'plazart_portfolio_limit','10'),(5878,3318,'plazart_porfolio_orderby','date'),(5879,3318,'plazart_porfolio_order','desc'),(5880,3318,'plazart_paging','pagenavi'),(5881,3318,'plazart_porfolio_filter_status','show'),(5882,3318,'plazart_porfolio_filter','portfolio-tags'),(5883,3318,'plazart_portfolio_timeline_limit','6'),(5884,3318,'plazart_porfolio_timeline_orderby','date'),(5885,3318,'plazart_portfolio_timeline_order','desc'),(5886,3318,'plazart_blog_column','1'),(5887,3318,'plazart_blog_limit','10'),(5888,3318,'plazart_tzpostSidebar','0'),(5889,3318,'plazart_tzpostDate','show'),(5890,3318,'plazart_tzpostAuthor','show'),(5891,3318,'plazart_tzpostComments','show'),(5892,3318,'plazart_tzpostthumbnail','show'),(5893,3318,'plazart_tzpostexcerpt','show'),(5894,3318,'plazart_tzpostmoredetail','show'),(5895,3318,'plazart_tzpostshare','show'),(5896,3318,'plazart_event_grid_limit','6'),(5897,3318,'plazart_course_grid_limit','6'),(5898,3318,'_wpb_shortcodes_custom_css','.vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}.vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}'),(5899,3318,'lang-zh_cn','3284'),(5900,3318,'_edit_lock','1441159376:1'),(5901,3318,'_edit_last','1'),(5902,3321,'_wp_page_template',''),(5903,3321,'_icl_lang_duplicate_of','3132'),(5904,3321,'_wpb_vc_js_status','true'),(5905,3321,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(5906,3321,'slide_template','default'),(5907,3321,'plazart_desktop_column','1'),(5908,3321,'plazart_tabletportrait_column','1'),(5909,3321,'plazart_mobilelandscape_column','1'),(5910,3321,'plazart_mobileportrait_column','1'),(5911,3321,'plazart_portfolio_limit','10'),(5912,3321,'plazart_porfolio_orderby','date'),(5913,3321,'plazart_porfolio_order','desc'),(5914,3321,'plazart_paging','pagenavi'),(5915,3321,'plazart_porfolio_filter_status','show'),(5916,3321,'plazart_porfolio_filter','portfolio-tags'),(5917,3321,'plazart_portfolio_timeline_limit','6'),(5918,3321,'plazart_porfolio_timeline_orderby','date'),(5919,3321,'plazart_portfolio_timeline_order','desc'),(5920,3321,'plazart_blog_column','1'),(5921,3321,'plazart_blog_limit','10'),(5922,3321,'plazart_tzpostSidebar','0'),(5923,3321,'plazart_tzpostDate','show'),(5924,3321,'plazart_tzpostAuthor','show'),(5925,3321,'plazart_tzpostComments','show'),(5926,3321,'plazart_tzpostthumbnail','show'),(5927,3321,'plazart_tzpostexcerpt','show'),(5928,3321,'plazart_tzpostmoredetail','show'),(5929,3321,'plazart_tzpostshare','show'),(5930,3321,'plazart_event_grid_limit','6'),(5931,3321,'plazart_course_grid_limit','6'),(5932,3321,'_wpb_shortcodes_custom_css','.vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}.vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}.vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}'),(5933,3321,'lang-zh_cn','3284'),(5934,3321,'_edit_lock','1441159668:1'),(5935,3321,'_edit_last','1'),(5940,3347,'_wp_attached_file','2015/06/geny_logo_simple_white_70x75.png'),(5941,3347,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:71;s:6:\"height\";i:75;s:4:\"file\";s:40:\"2015/06/geny_logo_simple_white_70x75.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(5957,1752,'_post_restored_from','a:3:{s:20:\"restored_revision_id\";i:3358;s:16:\"restored_by_user\";i:1;s:13:\"restored_time\";i:1441211413;}'),(5992,3371,'_wp_attached_file','2015/06/Classroom_3.jpg'),(5993,3371,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2015/06/Classroom_3.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Classroom_3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Classroom_3-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Classroom_3-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\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1336430621;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:8:\"0.003125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(5996,3373,'_wp_attached_file','2015/06/Computer_Room_1.jpg'),(5997,3373,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:27:\"2015/06/Computer_Room_1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Computer_Room_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Computer_Room_1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"Computer_Room_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:11:{s:8:\"aperture\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1336416651;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"21\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(5998,3374,'_wp_attached_file','2015/06/Elevator_Hall_1.jpg'),(5999,3374,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:27:\"2015/06/Elevator_Hall_1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Elevator_Hall_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Elevator_Hall_1-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"Elevator_Hall_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:11:{s:8:\"aperture\";d:3.100000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"COOLPIX L810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1340695483;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6000,3375,'_wp_attached_file','2015/06/Elevetor_Hall_2.jpg'),(6001,3375,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:27:\"2015/06/Elevetor_Hall_2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Elevetor_Hall_2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Elevetor_Hall_2-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:27:\"Elevetor_Hall_2-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\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1336416803;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6002,3376,'_wp_attached_file','2015/06/Library.jpg'),(6003,3376,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:19:\"2015/06/Library.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Library-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"Library-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:19:\"Library-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\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1336416422;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:4:\"0.01\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6004,3377,'_wp_attached_file','2015/06/Lobby2.jpg'),(6005,3377,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:18:\"2015/06/Lobby2.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"Lobby2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"Lobby2-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:18:\"Lobby2-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\";d:3.100000000000000088817841970012523233890533447265625;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"COOLPIX L810\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1340680922;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"4\";s:3:\"iso\";s:3:\"400\";s:13:\"shutter_speed\";s:15:\"0.0333333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6006,3378,'_wp_attached_file','2015/08/Classroom_5.jpg'),(6007,3378,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:700;s:4:\"file\";s:23:\"2015/08/Classroom_5.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Classroom_5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Classroom_5-300x210.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:210;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:23:\"Classroom_5-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\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1336430633;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6009,3382,'_edit_lock','1441483951:1'),(6010,3382,'_edit_last','1'),(6011,3383,'_edit_lock','1441404195:1'),(6012,3383,'_edit_last','1'),(6013,3383,'_wp_page_template','default'),(6014,3383,'_wpb_vc_js_status','true'),(6015,3383,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6016,3383,'slide_template','default'),(6017,3383,'plazart_desktop_column','1'),(6018,3383,'plazart_tabletportrait_column','1'),(6019,3383,'plazart_mobilelandscape_column','1'),(6020,3383,'plazart_mobileportrait_column','1'),(6021,3383,'plazart_portfolio_limit','10'),(6022,3383,'plazart_porfolio_orderby','date'),(6023,3383,'plazart_porfolio_order','desc'),(6024,3383,'plazart_paging','pagenavi'),(6025,3383,'plazart_porfolio_filter_status','show'),(6026,3383,'plazart_porfolio_filter','portfolio-tags'),(6027,3383,'plazart_portfolio_timeline_limit','6'),(6028,3383,'plazart_porfolio_timeline_orderby','date'),(6029,3383,'plazart_portfolio_timeline_order','desc'),(6030,3383,'plazart_blog_column','1'),(6031,3383,'plazart_blog_limit','10'),(6032,3383,'plazart_tzpostSidebar','0'),(6033,3383,'plazart_tzpostDate','show'),(6034,3383,'plazart_tzpostAuthor','show'),(6035,3383,'plazart_tzpostComments','show'),(6036,3383,'plazart_tzpostthumbnail','show'),(6037,3383,'plazart_tzpostexcerpt','show'),(6038,3383,'plazart_tzpostmoredetail','show'),(6039,3383,'plazart_tzpostshare','show'),(6040,3383,'plazart_event_grid_limit','6'),(6041,3383,'plazart_course_grid_limit','6'),(6042,3385,'_menu_item_type','post_type'),(6043,3385,'_menu_item_menu_item_parent','3128'),(6044,3385,'_menu_item_object_id','3383'),(6045,3385,'_menu_item_object','page'),(6046,3385,'_menu_item_target',''),(6047,3385,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6048,3385,'_menu_item_xfn',''),(6049,3385,'_menu_item_url',''),(6051,3385,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6052,3382,'_wp_page_template','default'),(6053,3382,'_wpb_vc_js_status','true'),(6054,3382,'slide_template','default'),(6055,3382,'plazart_desktop_column','1'),(6056,3382,'plazart_tabletportrait_column','1'),(6057,3382,'plazart_mobilelandscape_column','1'),(6058,3382,'plazart_mobileportrait_column','1'),(6059,3382,'plazart_portfolio_limit','10'),(6060,3382,'plazart_porfolio_orderby','date'),(6061,3382,'plazart_porfolio_order','desc'),(6062,3382,'plazart_paging','pagenavi'),(6063,3382,'plazart_porfolio_filter_status','show'),(6064,3382,'plazart_porfolio_filter','portfolio-tags'),(6065,3382,'plazart_portfolio_timeline_limit','6'),(6066,3382,'plazart_porfolio_timeline_orderby','date'),(6067,3382,'plazart_portfolio_timeline_order','desc'),(6068,3382,'plazart_blog_column','1'),(6069,3382,'plazart_blog_limit','10'),(6070,3382,'plazart_tzpostSidebar','0'),(6071,3382,'plazart_tzpostDate','show'),(6072,3382,'plazart_tzpostAuthor','show'),(6073,3382,'plazart_tzpostComments','show'),(6074,3382,'plazart_tzpostthumbnail','show'),(6075,3382,'plazart_tzpostexcerpt','show'),(6076,3382,'plazart_tzpostmoredetail','show'),(6077,3382,'plazart_tzpostshare','show'),(6078,3382,'plazart_event_grid_limit','6'),(6079,3382,'plazart_course_grid_limit','6'),(6080,3382,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6081,3391,'_menu_item_type','post_type'),(6082,3391,'_menu_item_menu_item_parent','3128'),(6083,3391,'_menu_item_object_id','3382'),(6084,3391,'_menu_item_object','page'),(6085,3391,'_menu_item_target',''),(6086,3391,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6087,3391,'_menu_item_xfn',''),(6088,3391,'_menu_item_url',''),(6090,3391,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6091,3393,'_menu_item_type','post_type'),(6092,3393,'_menu_item_menu_item_parent','0'),(6093,3393,'_menu_item_object_id','3206'),(6094,3393,'_menu_item_object','page'),(6095,3393,'_menu_item_target',''),(6096,3393,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6097,3393,'_menu_item_xfn',''),(6098,3393,'_menu_item_url',''),(6100,3393,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6152,3382,'_wpb_post_custom_css','ul li {\r\n list-style:disc;\r\n}\r\nul{\r\n padding-left:50px;\r\n}\r\nh5{\r\n text-indent:40px;\r\n}'),(6153,3409,'_menu_item_type','post_type'),(6154,3409,'_menu_item_menu_item_parent','0'),(6155,3409,'_menu_item_object_id','3197'),(6156,3409,'_menu_item_object','page'),(6157,3409,'_menu_item_target',''),(6158,3409,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6159,3409,'_menu_item_xfn',''),(6160,3409,'_menu_item_url',''),(6171,3409,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6173,3393,'_megamenu','a:1:{s:4:\"type\";s:6:\"flyout\";}'),(6174,3097,'_megamenu','a:1:{s:4:\"type\";s:6:\"flyout\";}'),(6175,3128,'_megamenu','a:1:{s:4:\"type\";s:6:\"flyout\";}'),(6213,3415,'_edit_lock','1441478495:1'),(6214,3415,'_edit_last','1'),(6215,3415,'_wp_page_template','default'),(6216,3415,'_wpb_vc_js_status','true'),(6217,3415,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6218,3415,'slide_template','default'),(6219,3415,'plazart_desktop_column','1'),(6220,3415,'plazart_tabletportrait_column','1'),(6221,3415,'plazart_mobilelandscape_column','1'),(6222,3415,'plazart_mobileportrait_column','1'),(6223,3415,'plazart_portfolio_limit','10'),(6224,3415,'plazart_porfolio_orderby','date'),(6225,3415,'plazart_porfolio_order','desc'),(6226,3415,'plazart_paging','pagenavi'),(6227,3415,'plazart_porfolio_filter_status','show'),(6228,3415,'plazart_porfolio_filter','portfolio-tags'),(6229,3415,'plazart_portfolio_timeline_limit','6'),(6230,3415,'plazart_porfolio_timeline_orderby','date'),(6231,3415,'plazart_portfolio_timeline_order','desc'),(6232,3415,'plazart_blog_column','1'),(6233,3415,'plazart_blog_limit','10'),(6234,3415,'plazart_tzpostSidebar','0'),(6235,3415,'plazart_tzpostDate','show'),(6236,3415,'plazart_tzpostAuthor','show'),(6237,3415,'plazart_tzpostComments','show'),(6238,3415,'plazart_tzpostthumbnail','show'),(6239,3415,'plazart_tzpostexcerpt','show'),(6240,3415,'plazart_tzpostmoredetail','show'),(6241,3415,'plazart_tzpostshare','show'),(6242,3415,'plazart_event_grid_limit','6'),(6243,3415,'plazart_course_grid_limit','6'),(6244,3415,'_wpb_shortcodes_custom_css','.vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}'),(6245,3415,'_dp_original','3206'),(6246,3416,'_edit_lock','1441478495:1'),(6247,3416,'_edit_last','1'),(6248,3416,'_wp_page_template','default'),(6249,3416,'_wpb_vc_js_status','true'),(6250,3416,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6251,3416,'slide_template','default'),(6252,3416,'plazart_desktop_column','1'),(6253,3416,'plazart_tabletportrait_column','1'),(6254,3416,'plazart_mobilelandscape_column','1'),(6255,3416,'plazart_mobileportrait_column','1'),(6256,3416,'plazart_portfolio_limit','10'),(6257,3416,'plazart_porfolio_orderby','date'),(6258,3416,'plazart_porfolio_order','desc'),(6259,3416,'plazart_paging','pagenavi'),(6260,3416,'plazart_porfolio_filter_status','show'),(6261,3416,'plazart_porfolio_filter','portfolio-tags'),(6262,3416,'plazart_portfolio_timeline_limit','6'),(6263,3416,'plazart_porfolio_timeline_orderby','date'),(6264,3416,'plazart_portfolio_timeline_order','desc'),(6265,3416,'plazart_blog_column','1'),(6266,3416,'plazart_blog_limit','10'),(6267,3416,'plazart_tzpostSidebar','0'),(6268,3416,'plazart_tzpostDate','show'),(6269,3416,'plazart_tzpostAuthor','show'),(6270,3416,'plazart_tzpostComments','show'),(6271,3416,'plazart_tzpostthumbnail','show'),(6272,3416,'plazart_tzpostexcerpt','show'),(6273,3416,'plazart_tzpostmoredetail','show'),(6274,3416,'plazart_tzpostshare','show'),(6275,3416,'plazart_event_grid_limit','6'),(6276,3416,'plazart_course_grid_limit','6'),(6277,3416,'_wpb_shortcodes_custom_css','.vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}'),(6278,3416,'_dp_original','3206'),(6279,3417,'_edit_lock','1442281465:1'),(6280,3417,'_edit_last','1'),(6281,3417,'_wp_page_template','default'),(6282,3417,'_wpb_vc_js_status','true'),(6283,3417,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6284,3417,'slide_template','default'),(6285,3417,'plazart_desktop_column','1'),(6286,3417,'plazart_tabletportrait_column','1'),(6287,3417,'plazart_mobilelandscape_column','1'),(6288,3417,'plazart_mobileportrait_column','1'),(6289,3417,'plazart_portfolio_limit','10'),(6290,3417,'plazart_porfolio_orderby','date'),(6291,3417,'plazart_porfolio_order','desc'),(6292,3417,'plazart_paging','pagenavi'),(6293,3417,'plazart_porfolio_filter_status','show'),(6294,3417,'plazart_porfolio_filter','portfolio-tags'),(6295,3417,'plazart_portfolio_timeline_limit','6'),(6296,3417,'plazart_porfolio_timeline_orderby','date'),(6297,3417,'plazart_portfolio_timeline_order','desc'),(6298,3417,'plazart_blog_column','1'),(6299,3417,'plazart_blog_limit','10'),(6300,3417,'plazart_tzpostSidebar','0'),(6301,3417,'plazart_tzpostDate','show'),(6302,3417,'plazart_tzpostAuthor','show'),(6303,3417,'plazart_tzpostComments','show'),(6304,3417,'plazart_tzpostthumbnail','show'),(6305,3417,'plazart_tzpostexcerpt','show'),(6306,3417,'plazart_tzpostmoredetail','show'),(6307,3417,'plazart_tzpostshare','show'),(6308,3417,'plazart_event_grid_limit','6'),(6309,3417,'plazart_course_grid_limit','6'),(6311,3417,'_dp_original','3206'),(6312,3419,'_edit_lock','1442281609:1'),(6313,3419,'_edit_last','1'),(6314,3419,'_wp_page_template','default'),(6315,3419,'_wpb_vc_js_status','true'),(6316,3419,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6317,3419,'slide_template','default'),(6318,3419,'plazart_desktop_column','1'),(6319,3419,'plazart_tabletportrait_column','1'),(6320,3419,'plazart_mobilelandscape_column','1'),(6321,3419,'plazart_mobileportrait_column','1'),(6322,3419,'plazart_portfolio_limit','10'),(6323,3419,'plazart_porfolio_orderby','date'),(6324,3419,'plazart_porfolio_order','desc'),(6325,3419,'plazart_paging','pagenavi'),(6326,3419,'plazart_porfolio_filter_status','show'),(6327,3419,'plazart_porfolio_filter','portfolio-tags'),(6328,3419,'plazart_portfolio_timeline_limit','6'),(6329,3419,'plazart_porfolio_timeline_orderby','date'),(6330,3419,'plazart_portfolio_timeline_order','desc'),(6331,3419,'plazart_blog_column','1'),(6332,3419,'plazart_blog_limit','10'),(6333,3419,'plazart_tzpostSidebar','0'),(6334,3419,'plazart_tzpostDate','show'),(6335,3419,'plazart_tzpostAuthor','show'),(6336,3419,'plazart_tzpostComments','show'),(6337,3419,'plazart_tzpostthumbnail','show'),(6338,3419,'plazart_tzpostexcerpt','show'),(6339,3419,'plazart_tzpostmoredetail','show'),(6340,3419,'plazart_tzpostshare','show'),(6341,3419,'plazart_event_grid_limit','6'),(6342,3419,'plazart_course_grid_limit','6'),(6344,3419,'_dp_original','3206'),(6345,3421,'_menu_item_type','post_type'),(6346,3421,'_menu_item_menu_item_parent','3393'),(6347,3421,'_menu_item_object_id','3419'),(6348,3421,'_menu_item_object','page'),(6349,3421,'_menu_item_target',''),(6350,3421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6351,3421,'_menu_item_xfn',''),(6352,3421,'_menu_item_url',''),(6354,3422,'_menu_item_type','post_type'),(6355,3422,'_menu_item_menu_item_parent','3393'),(6356,3422,'_menu_item_object_id','3417'),(6357,3422,'_menu_item_object','page'),(6358,3422,'_menu_item_target',''),(6359,3422,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6360,3422,'_menu_item_xfn',''),(6361,3422,'_menu_item_url',''),(6363,3422,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6364,3421,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6369,3424,'_wp_attached_file','2015/08/allied-health-program-img-1-350x250.jpg'),(6370,3424,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:47:\"2015/08/allied-health-program-img-1-350x250.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:47:\"allied-health-program-img-1-350x250-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:\"allied-health-program-img-1-350x250-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:47:\"allied-health-program-img-1-350x250-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\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:55:\"Smiling female doctor with her teamates in the hospital\";s:17:\"created_timestamp\";i:946684866;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"185\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.008\";s:5:\"title\";s:39:\"Smiling female doctor with her teamates\";s:11:\"orientation\";i:1;}}'),(6375,3417,'_wpb_post_custom_css','h3{\r\n color:#006eb4;\r\n}'),(6376,3417,'_wpb_shortcodes_custom_css','.vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}'),(6377,3419,'_wpb_shortcodes_custom_css','.vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}'),(6378,3419,'_wpb_post_custom_css','h3{\r\n color:#006eb4;\r\n}'),(6412,3197,'_wpb_post_custom_css','h3{\r\n color:#826744;\r\n}\r\n\r\ncourse-list-box{\r\n max-height:250px;\r\n}'),(6413,3435,'_edit_lock','1442264081:1'),(6414,3435,'_edit_last','1'),(6415,3435,'_wp_page_template','default'),(6416,3435,'_wpb_vc_js_status','true'),(6417,3435,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6418,3435,'slide_template','default'),(6419,3435,'plazart_desktop_column','1'),(6420,3435,'plazart_tabletportrait_column','1'),(6421,3435,'plazart_mobilelandscape_column','1'),(6422,3435,'plazart_mobileportrait_column','1'),(6423,3435,'plazart_portfolio_limit','10'),(6424,3435,'plazart_porfolio_orderby','date'),(6425,3435,'plazart_porfolio_order','desc'),(6426,3435,'plazart_paging','pagenavi'),(6427,3435,'plazart_porfolio_filter_status','show'),(6428,3435,'plazart_porfolio_filter','portfolio-tags'),(6429,3435,'plazart_portfolio_timeline_limit','6'),(6430,3435,'plazart_porfolio_timeline_orderby','date'),(6431,3435,'plazart_portfolio_timeline_order','desc'),(6432,3435,'plazart_blog_column','1'),(6433,3435,'plazart_blog_limit','10'),(6434,3435,'plazart_tzpostSidebar','0'),(6435,3435,'plazart_tzpostDate','show'),(6436,3435,'plazart_tzpostAuthor','show'),(6437,3435,'plazart_tzpostComments','show'),(6438,3435,'plazart_tzpostthumbnail','show'),(6439,3435,'plazart_tzpostexcerpt','show'),(6440,3435,'plazart_tzpostmoredetail','show'),(6441,3435,'plazart_tzpostshare','show'),(6442,3435,'plazart_event_grid_limit','6'),(6443,3435,'plazart_course_grid_limit','6'),(6444,3435,'_wpb_shortcodes_custom_css','.vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}'),(6445,3435,'_wpb_post_custom_css','h3{\r\n color:#826744;\r\n}'),(6446,3435,'_dp_original','3197'),(6447,3437,'_edit_lock','1442104551:1'),(6448,3437,'_edit_last','1'),(6449,3437,'_wp_page_template','default'),(6450,3437,'_wpb_vc_js_status','true'),(6451,3437,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6452,3437,'slide_template','default'),(6453,3437,'plazart_desktop_column','1'),(6454,3437,'plazart_tabletportrait_column','1'),(6455,3437,'plazart_mobilelandscape_column','1'),(6456,3437,'plazart_mobileportrait_column','1'),(6457,3437,'plazart_portfolio_limit','10'),(6458,3437,'plazart_porfolio_orderby','date'),(6459,3437,'plazart_porfolio_order','desc'),(6460,3437,'plazart_paging','pagenavi'),(6461,3437,'plazart_porfolio_filter_status','show'),(6462,3437,'plazart_porfolio_filter','portfolio-tags'),(6463,3437,'plazart_portfolio_timeline_limit','6'),(6464,3437,'plazart_porfolio_timeline_orderby','date'),(6465,3437,'plazart_portfolio_timeline_order','desc'),(6466,3437,'plazart_blog_column','1'),(6467,3437,'plazart_blog_limit','10'),(6468,3437,'plazart_tzpostSidebar','0'),(6469,3437,'plazart_tzpostDate','show'),(6470,3437,'plazart_tzpostAuthor','show'),(6471,3437,'plazart_tzpostComments','show'),(6472,3437,'plazart_tzpostthumbnail','show'),(6473,3437,'plazart_tzpostexcerpt','show'),(6474,3437,'plazart_tzpostmoredetail','show'),(6475,3437,'plazart_tzpostshare','show'),(6476,3437,'plazart_event_grid_limit','6'),(6477,3437,'plazart_course_grid_limit','6'),(6478,3437,'_wpb_shortcodes_custom_css','.vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}'),(6479,3437,'_wpb_post_custom_css','h3{\r\n color:#826744;\r\n}'),(6481,3437,'_dp_original','3435'),(6482,3440,'_menu_item_type','post_type'),(6483,3440,'_menu_item_menu_item_parent','3409'),(6484,3440,'_menu_item_object_id','3437'),(6485,3440,'_menu_item_object','page'),(6486,3440,'_menu_item_target',''),(6487,3440,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6488,3440,'_menu_item_xfn',''),(6489,3440,'_menu_item_url',''),(6491,3441,'_menu_item_type','post_type'),(6492,3441,'_menu_item_menu_item_parent','3409'),(6493,3441,'_menu_item_object_id','3435'),(6494,3441,'_menu_item_object','page'),(6495,3441,'_menu_item_target',''),(6496,3441,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6497,3441,'_menu_item_xfn',''),(6498,3441,'_menu_item_url',''),(6500,3441,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6501,3440,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6502,3443,'_edit_lock','1442274048:1'),(6503,3443,'_edit_last','1'),(6504,3443,'_wp_page_template','default'),(6505,3443,'_wpb_vc_js_status','true'),(6506,3443,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6507,3443,'slide_template','default'),(6508,3443,'plazart_desktop_column','1'),(6509,3443,'plazart_tabletportrait_column','1'),(6510,3443,'plazart_mobilelandscape_column','1'),(6511,3443,'plazart_mobileportrait_column','1'),(6512,3443,'plazart_portfolio_limit','10'),(6513,3443,'plazart_porfolio_orderby','date'),(6514,3443,'plazart_porfolio_order','desc'),(6515,3443,'plazart_paging','pagenavi'),(6516,3443,'plazart_porfolio_filter_status','show'),(6517,3443,'plazart_porfolio_filter','portfolio-tags'),(6518,3443,'plazart_portfolio_timeline_limit','6'),(6519,3443,'plazart_porfolio_timeline_orderby','date'),(6520,3443,'plazart_portfolio_timeline_order','desc'),(6521,3443,'plazart_blog_column','1'),(6522,3443,'plazart_blog_limit','10'),(6523,3443,'plazart_tzpostSidebar','0'),(6524,3443,'plazart_tzpostDate','show'),(6525,3443,'plazart_tzpostAuthor','show'),(6526,3443,'plazart_tzpostComments','show'),(6527,3443,'plazart_tzpostthumbnail','show'),(6528,3443,'plazart_tzpostexcerpt','show'),(6529,3443,'plazart_tzpostmoredetail','show'),(6530,3443,'plazart_tzpostshare','show'),(6531,3443,'plazart_event_grid_limit','6'),(6532,3443,'plazart_course_grid_limit','6'),(6533,3443,'_wpb_shortcodes_custom_css','.vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}'),(6534,3443,'_wpb_post_custom_css','h3{\r\n color:#826744;\r\n}'),(6535,3443,'_dp_original','3197'),(6536,3446,'_menu_item_type','post_type'),(6537,3446,'_menu_item_menu_item_parent','3409'),(6538,3446,'_menu_item_object_id','3443'),(6539,3446,'_menu_item_object','page'),(6540,3446,'_menu_item_target',''),(6541,3446,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6542,3446,'_menu_item_xfn',''),(6543,3446,'_menu_item_url',''),(6545,3446,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6548,3448,'_edit_lock','1442264097:1'),(6549,3448,'_edit_last','1'),(6550,3448,'_wp_page_template','default'),(6551,3448,'_wpb_vc_js_status','true'),(6552,3448,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6553,3448,'slide_template','default'),(6554,3448,'plazart_desktop_column','1'),(6555,3448,'plazart_tabletportrait_column','1'),(6556,3448,'plazart_mobilelandscape_column','1'),(6557,3448,'plazart_mobileportrait_column','1'),(6558,3448,'plazart_portfolio_limit','10'),(6559,3448,'plazart_porfolio_orderby','date'),(6560,3448,'plazart_porfolio_order','desc'),(6561,3448,'plazart_paging','pagenavi'),(6562,3448,'plazart_porfolio_filter_status','show'),(6563,3448,'plazart_porfolio_filter','portfolio-tags'),(6564,3448,'plazart_portfolio_timeline_limit','6'),(6565,3448,'plazart_porfolio_timeline_orderby','date'),(6566,3448,'plazart_portfolio_timeline_order','desc'),(6567,3448,'plazart_blog_column','1'),(6568,3448,'plazart_blog_limit','10'),(6569,3448,'plazart_tzpostSidebar','0'),(6570,3448,'plazart_tzpostDate','show'),(6571,3448,'plazart_tzpostAuthor','show'),(6572,3448,'plazart_tzpostComments','show'),(6573,3448,'plazart_tzpostthumbnail','show'),(6574,3448,'plazart_tzpostexcerpt','show'),(6575,3448,'plazart_tzpostmoredetail','show'),(6576,3448,'plazart_tzpostshare','show'),(6577,3448,'plazart_event_grid_limit','6'),(6578,3448,'plazart_course_grid_limit','6'),(6580,3448,'_wpb_shortcodes_custom_css','.vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}'),(6581,3448,'_wpb_post_custom_css','h3{\r\n color:#e6960a;\r\n}'),(6582,3448,'_dp_original','3419'),(6618,3453,'_edit_lock','1441511796:1'),(6619,3453,'_edit_last','1'),(6620,3453,'_wp_page_template','default'),(6621,3453,'_wpb_vc_js_status','true'),(6622,3453,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6623,3453,'slide_template','default'),(6624,3453,'plazart_desktop_column','1'),(6625,3453,'plazart_tabletportrait_column','1'),(6626,3453,'plazart_mobilelandscape_column','1'),(6627,3453,'plazart_mobileportrait_column','1'),(6628,3453,'plazart_portfolio_limit','10'),(6629,3453,'plazart_porfolio_orderby','date'),(6630,3453,'plazart_porfolio_order','desc'),(6631,3453,'plazart_paging','pagenavi'),(6632,3453,'plazart_porfolio_filter_status','show'),(6633,3453,'plazart_porfolio_filter','portfolio-tags'),(6634,3453,'plazart_portfolio_timeline_limit','6'),(6635,3453,'plazart_porfolio_timeline_orderby','date'),(6636,3453,'plazart_portfolio_timeline_order','desc'),(6637,3453,'plazart_blog_column','1'),(6638,3453,'plazart_blog_limit','10'),(6639,3453,'plazart_tzpostSidebar','0'),(6640,3453,'plazart_tzpostDate','show'),(6641,3453,'plazart_tzpostAuthor','show'),(6642,3453,'plazart_tzpostComments','show'),(6643,3453,'plazart_tzpostthumbnail','show'),(6644,3453,'plazart_tzpostexcerpt','show'),(6645,3453,'plazart_tzpostmoredetail','show'),(6646,3453,'plazart_tzpostshare','show'),(6647,3453,'plazart_event_grid_limit','6'),(6648,3453,'plazart_course_grid_limit','6'),(6650,3453,'_wpb_post_custom_css','h3{\r\n color:#e6960a;\r\n}\r\n.tofle-img{\r\n margin-right:20px;\r\n margin-bottom:40px;\r\n border-radius: 10px;\r\n}'),(6652,3453,'_dp_original','3448'),(6653,3463,'_wp_attached_file','2015/09/toefl-350x250.jpg'),(6654,3463,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:250;s:4:\"file\";s:25:\"2015/09/toefl-350x250.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"toefl-350x250-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:\"toefl-350x250-300x214.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:214;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:25:\"toefl-350x250-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:1;}}'),(6655,3472,'_menu_item_type','post_type'),(6656,3472,'_menu_item_menu_item_parent','3481'),(6657,3472,'_menu_item_object_id','3453'),(6658,3472,'_menu_item_object','page'),(6659,3472,'_menu_item_target',''),(6660,3472,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6661,3472,'_menu_item_xfn',''),(6662,3472,'_menu_item_url',''),(6666,3474,'_menu_item_type','post_type'),(6667,3474,'_menu_item_menu_item_parent','3481'),(6668,3474,'_menu_item_object_id','3448'),(6669,3474,'_menu_item_object','page'),(6670,3474,'_menu_item_target',''),(6671,3474,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6672,3474,'_menu_item_xfn',''),(6673,3474,'_menu_item_url',''),(6675,3474,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6676,3472,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6677,3475,'_edit_lock','1442274241:1'),(6678,3475,'_edit_last','1'),(6679,3475,'_wp_page_template','default'),(6680,3475,'_wpb_vc_js_status','true'),(6681,3475,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6682,3475,'slide_template','default'),(6683,3475,'plazart_desktop_column','1'),(6684,3475,'plazart_tabletportrait_column','1'),(6685,3475,'plazart_mobilelandscape_column','1'),(6686,3475,'plazart_mobileportrait_column','1'),(6687,3475,'plazart_portfolio_limit','10'),(6688,3475,'plazart_porfolio_orderby','date'),(6689,3475,'plazart_porfolio_order','desc'),(6690,3475,'plazart_paging','pagenavi'),(6691,3475,'plazart_porfolio_filter_status','show'),(6692,3475,'plazart_porfolio_filter','portfolio-tags'),(6693,3475,'plazart_portfolio_timeline_limit','6'),(6694,3475,'plazart_porfolio_timeline_orderby','date'),(6695,3475,'plazart_portfolio_timeline_order','desc'),(6696,3475,'plazart_blog_column','1'),(6697,3475,'plazart_blog_limit','10'),(6698,3475,'plazart_tzpostSidebar','0'),(6699,3475,'plazart_tzpostDate','show'),(6700,3475,'plazart_tzpostAuthor','show'),(6701,3475,'plazart_tzpostComments','show'),(6702,3475,'plazart_tzpostthumbnail','show'),(6703,3475,'plazart_tzpostexcerpt','show'),(6704,3475,'plazart_tzpostmoredetail','show'),(6705,3475,'plazart_tzpostshare','show'),(6706,3475,'plazart_event_grid_limit','6'),(6707,3475,'plazart_course_grid_limit','6'),(6709,3475,'_wpb_post_custom_css','h3{\r\n color:#e6960a;\r\n}'),(6711,3475,'_dp_original','3448'),(6712,3478,'_menu_item_type','post_type'),(6713,3478,'_menu_item_menu_item_parent','3481'),(6714,3478,'_menu_item_object_id','3475'),(6715,3478,'_menu_item_object','page'),(6716,3478,'_menu_item_target',''),(6717,3478,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6718,3478,'_menu_item_xfn',''),(6719,3478,'_menu_item_url',''),(6721,3478,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6722,3479,'_edit_lock','1441511728:1'),(6723,3479,'_edit_last','1'),(6724,3479,'_wp_page_template','default'),(6725,3479,'_wpb_vc_js_status','true'),(6726,3479,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1441511148273-b9c4aa69-2239-7\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:5:{s:9:\"post_type\";s:4:\"page\";s:9:\"max_items\";s:1:\"3\";s:7:\"orderby\";s:5:\"title\";s:7:\"grid_id\";s:36:\"vc_gid:1441511148273-b9c4aa69-2239-7\";s:10:\"taxonomies\";s:3:\"109\";}s:7:\"content\";s:0:\"\";}}}}'),(6727,3479,'slide_template','default'),(6728,3479,'plazart_desktop_column','1'),(6729,3479,'plazart_tabletportrait_column','1'),(6730,3479,'plazart_mobilelandscape_column','1'),(6731,3479,'plazart_mobileportrait_column','1'),(6732,3479,'plazart_portfolio_limit','10'),(6733,3479,'plazart_porfolio_orderby','date'),(6734,3479,'plazart_porfolio_order','desc'),(6735,3479,'plazart_paging','pagenavi'),(6736,3479,'plazart_porfolio_filter_status','show'),(6737,3479,'plazart_porfolio_filter','portfolio-tags'),(6738,3479,'plazart_portfolio_timeline_limit','6'),(6739,3479,'plazart_porfolio_timeline_orderby','date'),(6740,3479,'plazart_portfolio_timeline_order','desc'),(6741,3479,'plazart_blog_column','1'),(6742,3479,'plazart_blog_limit','10'),(6743,3479,'plazart_tzpostSidebar','0'),(6744,3479,'plazart_tzpostDate','show'),(6745,3479,'plazart_tzpostAuthor','show'),(6746,3479,'plazart_tzpostComments','show'),(6747,3479,'plazart_tzpostthumbnail','show'),(6748,3479,'plazart_tzpostexcerpt','show'),(6749,3479,'plazart_tzpostmoredetail','show'),(6750,3479,'plazart_tzpostshare','show'),(6751,3479,'plazart_event_grid_limit','6'),(6752,3479,'plazart_course_grid_limit','6'),(6754,3479,'_wpb_post_custom_css','h3{\r\n color:#e6960a;\r\n}'),(6756,3479,'_dp_original','3448'),(6759,3481,'_menu_item_type','post_type'),(6760,3481,'_menu_item_menu_item_parent','0'),(6761,3481,'_menu_item_object_id','3479'),(6762,3481,'_menu_item_object','page'),(6763,3481,'_menu_item_target',''),(6764,3481,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6765,3481,'_menu_item_xfn',''),(6766,3481,'_menu_item_url',''),(6768,3481,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6769,3482,'_menu_item_type','post_type'),(6770,3482,'_menu_item_menu_item_parent','3129'),(6771,3482,'_menu_item_object_id','3479'),(6772,3482,'_menu_item_object','page'),(6773,3482,'_menu_item_target',''),(6774,3482,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6775,3482,'_menu_item_xfn',''),(6776,3482,'_menu_item_url',''),(6778,3482,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6788,3435,'_thumbnail_id','3573'),(6791,3437,'_thumbnail_id','3570'),(6794,3448,'_thumbnail_id','3576'),(6795,3490,'_wp_attached_file','2015/09/toefl-feature.jpg'),(6796,3490,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:300;s:4:\"file\";s:25:\"2015/09/toefl-feature.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"toefl-feature-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:25:\"toefl-feature-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;}}'),(6797,3453,'_thumbnail_id','3490'),(6835,3417,'_thumbnail_id','3580'),(6847,3507,'_wp_attached_file','2015/08/GENY-basic-drawing-banner.jpg'),(6848,3507,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:37:\"2015/08/GENY-basic-drawing-banner.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"GENY-basic-drawing-banner-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:\"GENY-basic-drawing-banner-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"GENY-basic-drawing-banner-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:37:\"GENY-basic-drawing-banner-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:1;}}'),(6849,3512,'_wp_attached_file','2015/04/geny-school-exterior.jpg'),(6850,3512,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:589;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2015/04/geny-school-exterior.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"geny-school-exterior-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:\"geny-school-exterior-295x300.jpg\";s:5:\"width\";i:295;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"geny-school-exterior-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\";d:3.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"Canon EOS 60D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1334694908;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"18\";s:3:\"iso\";s:4:\"1600\";s:13:\"shutter_speed\";s:8:\"0.000125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(6851,3517,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6852,3517,'_edit_last','1'),(6853,3517,'_wp_page_template','template-homepage.php'),(6854,3517,'_wpb_vc_js_status','true'),(6855,3517,'slide_template','default'),(6856,3517,'vc_teaser','a:2:{s:4:\"data\";s:115:\"[{\"name\":\"title\",\"link\":\"post\"},{\"name\":\"image\",\"image\":\"featured\",\"link\":\"none\"},{\"name\":\"text\",\"mode\":\"excerpt\"}]\";s:7:\"bgcolor\";s:0:\"\";}'),(6857,3517,'plazart_desktop_column','1'),(6858,3517,'plazart_tabletportrait_column','1'),(6859,3517,'plazart_mobilelandscape_column','1'),(6860,3517,'plazart_mobileportrait_column','1'),(6861,3517,'plazart_portfolio_limit','10'),(6862,3517,'plazart_porfolio_orderby','date'),(6863,3517,'plazart_porfolio_order','desc'),(6864,3517,'plazart_paging','pagenavi'),(6865,3517,'plazart_porfolio_filter_status','show'),(6866,3517,'plazart_porfolio_filter','portfolio-tags'),(6867,3517,'plazart_header_type','2'),(6868,3517,'_wpb_shortcodes_custom_css','.vc_custom_1441840488816{background-color: #fcfcfc !important;}.vc_custom_1441836880779{margin: 50px !important;}.vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}.vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}.vc_custom_1429335505964{margin-bottom: 90px !important;}.vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}.vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}.vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}.vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}'),(6869,3517,'eg_sources_html5_mp4',''),(6870,3517,'eg_sources_html5_ogv',''),(6871,3517,'eg_sources_html5_webm',''),(6872,3517,'eg_sources_youtube',''),(6873,3517,'eg_sources_vimeo',''),(6874,3517,'eg_sources_wistia',''),(6875,3517,'eg_sources_image',''),(6876,3517,'eg_sources_iframe',''),(6877,3517,'eg_sources_soundcloud',''),(6878,3517,'eg_vimeo_ratio','0'),(6879,3517,'eg_youtube_ratio','0'),(6880,3517,'eg_wistia_ratio','0'),(6881,3517,'eg_html5_ratio','0'),(6882,3517,'eg_soundcloud_ratio','0'),(6883,3517,'eg_settings_custom_meta_skin',''),(6884,3517,'eg_settings_custom_meta_element',''),(6885,3517,'eg_settings_custom_meta_setting',''),(6886,3517,'eg_settings_custom_meta_style',''),(6887,3517,'eg_sources_revslider',''),(6888,3517,'plazart_blog_column','1'),(6889,3517,'plazart_blog_limit','10'),(6890,3517,'plazart_tzpostSidebar','0'),(6891,3517,'plazart_tzpostDate','show'),(6892,3517,'plazart_tzpostAuthor','show'),(6893,3517,'plazart_tzpostComments','show'),(6894,3517,'plazart_tzpostthumbnail','show'),(6895,3517,'plazart_tzpostexcerpt','show'),(6896,3517,'plazart_tzpostmoredetail','show'),(6897,3517,'plazart_tzpostshare','show'),(6898,3517,'plazart_event_grid_limit','6'),(6899,3517,'plazart_portfolio_timeline_limit','6'),(6900,3517,'plazart_porfolio_timeline_orderby','date'),(6901,3517,'plazart_portfolio_timeline_order','desc'),(6902,3517,'plazart_course_grid_limit','6'),(6903,3517,'_edit_lock','1441841396:1'),(6904,3517,'_dp_original','536'),(6960,3188,'_edit_lock','1441844915:1'),(6961,3526,'_wp_attached_file','2015/04/geny_logo_gray_thumb.png'),(6962,3526,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:50;s:6:\"height\";i:44;s:4:\"file\";s:32:\"2015/04/geny_logo_gray_thumb.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(6979,3537,'_edit_lock','1442274157:1'),(6980,3537,'_edit_last','1'),(6981,3537,'_wp_page_template','default'),(6982,3537,'_wpb_vc_js_status','true'),(6983,3537,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(6984,3537,'slide_template','default'),(6985,3537,'plazart_desktop_column','1'),(6986,3537,'plazart_tabletportrait_column','1'),(6987,3537,'plazart_mobilelandscape_column','1'),(6988,3537,'plazart_mobileportrait_column','1'),(6989,3537,'plazart_portfolio_limit','10'),(6990,3537,'plazart_porfolio_orderby','date'),(6991,3537,'plazart_porfolio_order','desc'),(6992,3537,'plazart_paging','pagenavi'),(6993,3537,'plazart_porfolio_filter_status','show'),(6994,3537,'plazart_porfolio_filter','portfolio-tags'),(6995,3537,'plazart_portfolio_timeline_limit','6'),(6996,3537,'plazart_porfolio_timeline_orderby','date'),(6997,3537,'plazart_portfolio_timeline_order','desc'),(6998,3537,'plazart_blog_column','1'),(6999,3537,'plazart_blog_limit','10'),(7000,3537,'plazart_tzpostSidebar','0'),(7001,3537,'plazart_tzpostDate','show'),(7002,3537,'plazart_tzpostAuthor','show'),(7003,3537,'plazart_tzpostComments','show'),(7004,3537,'plazart_tzpostthumbnail','show'),(7005,3537,'plazart_tzpostexcerpt','show'),(7006,3537,'plazart_tzpostmoredetail','show'),(7007,3537,'plazart_tzpostshare','show'),(7008,3537,'plazart_event_grid_limit','6'),(7009,3537,'plazart_course_grid_limit','6'),(7011,3537,'_wpb_post_custom_css','h3{\r\n color:#E26060;\r\n}\r\n.adobe{\r\n display:inline;\r\n}'),(7013,3537,'_thumbnail_id','3578'),(7014,3537,'_dp_original','3417'),(7015,3542,'_wp_attached_file','2015/09/after-effects-icon.png'),(7016,3542,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:98;s:4:\"file\";s:30:\"2015/09/after-effects-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7017,3543,'_wp_attached_file','2015/09/dreamweaver-icon.png'),(7018,3543,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:97;s:4:\"file\";s:28:\"2015/09/dreamweaver-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7019,3544,'_wp_attached_file','2015/09/flash-icon.png'),(7020,3544,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:98;s:4:\"file\";s:22:\"2015/09/flash-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7021,3545,'_wp_attached_file','2015/09/illustator-icon.png'),(7022,3545,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:97;s:4:\"file\";s:27:\"2015/09/illustator-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7023,3546,'_wp_attached_file','2015/09/indesign-icon.png'),(7024,3546,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:98;s:4:\"file\";s:25:\"2015/09/indesign-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7025,3547,'_wp_attached_file','2015/09/photoshop-icon.png'),(7026,3547,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:100;s:6:\"height\";i:98;s:4:\"file\";s:26:\"2015/09/photoshop-icon.png\";s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:11:{s:8:\"aperture\";i:0;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:0;}}'),(7027,3549,'_edit_lock','1442102336:1'),(7028,3549,'_edit_last','1'),(7029,3549,'_wp_page_template','default'),(7030,3549,'_wpb_vc_js_status','true'),(7031,3549,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:1:{s:10:\"shortcodes\";a:1:{s:29:\"1442100429172-d23a5c5b-caf0-2\";a:3:{s:3:\"tag\";s:13:\"vc_basic_grid\";s:4:\"atts\";a:5:{s:9:\"post_type\";s:4:\"page\";s:9:\"max_items\";s:1:\"4\";s:7:\"orderby\";s:5:\"title\";s:7:\"grid_id\";s:36:\"vc_gid:1442100429172-d23a5c5b-caf0-2\";s:10:\"taxonomies\";s:3:\"111\";}s:7:\"content\";s:0:\"\";}}}}'),(7032,3549,'slide_template','default'),(7033,3549,'plazart_desktop_column','1'),(7034,3549,'plazart_tabletportrait_column','1'),(7035,3549,'plazart_mobilelandscape_column','1'),(7036,3549,'plazart_mobileportrait_column','1'),(7037,3549,'plazart_portfolio_limit','10'),(7038,3549,'plazart_porfolio_orderby','date'),(7039,3549,'plazart_porfolio_order','desc'),(7040,3549,'plazart_paging','pagenavi'),(7041,3549,'plazart_porfolio_filter_status','show'),(7042,3549,'plazart_porfolio_filter','portfolio-tags'),(7043,3549,'plazart_portfolio_timeline_limit','6'),(7044,3549,'plazart_porfolio_timeline_orderby','date'),(7045,3549,'plazart_portfolio_timeline_order','desc'),(7046,3549,'plazart_blog_column','1'),(7047,3549,'plazart_blog_limit','10'),(7048,3549,'plazart_tzpostSidebar','0'),(7049,3549,'plazart_tzpostDate','show'),(7050,3549,'plazart_tzpostAuthor','show'),(7051,3549,'plazart_tzpostComments','show'),(7052,3549,'plazart_tzpostthumbnail','show'),(7053,3549,'plazart_tzpostexcerpt','show'),(7054,3549,'plazart_tzpostmoredetail','show'),(7055,3549,'plazart_tzpostshare','show'),(7056,3549,'plazart_event_grid_limit','6'),(7057,3549,'plazart_course_grid_limit','6'),(7058,3549,'_dp_original','3206'),(7059,3551,'_menu_item_type','post_type'),(7060,3551,'_menu_item_menu_item_parent','3129'),(7061,3551,'_menu_item_object_id','3549'),(7062,3551,'_menu_item_object','page'),(7063,3551,'_menu_item_target',''),(7064,3551,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7065,3551,'_menu_item_xfn',''),(7066,3551,'_menu_item_url',''),(7068,3552,'_menu_item_type','post_type'),(7069,3552,'_menu_item_menu_item_parent','0'),(7070,3552,'_menu_item_object_id','3537'),(7071,3552,'_menu_item_object','page'),(7072,3552,'_menu_item_target',''),(7073,3552,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7074,3552,'_menu_item_xfn',''),(7075,3552,'_menu_item_url',''),(7076,3552,'_menu_item_orphaned','1442025529'),(7077,3551,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7123,3570,'_wp_attached_file','2015/09/accounting-feature1.jpg'),(7124,3570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:31:\"2015/09/accounting-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"accounting-feature1-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:\"accounting-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"accounting-feature1-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:27:\"BillionPhotos.com - Fotolia\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:26:\"Accounting, budget, price.\";s:17:\"created_timestamp\";i:1423474356;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:26:\"Accounting, budget, price.\";s:11:\"orientation\";i:1;}}'),(7125,3571,'_wp_attached_file','2015/09/allied-health-training-feature1.jpg'),(7126,3571,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:43:\"2015/09/allied-health-training-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"allied-health-training-feature1-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:\"allied-health-training-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:43:\"allied-health-training-feature1-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\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:22:\"Monkey Business Images\";s:6:\"camera\";s:14:\"Canon EOS-1D X\";s:7:\"caption\";s:55:\"Senior Male Patient Being Pushed In Wheelchair By Nurse\";s:17:\"created_timestamp\";i:1383022591;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"125\";s:3:\"iso\";s:4:\"1000\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:55:\"Senior Male Patient Being Pushed In Wheelchair By Nurse\";s:11:\"orientation\";i:1;}}'),(7127,3572,'_wp_attached_file','2015/09/basic-drawing-feature.jpg'),(7128,3572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:33:\"2015/09/basic-drawing-feature.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"basic-drawing-feature-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:\"basic-drawing-feature-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:33:\"basic-drawing-feature-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\";d:4.5;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:21:\"Canon EOS-1Ds Mark II\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1261066423;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"62\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;}}'),(7129,3573,'_wp_attached_file','2015/09/bookkeeping-feature1.jpg'),(7130,3573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2015/09/bookkeeping-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"bookkeeping-feature1-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:\"bookkeeping-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"bookkeeping-feature1-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\";d:6.29999999999999982236431605997495353221893310546875;s:6:\"credit\";s:18:\"carballo - Fotolia\";s:6:\"camera\";s:13:\"Canon EOS 40D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";i:1363369925;s:9:\"copyright\";s:18:\"carballo - Fotolia\";s:12:\"focal_length\";s:3:\"100\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:6:\"0.0125\";s:5:\"title\";s:12:\"contabilidad\";s:11:\"orientation\";i:1;}}'),(7131,3574,'_wp_attached_file','2015/09/business-english-feature1.jpg'),(7132,3574,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:37:\"2015/09/business-english-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"business-english-feature1-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:\"business-english-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:37:\"business-english-feature1-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\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:20:\"Canon EOS 5D Mark II\";s:7:\"caption\";s:41:\"Business group in a meeting at the office\";s:17:\"created_timestamp\";i:1257201157;s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:3:\"150\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:28:\"Business group at the office\";s:11:\"orientation\";i:1;}}'),(7133,3575,'_wp_attached_file','2015/09/color-theory-feature.jpg'),(7134,3575,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:32:\"2015/09/color-theory-feature.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"color-theory-feature-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:\"color-theory-feature-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:32:\"color-theory-feature-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:29:\"WavebreakMediaMicro - Fotolia\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:6:\"559207\";s:17:\"created_timestamp\";i:0;s:9:\"copyright\";s:29:\"WavebreakMediaMicro - Fotolia\";s:12:\"focal_length\";i:0;s:3:\"iso\";i:0;s:13:\"shutter_speed\";i:0;s:5:\"title\";s:40:\"Graphic designer drawing on colour chart\";s:11:\"orientation\";i:1;}}'),(7135,3576,'_wp_attached_file','2015/09/esl-feature1.jpg'),(7136,3576,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2015/09/esl-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"esl-feature1-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:\"esl-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:24:\"esl-feature1-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\";d:9;s:6:\"credit\";s:14:\"nito - Fotolia\";s:6:\"camera\";s:11:\"NIKON D300S\";s:7:\"caption\";s:162:\"the hand of a man holding a signboard with the text learn english written in it with a red telephone booth and the Big Ben in the background, with a filter effect\";s:17:\"created_timestamp\";i:1421625600;s:9:\"copyright\";s:14:\"nito - Fotolia\";s:12:\"focal_length\";s:2:\"35\";s:3:\"iso\";s:3:\"200\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:90:\"text learn english in a signboard with the Big Ben in the background, with a filter effect\";s:11:\"orientation\";i:1;}}'),(7137,3577,'_wp_attached_file','2015/09/fashion-design-feature.jpg'),(7138,3577,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2015/09/fashion-design-feature.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"fashion-design-feature-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:\"fashion-design-feature-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"fashion-design-feature-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\";d:4.5;s:6:\"credit\";s:25:\"Artur Marciniec - Fotolia\";s:6:\"camera\";s:21:\"Canon EOS 5D Mark III\";s:7:\"caption\";s:52:\"Fashion designer working in studio. Close up design.\";s:17:\"created_timestamp\";i:1396194841;s:9:\"copyright\";s:25:\"Artur Marciniec - Fotolia\";s:12:\"focal_length\";s:2:\"52\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.005\";s:5:\"title\";s:16:\"Fashion designer\";s:11:\"orientation\";i:1;}}'),(7139,3578,'_wp_attached_file','2015/09/graphic-design-feature.jpg'),(7140,3578,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2015/09/graphic-design-feature.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"graphic-design-feature-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:\"graphic-design-feature-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"graphic-design-feature-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:27:\"BillionPhotos.com - Fotolia\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:26:\"Design, graphic, designer.\";s:17:\"created_timestamp\";i:1419835368;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:26:\"Design, graphic, designer.\";s:11:\"orientation\";i:1;}}'),(7141,3579,'_wp_attached_file','2015/09/marketing-management-feature1.jpg'),(7142,3579,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:41:\"2015/09/marketing-management-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"marketing-management-feature1-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:\"marketing-management-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:41:\"marketing-management-feature1-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:1;}}'),(7143,3580,'_wp_attached_file','2015/09/nclex-rn-prep-feature1.jpg'),(7144,3580,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2015/09/nclex-rn-prep-feature1.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"nclex-rn-prep-feature1-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:\"nclex-rn-prep-feature1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"nclex-rn-prep-feature1-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:27:\"BillionPhotos.com - Fotolia\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:26:\"Nurse, Student, Education.\";s:17:\"created_timestamp\";i:1434506444;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:26:\"Nurse, Student, Education.\";s:11:\"orientation\";i:1;}}'),(7145,3581,'_wp_attached_file','2015/09/web-design-feature.jpg'),(7146,3581,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:30:\"2015/09/web-design-feature.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"web-design-feature-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:\"web-design-feature-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"web-design-feature-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\";d:2.79999999999999982236431605997495353221893310546875;s:6:\"credit\";s:18:\"Rawpixel - Fotolia\";s:6:\"camera\";s:9:\"NIKON D3X\";s:7:\"caption\";s:55:\"Web Design Media Content Light Bulb Inspiration Concept\";s:17:\"created_timestamp\";i:1386376613;s:9:\"copyright\";s:22:\"PHOTOMORPHIC PTE. LTD.\";s:12:\"focal_length\";s:2:\"70\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:7:\"0.00625\";s:5:\"title\";s:55:\"Web Design Media Content Light Bulb Inspiration Concept\";s:11:\"orientation\";i:1;}}'),(7147,3582,'_wp_attached_file','2015/09/fashion-design-diagram.jpg'),(7148,3582,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:430;s:4:\"file\";s:34:\"2015/09/fashion-design-diagram.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"fashion-design-diagram-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:\"fashion-design-diagram-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"fashion-design-diagram-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"fashion-design-diagram-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;}}'),(7149,3583,'_wp_attached_file','2015/09/graphic-design-diagram.jpg'),(7150,3583,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1100;s:6:\"height\";i:430;s:4:\"file\";s:34:\"2015/09/graphic-design-diagram.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"graphic-design-diagram-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:\"graphic-design-diagram-300x117.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"graphic-design-diagram-1024x400.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"graphic-design-diagram-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;}}'),(7151,3584,'_wp_attached_file','2015/09/web-design-diagram.jpg'),(7152,3584,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1160;s:6:\"height\";i:780;s:4:\"file\";s:30:\"2015/09/web-design-diagram.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"web-design-diagram-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:\"web-design-diagram-300x202.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"web-design-diagram-1024x689.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:689;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:30:\"web-design-diagram-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;}}'),(7153,3586,'_edit_lock','1442099302:1'),(7154,3586,'_edit_last','1'),(7155,3586,'_wp_page_template','default'),(7156,3586,'_wpb_vc_js_status','true'),(7157,3586,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7158,3586,'slide_template','default'),(7159,3586,'plazart_desktop_column','1'),(7160,3586,'plazart_tabletportrait_column','1'),(7161,3586,'plazart_mobilelandscape_column','1'),(7162,3586,'plazart_mobileportrait_column','1'),(7163,3586,'plazart_portfolio_limit','10'),(7164,3586,'plazart_porfolio_orderby','date'),(7165,3586,'plazart_porfolio_order','desc'),(7166,3586,'plazart_paging','pagenavi'),(7167,3586,'plazart_porfolio_filter_status','show'),(7168,3586,'plazart_porfolio_filter','portfolio-tags'),(7169,3586,'plazart_portfolio_timeline_limit','6'),(7170,3586,'plazart_porfolio_timeline_orderby','date'),(7171,3586,'plazart_portfolio_timeline_order','desc'),(7172,3586,'plazart_blog_column','1'),(7173,3586,'plazart_blog_limit','10'),(7174,3586,'plazart_tzpostSidebar','0'),(7175,3586,'plazart_tzpostDate','show'),(7176,3586,'plazart_tzpostAuthor','show'),(7177,3586,'plazart_tzpostComments','show'),(7178,3586,'plazart_tzpostthumbnail','show'),(7179,3586,'plazart_tzpostexcerpt','show'),(7180,3586,'plazart_tzpostmoredetail','show'),(7181,3586,'plazart_tzpostshare','show'),(7182,3586,'plazart_event_grid_limit','6'),(7183,3586,'plazart_course_grid_limit','6'),(7184,3586,'_wpb_post_custom_css','h3{\r\n color:#E26060;\r\n}'),(7187,3586,'_dp_original','3537'),(7188,3586,'_thumbnail_id','3581'),(7189,3588,'_edit_lock','1442097038:1'),(7190,3588,'_edit_last','1'),(7191,3588,'_wp_page_template','default'),(7192,3588,'_wpb_vc_js_status','true'),(7193,3588,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7194,3588,'slide_template','default'),(7195,3588,'plazart_desktop_column','1'),(7196,3588,'plazart_tabletportrait_column','1'),(7197,3588,'plazart_mobilelandscape_column','1'),(7198,3588,'plazart_mobileportrait_column','1'),(7199,3588,'plazart_portfolio_limit','10'),(7200,3588,'plazart_porfolio_orderby','date'),(7201,3588,'plazart_porfolio_order','desc'),(7202,3588,'plazart_paging','pagenavi'),(7203,3588,'plazart_porfolio_filter_status','show'),(7204,3588,'plazart_porfolio_filter','portfolio-tags'),(7205,3588,'plazart_portfolio_timeline_limit','6'),(7206,3588,'plazart_porfolio_timeline_orderby','date'),(7207,3588,'plazart_portfolio_timeline_order','desc'),(7208,3588,'plazart_blog_column','1'),(7209,3588,'plazart_blog_limit','10'),(7210,3588,'plazart_tzpostSidebar','0'),(7211,3588,'plazart_tzpostDate','show'),(7212,3588,'plazart_tzpostAuthor','show'),(7213,3588,'plazart_tzpostComments','show'),(7214,3588,'plazart_tzpostthumbnail','show'),(7215,3588,'plazart_tzpostexcerpt','show'),(7216,3588,'plazart_tzpostmoredetail','show'),(7217,3588,'plazart_tzpostshare','show'),(7218,3588,'plazart_event_grid_limit','6'),(7219,3588,'plazart_course_grid_limit','6'),(7220,3588,'_wpb_post_custom_css','h3{\r\n color:#E26060;\r\n}'),(7222,3588,'_thumbnail_id','3577'),(7223,3588,'_dp_original','3586'),(7224,3590,'_menu_item_type','post_type'),(7225,3590,'_menu_item_menu_item_parent','3593'),(7226,3590,'_menu_item_object_id','3588'),(7227,3590,'_menu_item_object','page'),(7228,3590,'_menu_item_target',''),(7229,3590,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7230,3590,'_menu_item_xfn',''),(7231,3590,'_menu_item_url',''),(7233,3591,'_menu_item_type','post_type'),(7234,3591,'_menu_item_menu_item_parent','3593'),(7235,3591,'_menu_item_object_id','3586'),(7236,3591,'_menu_item_object','page'),(7237,3591,'_menu_item_target',''),(7238,3591,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7239,3591,'_menu_item_xfn',''),(7240,3591,'_menu_item_url',''),(7242,3592,'_menu_item_type','post_type'),(7243,3592,'_menu_item_menu_item_parent','3593'),(7244,3592,'_menu_item_object_id','3537'),(7245,3592,'_menu_item_object','page'),(7246,3592,'_menu_item_target',''),(7247,3592,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7248,3592,'_menu_item_xfn',''),(7249,3592,'_menu_item_url',''),(7251,3593,'_menu_item_type','post_type'),(7252,3593,'_menu_item_menu_item_parent','0'),(7253,3593,'_menu_item_object_id','3549'),(7254,3593,'_menu_item_object','page'),(7255,3593,'_menu_item_target',''),(7256,3593,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7257,3593,'_menu_item_xfn',''),(7258,3593,'_menu_item_url',''),(7260,3593,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7261,3592,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7262,3591,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7263,3590,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7264,3594,'_edit_lock','1442099540:1'),(7265,3594,'_edit_last','1'),(7266,3594,'_wp_page_template','default'),(7267,3594,'_wpb_vc_js_status','true'),(7268,3594,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7269,3594,'slide_template','default'),(7270,3594,'plazart_desktop_column','1'),(7271,3594,'plazart_tabletportrait_column','1'),(7272,3594,'plazart_mobilelandscape_column','1'),(7273,3594,'plazart_mobileportrait_column','1'),(7274,3594,'plazart_portfolio_limit','10'),(7275,3594,'plazart_porfolio_orderby','date'),(7276,3594,'plazart_porfolio_order','desc'),(7277,3594,'plazart_paging','pagenavi'),(7278,3594,'plazart_porfolio_filter_status','show'),(7279,3594,'plazart_porfolio_filter','portfolio-tags'),(7280,3594,'plazart_portfolio_timeline_limit','6'),(7281,3594,'plazart_porfolio_timeline_orderby','date'),(7282,3594,'plazart_portfolio_timeline_order','desc'),(7283,3594,'plazart_blog_column','1'),(7284,3594,'plazart_blog_limit','10'),(7285,3594,'plazart_tzpostSidebar','0'),(7286,3594,'plazart_tzpostDate','show'),(7287,3594,'plazart_tzpostAuthor','show'),(7288,3594,'plazart_tzpostComments','show'),(7289,3594,'plazart_tzpostthumbnail','show'),(7290,3594,'plazart_tzpostexcerpt','show'),(7291,3594,'plazart_tzpostmoredetail','show'),(7292,3594,'plazart_tzpostshare','show'),(7293,3594,'plazart_event_grid_limit','6'),(7294,3594,'plazart_course_grid_limit','6'),(7295,3594,'_wpb_post_custom_css','h3{\r\n color:#E26060;\r\n}'),(7297,3594,'_thumbnail_id','3572'),(7298,3594,'_dp_original','3586'),(7299,3596,'_edit_lock','1442099664:1'),(7300,3596,'_edit_last','1'),(7301,3596,'_wp_page_template','default'),(7302,3596,'_wpb_vc_js_status','true'),(7303,3596,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7304,3596,'slide_template','default'),(7305,3596,'plazart_desktop_column','1'),(7306,3596,'plazart_tabletportrait_column','1'),(7307,3596,'plazart_mobilelandscape_column','1'),(7308,3596,'plazart_mobileportrait_column','1'),(7309,3596,'plazart_portfolio_limit','10'),(7310,3596,'plazart_porfolio_orderby','date'),(7311,3596,'plazart_porfolio_order','desc'),(7312,3596,'plazart_paging','pagenavi'),(7313,3596,'plazart_porfolio_filter_status','show'),(7314,3596,'plazart_porfolio_filter','portfolio-tags'),(7315,3596,'plazart_portfolio_timeline_limit','6'),(7316,3596,'plazart_porfolio_timeline_orderby','date'),(7317,3596,'plazart_portfolio_timeline_order','desc'),(7318,3596,'plazart_blog_column','1'),(7319,3596,'plazart_blog_limit','10'),(7320,3596,'plazart_tzpostSidebar','0'),(7321,3596,'plazart_tzpostDate','show'),(7322,3596,'plazart_tzpostAuthor','show'),(7323,3596,'plazart_tzpostComments','show'),(7324,3596,'plazart_tzpostthumbnail','show'),(7325,3596,'plazart_tzpostexcerpt','show'),(7326,3596,'plazart_tzpostmoredetail','show'),(7327,3596,'plazart_tzpostshare','show'),(7328,3596,'plazart_event_grid_limit','6'),(7329,3596,'plazart_course_grid_limit','6'),(7330,3596,'_wpb_post_custom_css','h3{\r\n color:#E26060;\r\n}'),(7331,3596,'_thumbnail_id','3575'),(7333,3596,'_dp_original','3594'),(7334,3598,'_menu_item_type','post_type'),(7335,3598,'_menu_item_menu_item_parent','3593'),(7336,3598,'_menu_item_object_id','3596'),(7337,3598,'_menu_item_object','page'),(7338,3598,'_menu_item_target',''),(7339,3598,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7340,3598,'_menu_item_xfn',''),(7341,3598,'_menu_item_url',''),(7343,3599,'_menu_item_type','post_type'),(7344,3599,'_menu_item_menu_item_parent','3593'),(7345,3599,'_menu_item_object_id','3594'),(7346,3599,'_menu_item_object','page'),(7347,3599,'_menu_item_target',''),(7348,3599,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7349,3599,'_menu_item_xfn',''),(7350,3599,'_menu_item_url',''),(7352,3598,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7353,3599,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7502,3671,'_wp_attached_file','2015/08/GENY-best-school-banner.jpg'),(7503,3671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1172;s:6:\"height\";i:786;s:4:\"file\";s:35:\"2015/08/GENY-best-school-banner.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"GENY-best-school-banner-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:\"GENY-best-school-banner-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:\"GENY-best-school-banner-1024x687.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:687;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:35:\"GENY-best-school-banner-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:13:\"lev dolgachov\";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;}}'),(7504,2734,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7505,2735,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7506,2736,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7507,2739,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7509,2742,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7510,2743,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7511,2744,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7512,2745,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7513,2751,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7514,2752,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7517,3672,'_menu_item_type','custom'),(7518,3672,'_menu_item_menu_item_parent','0'),(7519,3672,'_menu_item_object_id','3672'),(7520,3672,'_menu_item_object','custom'),(7521,3672,'_menu_item_target',''),(7522,3672,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7523,3672,'_menu_item_xfn',''),(7524,3672,'_menu_item_url','#'),(7526,3673,'_menu_item_type','custom'),(7527,3673,'_menu_item_menu_item_parent','0'),(7528,3673,'_menu_item_object_id','3673'),(7529,3673,'_menu_item_object','custom'),(7530,3673,'_menu_item_target',''),(7531,3673,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7532,3673,'_menu_item_xfn',''),(7533,3673,'_menu_item_url','#'),(7535,3672,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7536,3673,'_vc_post_settings','a:2:{s:7:\"vc_grid\";a:0:{}s:10:\"vc_grid_id\";a:0:{}}'),(7537,3674,'_menu_item_type','custom'),(7538,3674,'_menu_item_menu_item_parent','0'),(7539,3674,'_menu_item_object_id','3674'),(7540,3674,'_menu_item_object','custom'),(7541,3674,'_menu_item_target',''),(7542,3674,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7543,3674,'_menu_item_xfn',''),(7544,3674,'_menu_item_url','#'),(7545,3674,'_menu_item_orphaned','1442263329'),(7548,3676,'_wp_attached_file','2015/08/GENY-ESL-learn-English-map-banner.jpg'),(7549,3676,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1920;s:6:\"height\";i:800;s:4:\"file\";s:45:\"2015/08/GENY-ESL-learn-English-map-banner.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"GENY-ESL-learn-English-map-banner-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"GENY-ESL-learn-English-map-banner-300x125.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:46:\"GENY-ESL-learn-English-map-banner-1024x427.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:45:\"GENY-ESL-learn-English-map-banner-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:1;}}'),(7550,3677,'_wp_attached_file','2015/04/open-book.jpg'),(7551,3677,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1169;s:6:\"height\";i:300;s:4:\"file\";s:21:\"2015/04/open-book.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"open-book-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"open-book-300x77.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"open-book-1024x263.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:263;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:21:\"open-book-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:1;}}'),(7552,3443,'_thumbnail_id','3579'),(7553,3475,'_thumbnail_id','3574'),(7554,3419,'_thumbnail_id','3571'),(7555,3678,'_wp_attached_file','2015/04/accounting-feature-title.jpg'),(7556,3678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2015/04/accounting-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"accounting-feature-title-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:\"accounting-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:36:\"accounting-feature-title-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:1;}}'),(7557,3679,'_wp_attached_file','2015/04/allied-health-training-feature-title.jpg'),(7558,3679,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:48:\"2015/04/allied-health-training-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"allied-health-training-feature-title-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"allied-health-training-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:48:\"allied-health-training-feature-title-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:1;}}'),(7559,3680,'_wp_attached_file','2015/04/basic-drawing-feature-title.jpg'),(7560,3680,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:39:\"2015/04/basic-drawing-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"basic-drawing-feature-title-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"basic-drawing-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:39:\"basic-drawing-feature-title-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:1;}}'),(7561,3681,'_wp_attached_file','2015/04/bookkeeping-feature-title.jpg'),(7562,3681,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:37:\"2015/04/bookkeeping-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"bookkeeping-feature-title-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:\"bookkeeping-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:37:\"bookkeeping-feature-title-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:1;}}'),(7563,3682,'_wp_attached_file','2015/04/business-english-feature-title.jpg'),(7564,3682,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:42:\"2015/04/business-english-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"business-english-feature-title-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:42:\"business-english-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:42:\"business-english-feature-title-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:1;}}'),(7565,3683,'_wp_attached_file','2015/04/color-theory-feature-title.jpg'),(7566,3683,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:38:\"2015/04/color-theory-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"color-theory-feature-title-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:\"color-theory-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:38:\"color-theory-feature-title-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:1;}}'),(7567,3684,'_wp_attached_file','2015/04/esl-feature-title.jpg'),(7568,3684,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:29:\"2015/04/esl-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"esl-feature-title-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:\"esl-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:29:\"esl-feature-title-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:1;}}'),(7569,3685,'_wp_attached_file','2015/04/fashion-design-feature-title.jpg'),(7570,3685,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2015/04/fashion-design-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"fashion-design-feature-title-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:\"fashion-design-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:40:\"fashion-design-feature-title-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:1;}}'),(7571,3686,'_wp_attached_file','2015/04/graphic-design-feature-title.jpg'),(7572,3686,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:40:\"2015/04/graphic-design-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"graphic-design-feature-title-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:\"graphic-design-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:40:\"graphic-design-feature-title-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:1;}}'),(7573,3687,'_wp_attached_file','2015/04/marketing-management-feature-title.jpg'),(7574,3687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:46:\"2015/04/marketing-management-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"marketing-management-feature-title-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"marketing-management-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:46:\"marketing-management-feature-title-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:1;}}'),(7575,3688,'_wp_attached_file','2015/04/nclex-rn-feature-title.jpg'),(7576,3688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:34:\"2015/04/nclex-rn-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"nclex-rn-feature-title-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:\"nclex-rn-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:34:\"nclex-rn-feature-title-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:1;}}'),(7577,3689,'_wp_attached_file','2015/04/toefl-feature-title.jpg'),(7578,3689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:31:\"2015/04/toefl-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"toefl-feature-title-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:\"toefl-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:31:\"toefl-feature-title-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:1;}}'),(7579,3690,'_wp_attached_file','2015/04/web-design-feature-title.jpg'),(7580,3690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:300;s:4:\"file\";s:36:\"2015/04/web-design-feature-title.jpg\";s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-feature-title-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:\"web-design-feature-title-300x180.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"tptn_thumbnail\";a:4:{s:4:\"file\";s:36:\"web-design-feature-title-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:1;}}'),(7581,1791,'_edit_lock','1442286211:1'); /*!40000 ALTER TABLE `g516db_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_posts` -- DROP TABLE IF EXISTS `g516db_posts`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM AUTO_INCREMENT=3695 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_posts` -- LOCK TABLES `g516db_posts` WRITE; /*!40000 ALTER TABLE `g516db_posts` DISABLE KEYS */; INSERT INTO `g516db_posts` VALUES (4,1,'2015-08-26 16:01:15','2015-08-26 16:01:15','<p>Your Name (required)<br />\n [text* your-name] </p>\n\n<p>Your Email (required)<br />\n [email* your-email] </p>\n\n<p>Subject<br />\n [text your-subject] </p>\n\n<p>Your Message<br />\n [textarea your-message] </p>\n\n<p>[submit \"Send\"]</p>\n[your-subject]\n[your-name] <genywebmaster@gmail.com>\nFrom: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on GENY School (http://genewyork.com)\ngenywebmaster@gmail.com\nReply-To: [your-email]\n\n0\n0\n\n[your-subject]\nGENY School <genywebmaster@gmail.com>\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on GENY School (http://genewyork.com)\n[your-email]\nReply-To: genywebmaster@gmail.com\n\n0\n0\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.','Contact form 1','','publish','closed','closed','','contact-form-1','','','2015-08-26 16:01:15','2015-08-26 16:01:15','',0,'http://genewyork.com/?post_type=wpcf7_contact_form&p=4',0,'wpcf7_contact_form','',0),(5,1,'2015-08-26 16:01:20','2015-08-26 16:01:20','','Media','','private','closed','closed','','media','','','2015-08-26 16:01:20','2015-08-26 16:01:20','',0,'http://genewyork.com/?option-tree=media',0,'option-tree','',0),(304,2,'2015-04-10 07:28:18','2015-04-10 07:28:18','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Pesticide Applicators Training','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','pesticide-applicators-training','','','2015-04-10 07:28:18','2015-04-10 07:28:18','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=304',0,'tribe_events','',0),(305,2,'2015-04-10 07:30:02','2015-04-10 07:30:02','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Project 2014 - Workshop','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','project-2014-workshop','','','2015-04-10 07:30:02','2015-04-10 07:30:02','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=305',0,'tribe_events','',0),(308,2,'2015-04-10 07:32:02','2015-04-10 07:32:02','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget','publish','open','open','','criminal-justice-camp','','','2015-04-10 07:32:02','2015-04-10 07:32:02','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=308',0,'tribe_events','',0),(310,2,'2015-04-10 07:33:03','2015-04-10 07:33:03','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Your Success in Your College','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum','publish','open','open','','your-success-in-your-college','','','2015-04-10 07:33:03','2015-04-10 07:33:03','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=310',0,'tribe_events','',0),(312,2,'2015-04-10 07:34:40','2015-04-10 07:34:40','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Applicators Training','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','pesticide-applicators-training-2','','','2015-04-10 07:34:40','2015-04-10 07:34:40','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=312',0,'tribe_events','',0),(313,2,'2015-04-10 07:35:34','2015-04-10 07:35:34','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Project 2014 - Workshop','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','project-2014-workshop-2','','','2015-04-10 07:35:34','2015-04-10 07:35:34','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=313',0,'tribe_events','',0),(314,2,'2015-04-10 07:36:26','2015-04-10 07:36:26','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','criminal-justice-camp-2','','','2015-04-10 07:36:26','2015-04-10 07:36:26','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=314',0,'tribe_events','',0),(315,2,'2015-04-10 07:37:15','2015-04-10 07:37:15','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Your Success in Your College','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','your-success-in-your-college-2','','','2015-04-10 07:37:15','2015-04-10 07:37:15','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_events&p=315',0,'tribe_events','',0),(319,2,'2015-04-10 09:12:02','2015-04-10 09:12:02','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl','Venue Name','','publish','closed','closed','','venue-name','','','2015-04-10 09:12:02','2015-04-10 09:12:02','',0,'http://wordpress.templaza.net/ethic?tribe_venue=venue-name',0,'tribe_venue','',0),(323,2,'2015-04-10 10:13:17','2015-04-10 10:13:17','<small>You may want to consider <a href=\"http://wordpress.org/plugins/tags/obfuscate\">obfuscating</a> any e-mail address published on your site to best avoid it getting harvested by spammers.</small>','Templaza','','publish','closed','closed','','templaza','','','2015-04-10 10:13:17','2015-04-10 10:13:17','',0,'http://wordpress.templaza.net/ethic?post_type=tribe_organizer&p=323',0,'tribe_organizer','',0),(324,2,'2015-04-10 10:16:00','2015-04-10 10:16:00','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl','Templaza.com','','publish','closed','closed','','templaza-com','','','2015-04-10 10:16:00','2015-04-10 10:16:00','',0,'http://wordpress.templaza.net/ethic?tribe_venue=templaza-com',0,'tribe_venue','',0),(369,2,'2015-04-15 02:47:10','2015-04-15 02:47:10','','ádfsdfsdf','','trash','open','open','','adfsdfsdf','','','2015-04-15 02:47:10','2015-04-15 02:47:10','',0,'http://wordpress.templaza.net/ethic?tribe_organizer=adfsdfsdf',0,'tribe_organizer','',0),(370,2,'2015-04-15 02:47:10','2015-04-15 02:47:10','','sdfasf','','trash','open','open','','sdfasf','','','2015-04-15 02:47:10','2015-04-15 02:47:10','',0,'http://wordpress.templaza.net/ethic?tribe_venue=sdfasf',0,'tribe_venue','',0),(374,2,'2015-04-15 03:39:58','2015-04-15 03:39:58','','Ha Noi','','publish','open','open','','ha-noi','','','2015-04-15 03:39:58','2015-04-15 03:39:58','',0,'http://wordpress.templaza.net/ethic?tribe_venue=ha-noi',0,'tribe_venue','',0),(375,2,'2015-04-15 03:41:55','2015-04-15 03:41:55','','Templaza','','trash','open','open','','templaza-2','','','2015-04-15 03:41:55','2015-04-15 03:41:55','',0,'http://wordpress.templaza.net/ethic?tribe_organizer=templaza-2',0,'tribe_organizer','',0),(447,2,'2015-04-16 03:32:48','2015-04-16 03:32:48','','banner-01','','inherit','open','open','','banner-01','','','2015-04-16 03:32:48','2015-04-16 03:32:48','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-01.jpg',0,'attachment','image/jpeg',0),(448,2,'2015-04-16 03:32:49','2015-04-16 03:32:49','','banner-02','','inherit','open','open','','banner-02','','','2015-04-16 03:32:49','2015-04-16 03:32:49','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-02.jpg',0,'attachment','image/jpeg',0),(449,2,'2015-04-16 03:32:50','2015-04-16 03:32:50','','banner-03','','inherit','open','open','','banner-03','','','2015-04-16 03:32:50','2015-04-16 03:32:50','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-03.jpg',0,'attachment','image/jpeg',0),(450,2,'2015-04-16 03:32:52','2015-04-16 03:32:52','','banner-04','','inherit','open','open','','banner-04','','','2015-04-16 03:32:52','2015-04-16 03:32:52','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-04.jpg',0,'attachment','image/jpeg',0),(451,2,'2015-04-16 03:32:53','2015-04-16 03:32:53','','banner-05','','inherit','open','open','','banner-05','','','2015-04-16 03:32:53','2015-04-16 03:32:53','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-05.jpg',0,'attachment','image/jpeg',0),(452,2,'2015-04-16 03:32:54','2015-04-16 03:32:54','','banner-06','','inherit','open','open','','banner-06','','','2015-04-16 03:32:54','2015-04-16 03:32:54','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-06.jpg',0,'attachment','image/jpeg',0),(453,2,'2015-04-16 03:32:55','2015-04-16 03:32:55','','banner-07','','inherit','open','open','','banner-07','','','2015-04-16 03:32:55','2015-04-16 03:32:55','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-07.jpg',0,'attachment','image/jpeg',0),(454,2,'2015-04-16 03:32:56','2015-04-16 03:32:56','','banner-08','','inherit','open','open','','banner-08','','','2015-04-16 03:32:56','2015-04-16 03:32:56','',0,'http://genewyork.com/wp-content/uploads/2015/04/banner-08.jpg',0,'attachment','image/jpeg',0),(455,2,'2015-04-16 03:33:47','2015-04-16 03:33:47','','check','','inherit','open','open','','check','','','2015-04-16 03:33:47','2015-04-16 03:33:47','',0,'http://genewyork.com/wp-content/uploads/2015/04/check.png',0,'attachment','image/png',0),(456,2,'2015-04-16 03:33:47','2015-04-16 03:33:47','','check-01','','inherit','open','open','','check-01','','','2015-04-16 03:33:47','2015-04-16 03:33:47','',0,'http://genewyork.com/wp-content/uploads/2015/04/check-01.png',0,'attachment','image/png',0),(457,2,'2015-04-16 03:33:48','2015-04-16 03:33:48','','enjoy','','inherit','open','open','','enjoy','','','2015-04-16 03:33:48','2015-04-16 03:33:48','',0,'http://genewyork.com/wp-content/uploads/2015/04/enjoy.jpg',0,'attachment','image/jpeg',0),(458,2,'2015-04-16 03:33:49','2015-04-16 03:33:49','','find - Copy (2)','','inherit','open','open','','find-copy-2','','','2015-04-16 03:33:49','2015-04-16 03:33:49','',0,'http://genewyork.com/wp-content/uploads/2015/04/find-Copy-2.jpg',0,'attachment','image/jpeg',0),(459,2,'2015-04-16 03:33:50','2015-04-16 03:33:50','','find - Copy (3)','','inherit','open','open','','find-copy-3','','','2015-04-16 03:33:50','2015-04-16 03:33:50','',0,'http://genewyork.com/wp-content/uploads/2015/04/find-Copy-3.jpg',0,'attachment','image/jpeg',0),(460,2,'2015-04-16 03:33:51','2015-04-16 03:33:51','','find - Copy (4)','','inherit','open','open','','find-copy-4','','','2015-04-16 03:33:51','2015-04-16 03:33:51','',0,'http://genewyork.com/wp-content/uploads/2015/04/find-Copy-4.jpg',0,'attachment','image/jpeg',0),(461,2,'2015-04-16 03:33:51','2015-04-16 03:33:51','','find - Copy','','inherit','open','open','','find-copy','','','2015-04-16 03:33:51','2015-04-16 03:33:51','',0,'http://genewyork.com/wp-content/uploads/2015/04/find-Copy.jpg',0,'attachment','image/jpeg',0),(462,2,'2015-04-16 03:33:52','2015-04-16 03:33:52','','find','','inherit','open','open','','find','','','2015-04-16 03:33:52','2015-04-16 03:33:52','',0,'http://genewyork.com/wp-content/uploads/2015/04/find.jpg',0,'attachment','image/jpeg',0),(463,2,'2015-04-16 03:33:53','2015-04-16 03:33:53','','lastest-2-event-1','','inherit','open','open','','lastest-2-event-1','','','2015-04-16 03:33:53','2015-04-16 03:33:53','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-2-event-1.jpg',0,'attachment','image/jpeg',0),(464,2,'2015-04-16 03:33:53','2015-04-16 03:33:53','','lastest-2-event-2','','inherit','open','open','','lastest-2-event-2','','','2015-04-16 03:33:53','2015-04-16 03:33:53','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-2-event-2.jpg',0,'attachment','image/jpeg',0),(465,2,'2015-04-16 03:33:54','2015-04-16 03:33:54','','lastest-2-event-3','','inherit','open','open','','lastest-2-event-3','','','2015-04-16 03:33:54','2015-04-16 03:33:54','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-2-event-3.jpg',0,'attachment','image/jpeg',0),(466,2,'2015-04-16 03:33:54','2015-04-16 03:33:54','','lastest-2-event-4','','inherit','open','open','','lastest-2-event-4','','','2015-04-16 03:33:54','2015-04-16 03:33:54','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-2-event-4.jpg',0,'attachment','image/jpeg',0),(467,2,'2015-04-16 03:33:55','2015-04-16 03:33:55','','lastest-6','','inherit','open','open','','lastest-6','','','2015-04-16 03:33:55','2015-04-16 03:33:55','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-6.jpg',0,'attachment','image/jpeg',0),(468,2,'2015-04-16 03:33:56','2015-04-16 03:33:56','','lastest-Home-02-1','','inherit','open','open','','lastest-home-02-1','','','2015-04-16 03:33:56','2015-04-16 03:33:56','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-1.jpg',0,'attachment','image/jpeg',0),(469,2,'2015-04-16 03:33:57','2015-04-16 03:33:57','','lastest-Home-02-2','','inherit','open','open','','lastest-home-02-2','','','2015-04-16 03:33:57','2015-04-16 03:33:57','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-2.jpg',0,'attachment','image/jpeg',0),(470,2,'2015-04-16 03:33:57','2015-04-16 03:33:57','','lastest-Home-02-3','','inherit','open','open','','lastest-home-02-3','','','2015-04-16 03:33:57','2015-04-16 03:33:57','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-3.jpg',0,'attachment','image/jpeg',0),(471,2,'2015-04-16 03:33:58','2015-04-16 03:33:58','','lastest-Home-02-4','','inherit','open','open','','lastest-home-02-4','','','2015-04-16 03:33:58','2015-04-16 03:33:58','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-4.jpg',0,'attachment','image/jpeg',0),(472,2,'2015-04-16 03:33:59','2015-04-16 03:33:59','','lastest-Home-02-5','','inherit','open','open','','lastest-home-02-5','','','2015-04-16 03:33:59','2015-04-16 03:33:59','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-5.jpg',0,'attachment','image/jpeg',0),(473,2,'2015-04-16 03:33:59','2015-04-16 03:33:59','','lastest-Home-02-6','','inherit','open','open','','lastest-home-02-6','','','2015-04-16 03:33:59','2015-04-16 03:33:59','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-6.jpg',0,'attachment','image/jpeg',0),(474,2,'2015-04-16 03:34:00','2015-04-16 03:34:00','','lastest-Home-02-7','','inherit','open','open','','lastest-home-02-7','','','2015-04-16 03:34:00','2015-04-16 03:34:00','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-7.jpg',0,'attachment','image/jpeg',0),(475,2,'2015-04-16 03:34:01','2015-04-16 03:34:01','','lastest-Home-02-8','','inherit','open','open','','lastest-home-02-8','','','2015-04-16 03:34:01','2015-04-16 03:34:01','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-8.jpg',0,'attachment','image/jpeg',0),(476,2,'2015-04-16 03:34:02','2015-04-16 03:34:02','','lastest-Home-02-10','','inherit','open','open','','lastest-home-02-10','','','2015-04-16 03:34:02','2015-04-16 03:34:02','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-10.jpg',0,'attachment','image/jpeg',0),(477,2,'2015-04-16 03:34:02','2015-04-16 03:34:02','','number-one-logo','','inherit','open','open','','number-one-logo','','','2015-04-16 03:34:02','2015-04-16 03:34:02','',0,'http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png',0,'attachment','image/png',0),(479,2,'2015-04-16 03:49:37','2015-04-16 03:49:37','','logo-header-2','','inherit','open','open','','logo-header-2','','','2015-04-16 03:49:37','2015-04-16 03:49:37','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-header-2.png',0,'attachment','image/png',0),(481,2,'2015-04-16 04:03:39','2015-04-16 04:03:39','','enjoy','','inherit','open','open','','enjoy-2','','','2015-04-16 04:03:39','2015-04-16 04:03:39','',0,'http://genewyork.com/wp-content/uploads/2015/04/enjoy1.jpg',0,'attachment','image/jpeg',0),(523,2,'2015-04-16 08:15:43','2015-04-16 08:15:43','','icon-footer','','inherit','open','open','','icon-footer','','','2015-04-16 08:15:43','2015-04-16 08:15:43','',0,'http://genewyork.com/wp-content/uploads/2015/04/icon-footer.png',0,'attachment','image/png',0),(536,2,'2015-04-17 01:37:35','2015-04-17 01:37:35','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1442282104630{margin-bottom: 90px !important;}\"][title style=\"style3\" title_text=\"FIND COURSES\" icon_color=\"\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3684,3689,3682\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442281601138{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"ESL\" link=\"http://www.genewyork.com/programs/language-program/esl/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Toefl Prep\" link=\"http://www.genewyork.com/programs/language-program/toefl-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3690,3686,3685,3683,3680\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283230188{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Graphic Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/graphic-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Web Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/web-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Fashion Design\" link=\"http://www.genewyork.com/multimedia-design-program/fashion-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Color Theory\" link=\"http://www.genewyork.com/multimedia-design-program/color-theory/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Basic Drawing\" link=\"http://www.genewyork.com/multimedia-design-program/basic-drawing/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_gallery interval=\"5\" images=\"3681,3678,3687\" img_size=\"full\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442283170672{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Bookkeeping\" link=\"http://www.genewyork.com/programs/business-program/bookkeeping/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Accounting\" link=\"http://www.genewyork.com/programs/business-program/accounting/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Marketing Management\" link=\"http://www.genewyork.com/programs/business-program/marketing-management\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_gallery interval=\"5\" images=\"3688,3679\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283248087{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"NCLEX-RN Prep\" link=\"http://www.genewyork.com/programs/allied-health-program/nclex-rn-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Allied Health Training\" link=\"http://www.genewyork.com/programs/allied-health-program/allied-health-training/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3677\"][vc_column][our_introduce][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row]','Home','','publish','open','open','','home','','','2015-09-15 02:43:16','2015-09-15 02:43:16','',0,'http://wordpress.templaza.net/ethic/?page_id=536',0,'page','',0),(539,2,'2015-04-17 01:39:23','2015-04-17 01:39:23','','logo-header06','','inherit','open','open','','logo-header06','','','2015-04-17 01:39:23','2015-04-17 01:39:23','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-header06.png',0,'attachment','image/png',0),(542,2,'2015-04-17 04:46:24','2015-04-17 04:46:24','','logo-services','','inherit','open','open','','logo-services','','','2015-04-17 04:46:24','2015-04-17 04:46:24','',536,'http://genewyork.com/wp-content/uploads/2015/04/logo-services.png',0,'attachment','image/png',0),(581,2,'2015-04-17 09:36:55','2015-04-17 09:36:55','','cources-Home-04 - Copy (2)','','inherit','open','open','','cources-home-04-copy-2','','','2015-04-17 09:36:55','2015-04-17 09:36:55','',536,'http://genewyork.com/wp-content/uploads/2015/04/cources-Home-04-Copy-2.jpg',0,'attachment','image/jpeg',0),(582,2,'2015-04-17 09:36:56','2015-04-17 09:36:56','','cources-Home-04 - Copy (3)','','inherit','open','open','','cources-home-04-copy-3','','','2015-04-17 09:36:56','2015-04-17 09:36:56','',536,'http://genewyork.com/wp-content/uploads/2015/04/cources-Home-04-Copy-3.jpg',0,'attachment','image/jpeg',0),(583,2,'2015-04-17 09:36:57','2015-04-17 09:36:57','','cources-Home-04 - Copy','','inherit','open','open','','cources-home-04-copy','','','2015-04-17 09:36:57','2015-04-17 09:36:57','',536,'http://genewyork.com/wp-content/uploads/2015/04/cources-Home-04-Copy.jpg',0,'attachment','image/jpeg',0),(584,2,'2015-04-17 09:36:58','2015-04-17 09:36:58','','cources-Home-04','','inherit','open','open','','cources-home-04','','','2015-04-17 09:36:58','2015-04-17 09:36:58','',536,'http://genewyork.com/wp-content/uploads/2015/04/cources-Home-04.jpg',0,'attachment','image/jpeg',0),(597,2,'2015-04-17 10:48:36','2015-04-17 10:48:36','','intruction-Home-06','','inherit','open','open','','intruction-home-06','','','2015-04-17 10:48:36','2015-04-17 10:48:36','',536,'http://genewyork.com/wp-content/uploads/2015/04/intruction-Home-06.jpg',0,'attachment','image/jpeg',0),(603,2,'2015-04-18 02:41:53','2015-04-18 02:41:53','','logo-instruction-home6','','inherit','open','open','','logo-instruction-home6','','','2015-04-18 02:41:53','2015-04-18 02:41:53','',536,'http://genewyork.com/wp-content/uploads/2015/04/logo-instruction-home6.png',0,'attachment','image/png',0),(658,2,'2015-04-20 05:23:41','2015-04-20 05:23:41','','lastest-Home-02-1','','inherit','open','open','','lastest-home-02-1-2','','','2015-04-20 05:23:41','2015-04-20 05:23:41','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-11.jpg',0,'attachment','image/jpeg',0),(659,2,'2015-04-20 05:23:42','2015-04-20 05:23:42','','lastest-Home-02-2','','inherit','open','open','','lastest-home-02-2-2','','','2015-04-20 05:23:42','2015-04-20 05:23:42','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-21.jpg',0,'attachment','image/jpeg',0),(660,2,'2015-04-20 05:23:43','2015-04-20 05:23:43','','lastest-Home-02-3','','inherit','open','open','','lastest-home-02-3-2','','','2015-04-20 05:23:43','2015-04-20 05:23:43','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-31.jpg',0,'attachment','image/jpeg',0),(661,2,'2015-04-20 05:23:44','2015-04-20 05:23:44','','lastest-Home-02-4','','inherit','open','open','','lastest-home-02-4-2','','','2015-04-20 05:23:44','2015-04-20 05:23:44','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-41.jpg',0,'attachment','image/jpeg',0),(662,2,'2015-04-20 05:23:45','2015-04-20 05:23:45','','lastest-Home-02-5','','inherit','open','open','','lastest-home-02-5-2','','','2015-04-20 05:23:45','2015-04-20 05:23:45','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-51.jpg',0,'attachment','image/jpeg',0),(663,2,'2015-04-20 05:23:45','2015-04-20 05:23:45','','lastest-Home-02-6','','inherit','open','open','','lastest-home-02-6-2','','','2015-04-20 05:23:45','2015-04-20 05:23:45','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-61.jpg',0,'attachment','image/jpeg',0),(664,2,'2015-04-20 05:23:46','2015-04-20 05:23:46','','lastest-Home-02-7','','inherit','open','open','','lastest-home-02-7-2','','','2015-04-20 05:23:46','2015-04-20 05:23:46','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-71.jpg',0,'attachment','image/jpeg',0),(665,2,'2015-04-20 05:23:47','2015-04-20 05:23:47','','lastest-Home-02-8','','inherit','open','open','','lastest-home-02-8-2','','','2015-04-20 05:23:47','2015-04-20 05:23:47','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-81.jpg',0,'attachment','image/jpeg',0),(666,2,'2015-04-20 05:23:47','2015-04-20 05:23:47','','lastest-Home-02-10','','inherit','open','open','','lastest-home-02-10-2','','','2015-04-20 05:23:47','2015-04-20 05:23:47','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-Home-02-101.jpg',0,'attachment','image/jpeg',0),(703,2,'2015-04-20 10:06:43','2015-04-20 10:06:43','','logo-header5','','inherit','open','open','','logo-header5','','','2015-04-20 10:06:43','2015-04-20 10:06:43','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-header5.png',0,'attachment','image/png',0),(705,2,'2015-04-20 10:35:03','2015-04-20 10:35:03','','logo-header5','','inherit','open','open','','logo-header5-2','','','2015-04-20 10:35:03','2015-04-20 10:35:03','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-header51.png',0,'attachment','image/png',0),(707,2,'2015-04-20 10:35:52','2015-04-20 10:35:52','','logo-Header-07','','inherit','open','open','','logo-header-07','','','2015-04-20 10:35:52','2015-04-20 10:35:52','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-Header-07.png',0,'attachment','image/png',0),(711,2,'2015-04-20 12:03:38','2015-04-20 12:03:38','','logo-Home5','','inherit','open','open','','logo-home5','','','2015-04-20 12:03:38','2015-04-20 12:03:38','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-Home5.png',0,'attachment','image/png',0),(712,2,'2015-04-20 12:04:03','2015-04-20 12:04:03','','logo-1-Home5','','inherit','open','open','','logo-1-home5','','','2015-04-20 12:04:03','2015-04-20 12:04:03','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-1-Home5.png',0,'attachment','image/png',0),(718,2,'2015-04-20 13:00:08','2015-04-20 13:00:08','','cources-Home-05','','inherit','open','open','','cources-home-05','','','2015-04-20 13:00:08','2015-04-20 13:00:08','',0,'http://genewyork.com/wp-content/uploads/2015/04/cources-Home-05.jpg',0,'attachment','image/jpeg',0),(721,2,'2015-04-21 01:11:19','2015-04-21 01:11:19','','lastest-event','','inherit','open','open','','lastest-event','','','2015-04-21 01:11:19','2015-04-21 01:11:19','',0,'http://genewyork.com/wp-content/uploads/2015/04/lastest-event.jpg',0,'attachment','image/jpeg',0),(735,2,'2015-04-21 03:11:44','2015-04-21 03:11:44','','portfolio-1-Home-05','','inherit','open','open','','portfolio-1-home-05','','','2015-04-21 03:11:44','2015-04-21 03:11:44','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-1-Home-05.jpg',0,'attachment','image/jpeg',0),(738,2,'2015-04-21 03:13:48','2015-04-21 03:13:48','','portfolio-4-Home-05','','inherit','open','open','','portfolio-4-home-05','','','2015-04-21 03:13:48','2015-04-21 03:13:48','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-4-Home-05.jpg',0,'attachment','image/jpeg',0),(741,2,'2015-04-21 03:15:31','2015-04-21 03:15:31','','portfolio-3-Home-05','','inherit','open','open','','portfolio-3-home-05','','','2015-04-21 03:15:31','2015-04-21 03:15:31','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-3-Home-05.jpg',0,'attachment','image/jpeg',0),(745,2,'2015-04-21 03:17:23','2015-04-21 03:17:23','','portfolio-2-Home-05','','inherit','open','open','','portfolio-2-home-05','','','2015-04-21 03:17:23','2015-04-21 03:17:23','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-2-Home-05.jpg',0,'attachment','image/jpeg',0),(749,2,'2015-04-21 03:21:05','2015-04-21 03:21:05','','portfolio-5-Home-05','','inherit','open','open','','portfolio-5-home-05','','','2015-04-21 03:21:05','2015-04-21 03:21:05','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-5-Home-05.jpg',0,'attachment','image/jpeg',0),(785,2,'2015-04-21 10:00:45','2015-04-21 10:00:45','','life-student-Home-05','','inherit','open','open','','life-student-home-05','','','2015-04-21 10:00:45','2015-04-21 10:00:45','',0,'http://genewyork.com/wp-content/uploads/2015/04/life-student-Home-05.jpg',0,'attachment','image/jpeg',0),(801,2,'2015-04-22 03:12:04','2015-04-22 03:12:04','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Johnny Wickness','FOUNDER/ PROFESSOR','publish','closed','closed','','johnny-wickness','','','2015-04-22 03:12:04','2015-04-22 03:12:04','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=801',0,'ourteam','',0),(802,2,'2015-04-22 03:11:05','2015-04-22 03:11:05','','leader-team-Home-01','','inherit','open','open','','leader-team-home-01','','','2015-04-22 03:11:05','2015-04-22 03:11:05','',801,'http://genewyork.com/wp-content/uploads/2015/04/leader-team-Home-01.jpg',0,'attachment','image/jpeg',0),(803,2,'2015-04-22 03:13:36','2015-04-22 03:13:36','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Jeff Huntington',' PRINCIPAL/ PROFESSOR','publish','closed','closed','','jeff-huntington','','','2015-04-22 03:13:36','2015-04-22 03:13:36','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=803',0,'ourteam','',0),(804,2,'2015-04-22 03:14:45','2015-04-22 03:14:45','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Barbara Palvin',' DOCTOR','publish','closed','closed','','barbara-palvin','','','2015-04-22 03:14:45','2015-04-22 03:14:45','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=804',0,'ourteam','',0),(805,2,'2015-04-22 03:15:44','2015-04-22 03:15:44','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Larry Beowuf','MATH TEACHER','publish','closed','closed','','larry-beowuf','','','2015-04-22 03:15:44','2015-04-22 03:15:44','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=805',0,'ourteam','',0),(806,2,'2015-04-22 03:13:23','2015-04-22 03:13:23','','leader-team-3-Home-01','','inherit','open','open','','leader-team-3-home-01','','','2015-04-22 03:13:23','2015-04-22 03:13:23','',803,'http://genewyork.com/wp-content/uploads/2015/04/leader-team-3-Home-01.jpg',0,'attachment','image/jpeg',0),(807,2,'2015-04-22 03:13:25','2015-04-22 03:13:25','','leader-team-4-Home-01','','inherit','open','open','','leader-team-4-home-01','','','2015-04-22 03:13:25','2015-04-22 03:13:25','',803,'http://genewyork.com/wp-content/uploads/2015/04/leader-team-4-Home-01.jpg',0,'attachment','image/jpeg',0),(808,2,'2015-04-22 03:13:25','2015-04-22 03:13:25','','leader-tema-2-Home-01','','inherit','open','open','','leader-tema-2-home-01','','','2015-04-22 03:13:25','2015-04-22 03:13:25','',803,'http://genewyork.com/wp-content/uploads/2015/04/leader-tema-2-Home-01.jpg',0,'attachment','image/jpeg',0),(817,2,'2015-04-22 04:28:48','2015-04-22 04:28:48','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Larry Beowuf','MATH TEACHER','publish','closed','closed','','larry-beowuf-2','','','2015-04-22 04:28:48','2015-04-22 04:28:48','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=817',0,'ourteam','',0),(818,2,'2015-04-22 04:29:35','2015-04-22 04:29:35','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Fusce diam eros, condimentum quis dictum at, blandit vel sem. Fusce pharetra vitae est a sollicitudin. Ut pharetra quam ac libero malesuada tincidunt. Etiam pulvinar velit ac accumsan mollis. Duis eu ornare nunc. Donec ultricies porttitor dolor eget semper. Sed quis pretium nunc. Integer auctor ullamcorper lobortis. Maecenas faucibus dui eget nibh lobortis dignissim. Nulla malesuada sem porta, tempus sem sed, dictum ante.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Ut non accumsan turpis. Nulla vitae urna faucibus tellus vehicula iaculis. Sed pretium dictum consequat. Curabitur ultricies dapibus leo. Etiam in vestibulum elit, quis dapibus purus. Vivamus posuere felis ac nisl dignissim auctor. Pellentesque molestie orci id tortor posuere volutpat.','Barbara Palvin',' DOCTOR','publish','closed','closed','','barbara-palvin-2','','','2015-04-22 04:29:35','2015-04-22 04:29:35','',0,'http://wordpress.templaza.net/ethic/?post_type=ourteam&p=818',0,'ourteam','',0),(860,2,'2015-04-23 07:09:10','2015-04-23 07:09:10','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim.\n\nThank you.\n\n[tmm name=\"speaker\"]','INFORMATION EVENT','Excerpts are optional hand-crafted summaries of your content .','publish','open','open','','information-event','','','2015-04-23 07:09:10','2015-04-23 07:09:10','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=860',0,'tribe_events','',0),(861,2,'2015-04-23 07:09:03','2015-04-23 07:09:03','','images-informtion-Home-7','','inherit','open','open','','images-informtion-home-7','','','2015-04-23 07:09:03','2015-04-23 07:09:03','',860,'http://genewyork.com/wp-content/uploads/2015/04/images-informtion-Home-7.jpg',0,'attachment','image/jpeg',0),(872,2,'2015-04-23 09:07:21','2015-04-23 09:07:21','','life-student-Home-07','','inherit','open','open','','life-student-home-07','','','2015-04-23 09:07:21','2015-04-23 09:07:21','',0,'http://genewyork.com/wp-content/uploads/2015/04/life-student-Home-07.jpg',0,'attachment','image/jpeg',0),(888,2,'2015-04-30 01:28:45','2015-04-30 01:28:45','<ul class=\"tz-contact-wapper tz-contact-wapper-style-7\">\n <li class=\"theme-color-white\">\n <span class=\"theme-color-white\">YOU WANT TO KNOW MORE <br> INFORMATION? SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li class=\"theme-color-white\" ><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]\n </li>\n </ul>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','contact-form-style2','','publish','open','open','','contact-form-style2','','','2015-04-30 01:28:45','2015-04-30 01:28:45','',0,'http://wordpress.templaza.net/ethic/?post_type=wpcf7_contact_form&p=888',0,'wpcf7_contact_form','',0),(959,2,'2015-04-30 10:24:11','2015-04-30 10:24:11','','Logo-header3','','inherit','open','open','','logo-header3','','','2015-04-30 10:24:11','2015-04-30 10:24:11','',0,'http://genewyork.com/wp-content/uploads/2015/04/Logo-header3.png',0,'attachment','image/png',0),(961,2,'2015-04-30 11:05:46','2015-04-30 11:05:46','','logo-introduce-home3-','','inherit','open','open','','logo-introduce-home3','','','2015-04-30 11:05:46','2015-04-30 11:05:46','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-introduce-home3-.png',0,'attachment','image/png',0),(965,2,'2015-05-01 01:26:56','2015-05-01 01:26:56','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Excerpts are optional hand-crafted summaries of your content .','publish','open','open','','criminal-justice-camp-3','','','2015-05-01 01:26:56','2015-05-01 01:26:56','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=965',0,'tribe_events','',0),(966,2,'2015-05-01 01:39:05','2015-05-01 01:39:05','','number-one-1-Home-03','','inherit','open','open','','number-one-1-home-03','','','2015-05-01 01:39:05','2015-05-01 01:39:05','',965,'http://genewyork.com/wp-content/uploads/2015/05/number-one-1-Home-03.jpg',0,'attachment','image/jpeg',0),(989,2,'2015-05-01 04:41:25','2015-05-01 04:41:25','','portfolio-1-Home-03','','inherit','open','open','','portfolio-1-home-03','','','2015-05-01 04:41:25','2015-05-01 04:41:25','',0,'http://genewyork.com/wp-content/uploads/2015/04/portfolio-1-Home-03.jpg',0,'attachment','image/jpeg',0),(1057,2,'2015-05-01 09:27:36','2015-05-01 09:27:36','','logo-header4','','inherit','open','open','','logo-header4','','','2015-05-01 09:27:36','2015-05-01 09:27:36','',0,'http://genewyork.com/wp-content/uploads/2015/05/logo-header4.png',0,'attachment','image/png',0),(1059,2,'2015-05-01 10:48:15','2015-05-01 10:48:15','<ul class=\"tz-contact-wapper tz-contact-wapper-style-4\">\n <li class=\"theme-color-white\">\n <span class=\"theme-color-white\">WANT MORE INFORMATION?<br> SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li class=\"theme-color-white\" ><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]</li>\n </ul>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','contact-form-style4','','publish','open','open','','contact-form-style4','','','2015-05-01 10:48:15','2015-05-01 10:48:15','',0,'http://wordpress.templaza.net/ethic/?post_type=wpcf7_contact_form&p=1059',0,'wpcf7_contact_form','',0),(1067,2,'2015-05-02 01:25:22','2015-05-02 01:25:22','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Your Success in Your College','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet.','publish','open','open','','your-success-in-your-college-3','','','2015-05-02 01:25:22','2015-05-02 01:25:22','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=1067',0,'tribe_events','',0),(1068,2,'2015-05-02 01:25:15','2015-05-02 01:25:15','','lastest-event-1-Home-04','','inherit','open','open','','lastest-event-1-home-04','','','2015-05-02 01:25:15','2015-05-02 01:25:15','',1067,'http://genewyork.com/wp-content/uploads/2015/05/lastest-event-1-Home-04.jpg',0,'attachment','image/jpeg',0),(1069,2,'2015-05-02 01:26:59','2015-05-02 01:26:59','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Your Success in Your College','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet.','publish','open','open','','your-success-in-your-college-4','','','2015-05-02 01:26:59','2015-05-02 01:26:59','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=1069',0,'tribe_events','',0),(1070,2,'2015-05-02 01:26:49','2015-05-02 01:26:49','','lastest-event-2-Home-04','','inherit','open','open','','lastest-event-2-home-04','','','2015-05-02 01:26:49','2015-05-02 01:26:49','',1069,'http://genewyork.com/wp-content/uploads/2015/05/lastest-event-2-Home-04.jpg',0,'attachment','image/jpeg',0),(1071,2,'2015-05-02 01:29:18','2015-05-02 01:29:18','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Pesticide Applicators Training','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet.','publish','open','open','','pesticide-applicators-training-4','','','2015-05-02 01:29:18','2015-05-02 01:29:18','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=1071',0,'tribe_events','',0),(1073,2,'2015-05-02 01:28:59','2015-05-02 01:28:59','','lastest-event-3-Home-04','','inherit','open','open','','lastest-event-3-home-04','','','2015-05-02 01:28:59','2015-05-02 01:28:59','',1071,'http://genewyork.com/wp-content/uploads/2015/05/lastest-event-3-Home-04.jpg',0,'attachment','image/jpeg',0),(1074,2,'2015-05-02 01:33:36','2015-05-02 01:33:36','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet.','publish','open','open','','criminal-justice-camp-4','','','2015-05-02 01:33:36','2015-05-02 01:33:36','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=1074',0,'tribe_events','',0),(1076,2,'2015-05-02 01:33:29','2015-05-02 01:33:29','','lastest-event-4-Home-04','','inherit','open','open','','lastest-event-4-home-04','','','2015-05-02 01:33:29','2015-05-02 01:33:29','',1074,'http://genewyork.com/wp-content/uploads/2015/05/lastest-event-4-Home-04.jpg',0,'attachment','image/jpeg',0),(1077,2,'2015-05-02 01:33:38','2015-05-02 01:33:38','','LenaSky','','publish','open','open','','lenasky','','','2015-05-02 01:33:38','2015-05-02 01:33:38','',0,'http://wordpress.templaza.net/ethic/?tribe_organizer=lenasky',0,'tribe_organizer','',0),(1078,2,'2015-05-02 01:33:39','2015-05-02 01:33:39','','Life Of King','','publish','open','open','','life-of-king','','','2015-05-02 01:33:39','2015-05-02 01:33:39','',0,'http://wordpress.templaza.net/ethic/?tribe_venue=life-of-king',0,'tribe_venue','',0),(1084,2,'2015-05-02 02:13:16','2015-05-02 02:13:16','','instruction','','inherit','open','open','','instruction','','','2015-05-02 02:13:16','2015-05-02 02:13:16','',0,'http://genewyork.com/wp-content/uploads/2015/05/instruction.jpg',0,'attachment','image/jpeg',0),(1085,2,'2015-05-02 02:14:05','2015-05-02 02:14:05','','images1','','inherit','open','open','','images1','','','2015-05-02 02:14:05','2015-05-02 02:14:05','',0,'http://genewyork.com/wp-content/uploads/2015/05/images1.png',0,'attachment','image/png',0),(1113,2,'2015-05-02 07:23:59','2015-05-02 07:23:59','','portfolio-2-Home-04','','inherit','open','open','','portfolio-2-home-04','','','2015-05-02 07:23:59','2015-05-02 07:23:59','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-2-Home-04.jpg',0,'attachment','image/jpeg',0),(1114,2,'2015-05-02 07:25:34','2015-05-02 07:25:34','','cources-Home-04 - Copy (2)','','inherit','open','open','','cources-home-04-copy-2-2','','','2015-05-02 07:25:34','2015-05-02 07:25:34','',0,'http://genewyork.com/wp-content/uploads/2015/05/cources-Home-04-Copy-2.jpg',0,'attachment','image/jpeg',0),(1115,2,'2015-05-02 07:25:48','2015-05-02 07:25:48','','lastest-event-4-Home-04','','inherit','open','open','','lastest-event-4-home-04-2','','','2015-05-02 07:25:48','2015-05-02 07:25:48','',0,'http://genewyork.com/wp-content/uploads/2015/05/lastest-event-4-Home-041.jpg',0,'attachment','image/jpeg',0),(1116,2,'2015-05-02 09:32:08','2015-05-02 09:32:08','','images-introduce-Home-04','','inherit','open','open','','images-introduce-home-04','','','2015-05-02 09:32:08','2015-05-02 09:32:08','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-introduce-Home-04.jpg',0,'attachment','image/jpeg',0),(1117,2,'2015-05-02 09:32:34','2015-05-02 09:32:34','','logo-introduce-home-4','','inherit','open','open','','logo-introduce-home-4','','','2015-05-02 09:32:34','2015-05-02 09:32:34','',0,'http://genewyork.com/wp-content/uploads/2015/05/logo-introduce-home-4.png',0,'attachment','image/png',0),(1131,2,'2015-05-02 10:52:39','2015-05-02 10:52:39','','logo-banner','','inherit','open','open','','logo-banner','','','2015-05-02 10:52:39','2015-05-02 10:52:39','',0,'http://genewyork.com/wp-content/uploads/2015/05/logo-banner.png',0,'attachment','image/png',0),(1132,2,'2015-05-02 10:53:43','2015-05-02 10:53:43','','logo-scroll','','inherit','open','open','','logo-scroll','','','2015-05-02 10:53:43','2015-05-02 10:53:43','',0,'http://genewyork.com/wp-content/uploads/2015/05/logo-scroll.png',0,'attachment','image/png',0),(1141,2,'2015-05-04 07:11:49','2015-05-04 07:11:49','','introduce-Home-01','','inherit','open','open','','introduce-home-01','','','2015-05-04 07:11:49','2015-05-04 07:11:49','',0,'http://genewyork.com/wp-content/uploads/2015/05/introduce-Home-01.jpg',0,'attachment','image/jpeg',0),(1160,2,'2015-05-04 09:02:02','2015-05-04 09:02:02','','lastest-image-Home-01','','inherit','open','open','','lastest-image-home-01','','','2015-05-04 09:02:02','2015-05-04 09:02:02','',0,'http://genewyork.com/wp-content/uploads/2015/05/lastest-image-Home-01.png',0,'attachment','image/png',0),(1162,2,'2015-05-04 09:02:32','2015-05-04 09:02:32','','lastest-background-Home-01','','inherit','open','open','','lastest-background-home-01','','','2015-05-04 09:02:32','2015-05-04 09:02:32','',0,'http://genewyork.com/wp-content/uploads/2015/05/lastest-background-Home-01.jpg',0,'attachment','image/jpeg',0),(1212,2,'2015-05-05 04:41:35','2015-05-05 04:41:35','','port-folio-1-Home-01','','inherit','open','open','','port-folio-1-home-01','','','2015-05-05 04:41:35','2015-05-05 04:41:35','',0,'http://genewyork.com/wp-content/uploads/2015/05/port-folio-1-Home-01.jpg',0,'attachment','image/jpeg',0),(1222,2,'2015-05-05 08:01:12','2015-05-05 08:01:12','','port-folio-1-Home-01','','inherit','open','open','','port-folio-1-home-01-2','','','2015-05-05 08:01:12','2015-05-05 08:01:12','',0,'http://genewyork.com/wp-content/uploads/2015/05/port-folio-1-Home-011.jpg',0,'attachment','image/jpeg',0),(1223,2,'2015-05-05 08:01:50','2015-05-05 08:01:50','','portfolio-9-Courses-2','','inherit','open','open','','portfolio-9-courses-2','','','2015-05-05 08:01:50','2015-05-05 08:01:50','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-9-Courses-2.jpg',0,'attachment','image/jpeg',0),(1227,2,'2015-05-05 08:28:16','2015-05-05 08:28:16','','images-4-Courses-1','','inherit','open','open','','images-4-courses-1','','','2015-05-05 08:28:16','2015-05-05 08:28:16','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-4-Courses-1.jpg',0,'attachment','image/jpeg',0),(1277,2,'2015-05-08 03:41:27','2015-05-08 03:41:27','','port-folio-1-Home-01','','inherit','open','open','','port-folio-1-home-01-3','','','2015-05-08 03:41:27','2015-05-08 03:41:27','',0,'http://genewyork.com/wp-content/uploads/2015/05/port-folio-1-Home-012.jpg',0,'attachment','image/jpeg',0),(1278,2,'2015-05-08 03:41:57','2015-05-08 03:41:57','','portfolio-2-Home-01','','inherit','open','open','','portfolio-2-home-01','','','2015-05-08 03:41:57','2015-05-08 03:41:57','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-2-Home-01.jpg',0,'attachment','image/jpeg',0),(1279,2,'2015-05-08 03:42:49','2015-05-08 03:42:49','','portfolio-3-Home-01','','inherit','open','open','','portfolio-3-home-01','','','2015-05-08 03:42:49','2015-05-08 03:42:49','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-3-Home-01.jpg',0,'attachment','image/jpeg',0),(1280,2,'2015-05-08 03:43:09','2015-05-08 03:43:09','','portfolio-4-Home-01','','inherit','open','open','','portfolio-4-home-01','','','2015-05-08 03:43:09','2015-05-08 03:43:09','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-4-Home-01.jpg',0,'attachment','image/jpeg',0),(1281,2,'2015-05-08 03:44:22','2015-05-08 03:44:22','','portfolio-2-Home-03','','inherit','open','open','','portfolio-2-home-03','','','2015-05-08 03:44:22','2015-05-08 03:44:22','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-2-Home-03.jpg',0,'attachment','image/jpeg',0),(1282,2,'2015-05-08 03:44:48','2015-05-08 03:44:48','','portfolio-3-Home-03','','inherit','open','open','','portfolio-3-home-03','','','2015-05-08 03:44:48','2015-05-08 03:44:48','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-3-Home-03.jpg',0,'attachment','image/jpeg',0),(1283,2,'2015-05-08 03:45:19','2015-05-08 03:45:19','','portfolio-1-Home-03','','inherit','open','open','','portfolio-1-home-03-2','','','2015-05-08 03:45:19','2015-05-08 03:45:19','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-1-Home-03.jpg',0,'attachment','image/jpeg',0),(1357,2,'2015-05-12 10:11:32','2015-05-12 10:11:32','','login-Home-03','','inherit','open','open','','login-home-03','','','2015-05-12 10:11:32','2015-05-12 10:11:32','',0,'http://genewyork.com/wp-content/uploads/2015/04/login-Home-03.jpg',0,'attachment','image/jpeg',0),(1384,2,'2015-05-13 10:24:24','2015-05-13 10:24:24','','logo-header-1','','inherit','open','open','','logo-header-1','','','2015-05-13 10:24:24','2015-05-13 10:24:24','',0,'http://genewyork.com/wp-content/uploads/2015/04/logo-header-1.png',0,'attachment','image/png',0),(1398,2,'2015-05-14 01:43:24','2015-05-14 01:43:24','','portfolio-3-Home-07','','inherit','open','open','','portfolio-3-home-07','','','2015-05-14 01:43:24','2015-05-14 01:43:24','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-3-Home-07.jpg',0,'attachment','image/jpeg',0),(1441,2,'2015-05-14 10:52:02','2015-05-14 10:52:02','[theme-my-login]','Log In','','publish','closed','closed','','login-2','','','2015-05-14 10:52:02','2015-05-14 10:52:02','',0,'http://wordpress.templaza.net/ethic/?page_id=1441',0,'page','',0),(1442,2,'2015-05-14 10:52:03','2015-05-14 10:52:03','[theme-my-login]','Log Out','','publish','closed','closed','','logout-2','','','2015-05-14 10:52:03','2015-05-14 10:52:03','',0,'http://wordpress.templaza.net/ethic/?page_id=1442',0,'page','',0),(1443,2,'2015-05-14 10:52:03','2015-05-14 10:52:03','[theme-my-login]','Register','','publish','closed','closed','','register-2','','','2015-05-14 10:52:03','2015-05-14 10:52:03','',0,'http://wordpress.templaza.net/ethic/?page_id=1443',0,'page','',0),(1444,2,'2015-05-14 10:52:03','2015-05-14 10:52:03','[theme-my-login]','Lost Password','','publish','closed','closed','','lostpassword-2','','','2015-05-14 10:52:03','2015-05-14 10:52:03','',0,'http://wordpress.templaza.net/ethic/?page_id=1444',0,'page','',0),(1445,2,'2015-05-14 10:52:03','2015-05-14 10:52:03','[theme-my-login]','Reset Password','','publish','closed','closed','','resetpass-2','','','2015-05-14 10:52:03','2015-05-14 10:52:03','',0,'http://wordpress.templaza.net/ethic/?page_id=1445',0,'page','',0),(1454,2,'2015-05-14 11:04:26','2015-05-14 11:04:26','[theme-my-login]','Your Profile','','publish','closed','closed','','your-profile','','','2015-05-14 11:04:26','2015-05-14 11:04:26','',0,'http://wordpress.templaza.net/ethic/?page_id=1454',0,'page','',0),(1484,2,'2015-05-16 03:49:43','2015-05-16 03:49:43','','image-1-Blog-01-Column','','inherit','open','open','','image-1-blog-01-column','','','2015-05-16 03:49:43','2015-05-16 03:49:43','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-1-Blog-01-Column.jpg',0,'attachment','image/jpeg',0),(1499,2,'2015-05-18 03:49:53','2015-05-18 03:49:53','','portfolio-9-Courses-2','','inherit','open','open','','portfolio-9-courses-2-2','','','2015-05-18 03:49:53','2015-05-18 03:49:53','',0,'http://genewyork.com/wp-content/uploads/2015/05/portfolio-9-Courses-21.jpg',0,'attachment','image/jpeg',0),(1537,2,'2015-05-20 07:13:41','2015-05-20 07:13:41','','image-2-Blog-01-Column','','inherit','open','open','','image-2-blog-01-column','','','2015-05-20 07:13:41','2015-05-20 07:13:41','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-2-Blog-01-Column.jpg',0,'attachment','image/jpeg',0),(1540,2,'2015-05-20 07:16:55','2015-05-20 07:16:55','','image-3-Blog-01-Column','','inherit','open','open','','image-3-blog-01-column','','','2015-05-20 07:16:55','2015-05-20 07:16:55','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-3-Blog-01-Column.jpg',0,'attachment','image/jpeg',0),(1548,2,'2015-05-20 07:31:10','2015-05-20 07:31:10','','image-4-Blog-01-Column','','inherit','open','open','','image-4-blog-01-column','','','2015-05-20 07:31:10','2015-05-20 07:31:10','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-4-Blog-01-Column.jpg',0,'attachment','image/jpeg',0),(1571,2,'2015-05-21 10:31:40','2015-05-21 10:31:40','','images-1-Blog-2-Column','','inherit','open','open','','images-1-blog-2-column','','','2015-05-21 10:31:40','2015-05-21 10:31:40','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-1-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(1573,2,'2015-05-21 10:33:45','2015-05-21 10:33:45','','images-2-Blog-2-Column','','inherit','open','open','','images-2-blog-2-column','','','2015-05-21 10:33:45','2015-05-21 10:33:45','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-2-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(1576,2,'2015-05-21 10:35:07','2015-05-21 10:35:07','','images-3-Blog-2-Column','','inherit','open','open','','images-3-blog-2-column','','','2015-05-21 10:35:07','2015-05-21 10:35:07','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-3-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(1579,2,'2015-05-21 10:37:18','2015-05-21 10:37:18','','images-4-RightSidebar','','inherit','open','open','','images-4-rightsidebar','','','2015-05-21 10:37:18','2015-05-21 10:37:18','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-4-RightSidebar.jpg',0,'attachment','image/jpeg',0),(1582,2,'2015-05-21 10:39:20','2015-05-21 10:39:20','','images-5-Blog-2-Column','','inherit','open','open','','images-5-blog-2-column','','','2015-05-21 10:39:20','2015-05-21 10:39:20','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-5-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(1586,2,'2015-05-21 10:43:15','2015-05-21 10:43:15','','images-6-Blog-2-Column','','inherit','open','open','','images-6-blog-2-column','','','2015-05-21 10:43:15','2015-05-21 10:43:15','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-6-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(1598,2,'2015-05-22 01:40:13','2015-05-22 01:40:13','','images-1-RightSidebar','','inherit','open','open','','images-1-rightsidebar','','','2015-05-22 01:40:13','2015-05-22 01:40:13','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-1-RightSidebar.jpg',0,'attachment','image/jpeg',0),(1601,2,'2015-05-22 01:42:50','2015-05-22 01:42:50','','images-2-RightSidebar','','inherit','open','open','','images-2-rightsidebar','','','2015-05-22 01:42:50','2015-05-22 01:42:50','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-2-RightSidebar.jpg',0,'attachment','image/jpeg',0),(1606,2,'2015-05-22 01:46:57','2015-05-22 01:46:57','','Timeline-01','','inherit','open','open','','timeline-01','','','2015-05-22 01:46:57','2015-05-22 01:46:57','',0,'http://genewyork.com/wp-content/uploads/2015/05/Timeline-01.jpg',0,'attachment','image/jpeg',0),(1611,2,'2015-05-22 01:56:03','2015-05-22 01:56:03','','images-6-RightSidebar','','inherit','open','open','','images-6-rightsidebar','','','2015-05-22 01:56:03','2015-05-22 01:56:03','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-6-RightSidebar.jpg',0,'attachment','image/jpeg',0),(1628,2,'2015-05-22 10:35:08','2015-05-22 10:35:08','','404-Page','','inherit','open','open','','404-page','','','2015-05-22 10:35:08','2015-05-22 10:35:08','',0,'http://genewyork.com/wp-content/uploads/2015/04/404-Page.jpg',0,'attachment','image/jpeg',0),(1632,2,'2015-05-22 10:55:23','2015-05-22 10:55:23','','Activate','','publish','closed','closed','','activate','','','2015-05-22 10:55:23','2015-05-22 10:55:23','',0,'http://wordpress.templaza.net/ethic/activate/',0,'page','',0),(1634,2,'2015-05-23 01:44:39','2015-05-23 01:44:39','<p class=\"desc __forum_desc ipsType_small\">a forum for Design Technology teachers</p>','Design and Technology','','publish','closed','open','','design-and-technology','','','2015-05-23 01:44:39','2015-05-23 01:44:39','',0,'http://wordpress.templaza.net/ethic/?post_type=forum&p=1634',0,'forum','',0),(1636,2,'2015-05-23 01:47:36','2015-05-23 01:47:36','This is the main forum section. It serves as a container for categories for your topics.','Welcome','','publish','closed','open','','welcome','','','2015-05-23 01:47:36','2015-05-23 01:47:36','',0,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1636',0,'topic','',0),(1638,2,'2015-05-23 01:48:18','2015-05-23 01:48:18','This is the main forum section. It serves as a container for categories for your topics.','Suggestion Box','','publish','closed','open','','suggestion-box','','','2015-05-23 01:48:18','2015-05-23 01:48:18','',0,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1638',0,'topic','',0),(1640,2,'2015-05-23 01:50:02','2015-05-23 01:50:02','I have been asked to make a presentation on using the ways music can be used in otehr subjects. If you use music in any way eg: tables to music, Mozart as background music etc. please let me know either through this topic or Email me directly.','Tutorials & Tips','','publish','closed','open','','tutorials-tips','','','2015-05-23 01:50:02','2015-05-23 01:50:02','',1667,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1640',0,'topic','',0),(1642,2,'2015-05-23 01:52:10','2015-05-23 01:52:10','This is the main forum section. It serves as a container for categories for your topics.','Reply Group Guest','','publish','closed','open','','reply-1','','','2015-05-23 01:52:10','2015-05-23 01:52:10','',0,'http://wordpress.templaza.net/ethic/?post_type=reply&p=1642',0,'reply','',0),(1644,2,'2015-05-23 01:55:29','2015-05-23 01:55:29','This is the main forum section. It serves as a container for categories for your topics.','Main Forum 01','','publish','closed','open','','main-forum-01','','','2015-05-23 01:55:29','2015-05-23 01:55:29','',1634,'http://wordpress.templaza.net/ethic/?post_type=forum&p=1644',0,'forum','',0),(1646,2,'2015-05-23 01:56:12','2015-05-23 01:56:12','This is the main forum section. It serves as a container for categories for your topics.','Welcome','','publish','closed','open','','welcome-2','','','2015-05-23 01:56:12','2015-05-23 01:56:12','',1644,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1646',0,'topic','',0),(1648,2,'2015-05-23 01:57:23','2015-05-23 01:57:23','This is the main forum section. It serves as a container for categories for your topics.','Suggestion Box','','publish','closed','open','','suggestion-box-2','','','2015-05-23 01:57:23','2015-05-23 01:57:23','',1662,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1648',0,'topic','',0),(1650,2,'2015-05-23 01:58:05','2015-05-23 01:58:05','This is the main forum section. It serves as a container for categories for your topics.','Tutorials & Tips','','publish','closed','open','','tutorials-tips-2','','','2015-05-23 01:58:05','2015-05-23 01:58:05','',1644,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1650',0,'topic','',0),(1655,2,'2015-05-23 02:13:51','0000-00-00 00:00:00','','Forum 2','','draft','closed','closed','','','','','2015-05-23 02:13:51','0000-00-00 00:00:00','',0,'http://wordpress.templaza.net/ethic/?post_type=forum&p=1655',0,'forum','',0),(1656,2,'2015-05-23 02:17:00','2015-05-23 02:17:00','Reply To: Tutorials & Tips \nReply To: Tutorials & Tips','','','publish','closed','open','','1656','','','2015-05-23 02:17:00','2015-05-23 02:17:00','',1650,'http://wordpress.templaza.net/ethic/forums/reply/1656/',1,'reply','',0),(1657,2,'2015-05-23 02:17:38','2015-05-23 02:17:38','TruongDX Reply To: Tutorials & Tips','','','publish','closed','open','','1657','','','2015-05-23 02:17:38','2015-05-23 02:17:38','',1650,'http://wordpress.templaza.net/ethic/forums/reply/1657/',2,'reply','',0),(1659,2,'2015-05-23 02:49:38','2015-05-23 02:49:38','New to bbPress?, Not sure where to begin? Getting Started is here to help! Everything you need to know about setting up bbPress is here from installing and activating to getting your first forum up and running.','HOPKINS CYCLING','','publish','closed','open','','hopkins-cycling','','','2015-05-23 02:49:38','2015-05-23 02:49:38','',0,'http://wordpress.templaza.net/ethic/forums/forum/hopkins-cycling/',0,'forum','',0),(1661,2,'2015-05-23 02:52:02','2015-05-23 02:52:02','This page has no content of its own, but contains some sub-pages listed in the sidebar.\n\nPlease edit this page and add something helpful!','Topic in “HOPKINS CYCLING”','','publish','closed','open','','topic-in-hopkins-cycling','','','2015-05-23 02:52:02','2015-05-23 02:52:02','',1659,'http://wordpress.templaza.net/ethic/forums/topic/topic-in-hopkins-cycling/',0,'topic','',0),(1662,2,'2015-05-23 04:10:59','2015-05-23 04:10:59','a forum for teachers of Media Studies','Media Studies','','publish','closed','open','','media-studies','','','2015-05-23 04:10:59','2015-05-23 04:10:59','',0,'http://wordpress.templaza.net/ethic/?post_type=forum&p=1662',0,'forum','',0),(1667,2,'2015-05-25 10:16:39','2015-05-25 10:16:39','a forum for teachers of Government and Politics','Government and Politics','','publish','closed','open','','government-and-politics','','','2015-05-25 10:16:39','2015-05-25 10:16:39','',0,'http://wordpress.templaza.net/ethic/?post_type=forum&p=1667',0,'forum','',0),(1672,2,'2015-05-26 09:19:20','2015-05-26 09:19:20','This is the main forum section. It serves as a container for categories for your topics.','Global Moderator','','publish','closed','open','','global-moderator','','','2015-05-26 09:19:20','2015-05-26 09:19:20','',1662,'http://wordpress.templaza.net/ethic/?post_type=topic&p=1672',0,'topic','',0),(1676,2,'2015-05-26 10:51:39','2015-05-26 10:51:39','This is the main forum section. It serves as a container for categories for your topics.','','','publish','closed','open','','1676','','','2015-05-26 10:51:39','2015-05-26 10:51:39','',1672,'http://wordpress.templaza.net/ethic/forums/reply/1676/',1,'reply','',0),(1677,2,'2015-05-27 01:30:09','2015-05-27 01:30:09','This is group test!','Group Guest','','publish','closed','open','','group-guest','','','2015-05-27 01:30:09','2015-05-27 01:30:09','',0,'http://wordpress.templaza.net/ethic/forums/forum/group-guest/',0,'forum','',0),(1680,2,'2015-05-27 02:09:38','2015-05-27 02:09:38','Reply: Your account has the ability to post unrestricted HTML content.','','','publish','closed','open','','1680','','','2015-05-27 02:09:38','2015-05-27 02:09:38','',1672,'http://wordpress.templaza.net/ethic/forums/reply/1680/',2,'reply','',0),(1683,2,'2015-05-28 03:27:09','2015-05-28 03:27:09','This is description for topic. My name is Truong, i am twenty four years old. I from to VietNam, I am a web developer. you can contact to me with email address: truongcat.9x@gmail.com or support@templaza.com. We are very happy when support you! Nice a day! ','This is a new topic','','publish','closed','open','','this-is-a-new-topic','','','2015-05-28 03:27:09','2015-05-28 03:27:09','',1677,'http://wordpress.templaza.net/ethic/forums/topic/this-is-a-new-topic/',0,'topic','',0),(1685,2,'2015-05-28 03:38:14','2015-05-28 03:38:14','i will reply to you. I very happy because you felling interesting with our product. Thank you contact with me!','','','publish','closed','open','','1685','','','2015-05-28 03:38:14','2015-05-28 03:38:14','',1683,'http://wordpress.templaza.net/ethic/forums/reply/1685/',1,'reply','',0),(1687,2,'2015-05-29 02:27:45','2015-05-29 02:27:45','This is group for idol mathematician!','Group Math','','private','closed','open','','group-math','','','2015-05-29 02:27:45','2015-05-29 02:27:45','',0,'http://wordpress.templaza.net/ethic/forums/forum/group-math/',0,'forum','',0),(1689,2,'2015-05-29 04:34:13','2015-05-29 04:34:13','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"+1 (646)-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][title style=\"style2\" title_text=\"Reach out to us\" icon_color=\"#ff0000\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Feel free to call us on +1 (646)-794-8333 and our representative will help you with all your questions.\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? We are here for you.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Send us a message and we will get back to you promptly.\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','publish','open','open','','contact-us','','','2015-09-06 04:24:27','2015-09-06 04:24:27','',0,'http://wordpress.templaza.net/ethic/?page_id=1689',0,'page','',0),(1701,2,'2015-05-29 08:04:21','2015-05-29 08:04:21','<div class=\"tz-map-form\">\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\r\n <label>YOUR NAME<span>(Required)</span></label>[text txtyourname class:tz-username class:form-control]\r\n <label>YOUR EMAIL<span>(Required)</span></label>[email txtemailcontact class:tz-email class:form-control]\r\n <label>SUBJECT</label>[text txt_subject_contact class:tz-subject class:form-control ]\r\n </div>\r\n <div class=\"col-lg-6 col-md-6 col-sm-6 col-xs-12\">\r\n <label>MESSAGES<span>(Required)</span></label>[textarea textarea-message 40x8 class:txt-area-contact class:form-control ]\r\n </div>\r\n <div class=\"col-lg-12 col-md-12 col-sm-12 col-xs-12\">\r\n <div class=\"tz-comment-post\">\r\n <span><i class=\"fa fa-envelope\"></i>[submit \"SEND\"]</span>\r\n </div>\r\n </div>\r\n </div>\n\n\n\ngenywebmaster@gmail.com\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Page contact us','','publish','open','open','','page-contact-us','','','2015-08-29 20:33:27','2015-08-29 20:33:27','',0,'http://wordpress.templaza.net/ethic/?post_type=wpcf7_contact_form&p=1701',0,'wpcf7_contact_form','',0),(1752,2,'2015-06-02 01:44:33','2015-06-02 01:44:33','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row full_height=\"yes\"][vc_column el_class=\"about-us-carousel\" css=\".vc_custom_1441402830563{padding: 0px !important;background-color: #f6f6f6 !important;}\"][vc_separator border_width=\"3\"][title style=\"style2\" title_text=\"GENY School Interiors\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"GENY has multiple computer rooms, student lounge, library and kitchen for our students and staff.\"][vc_column_text css=\".vc_custom_1441402914772{margin-top: -50px !important;margin-bottom: 50px !important;}\"]\r\n\r\n[huge_it_slider id=\"5\"]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','About Us','','publish','open','open','','about-us','','','2015-09-04 21:42:26','2015-09-04 21:42:26','',0,'http://wordpress.templaza.net/ethic/?page_id=1752',0,'page','',0),(1755,2,'2015-06-02 01:44:18','2015-06-02 01:44:18','','about_us_introduce','','inherit','open','open','','about_us_introduce','','','2015-06-02 01:44:18','2015-06-02 01:44:18','',1752,'http://genewyork.com/wp-content/uploads/2015/06/about_us_introduce.jpg',0,'attachment','image/jpeg',0),(1791,2,'2015-06-02 07:04:30','2015-06-02 07:04:30','[vc_row][vc_column][tzheader header_option=\"header2\" logo=\"479\"][/vc_column][/vc_row][vc_row][vc_column][title title_text=\"OUR SERVICES\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"contact_us_feature\" title_text=\"SHORTCODE\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433229980541{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #f7f7f7 !important;}\"][vc_column width=\"1/2\" el_class=\"tz-offcanvans-feature-shortcode\" css=\".vc_custom_1436751223164{padding-right: 0px !important;padding-left: 0px !important;}\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433229964587{margin-top: 15px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1436751565202{background-color: #ffffff !important;}\"][vc_row_inner][vc_column_inner css=\".vc_custom_1433230090410{background-color: #ffffff !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-login\"][/vc_column_inner][/vc_row_inner][/vc_column][vc_column width=\"1/4\"][tz-video choose_video_option=\"style2\" icon_video=\"fa fa-video-camera\" permalink_article_video=\"http://www.templaza.com/\" color_icon=\"#ffffff\" bg_color_icon=\"#2d938e\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"1357\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\" css=\".vc_custom_1433231813284{background-color: #e8be6c !important;}\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" link=\"url:http%3A%2F%2F%3Cp%20style%3D%22text-align%3A%20center%3B%22%3E%5Bicon%20name%3D%22anchor%22%20class%3D%22%22%5D%3C%2Fp%3E%20%20%3Ch4%20style%3D%22text-align%3A%20center%3B%22%3E%3Cspan%20style%3D%22color%3A%20%23ffffff%3B%22%3EComunication%20Studies%3C%2Fspan%3E%3C%2Fh4%3E%20%3Cp%20style%3D%22text-align%3A%20center%3B%22%3E%3Cspan%20style%3D%22color%3A%20%23ffffff%3B%22%3ELorem%20ipsum%20dolor%20sit%20amet%2C%20consectetur%20adipiscing%20elit.%20Nullam%20elementum%20nisi%20eget%20mi%20mollis.%20Lorem%20ipsum%20dolor%20amet%2C%20consectetur%20adipiscing%20elit.%20Elementum%20nisi%20eget%20mi%20mollis%20...%3C%2Fspan%3E%3C%2Fp%3E%20%3Cp%20style%3D%22text-align%3A%20center%3B%22%3E%5Bbutton%20type_choose_style%3D%22Style%20Button%202%22%20background%3D%22%23334878%22%20title%3D%22Film%20Studies%22%20link%3D%22http%3A%2F%2Fwww.templaza.com%2F%22%20%5D%5B%2Fbutton%5D%5Bbutton%20type_choose_style%3D%22Style%20Button%202%22%20background%3D%22%23334878%22%20title%3D%22Mass%20Media%22%20link%3D%22http%3A%2F%2Fwww.templaza.com%2F%22%20%5D%5B%2Fbutton%5D%5Bbutton%20type_choose_style%3D%22Style%20Button%202%22%20background%3D%22%23334878%22%20title%3D%22Public%20Relations%22%20link%3D%22http%3A%2F%2Fwww.templaza.com%2F%22%20%5D%5B%2Fbutton%5D%3C%2Fp%3E||\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1433231830045{background-color: #5da7f0 !important;}\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1433231840131{background-color: #829c53 !important;}\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" css=\".vc_custom_1433231866415{background-color: #334878 !important;}\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433232382246{padding-top: 70px !important;padding-bottom: 70px !important;background-color: #ffffff !important;}\"][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row][vc_column][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433234205025{padding-bottom: 57px !important;background-color: #f6f6f6 !important;}\"][vc_column][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title=\"Fine Arts\" tab_id=\"46d15d61-83fc-5\"][vc_gallery interval=\"3\" images=\"584,460,582\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436862939344{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Comunication Studies\" tab_id=\"d9940853-7266-6\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436862955291{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Bussiness\" tab_id=\"1433233221674-2-2\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436862967436{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Humanities\" tab_id=\"1433233223714-3-3\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436862978026{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Languages / Global\" tab_id=\"1433233226138-4-7\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436862989035{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Sciences & Math\" tab_id=\"1433233228067-5-7\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436863001902{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Professional Programs \" tab_id=\"1433233229837-6-7\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436863016627{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Education\" tab_id=\"1433233231501-7-4\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436863026903{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Multimedia / Design\" tab_id=\"1433233233329-8-6\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436863038530{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title=\"Economics\" tab_id=\"1433233235060-9-0\"][vc_single_image image=\"460\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436863048932{background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/04/video.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/04/video.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/04/video.ogv\" image=\"481\"][/vc_column][/vc_row][vc_row style_width=\"boxed\"][vc_column][title title_text=\"OUR LEADER\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][tz_our_team limit=\"7\" item_desktop=\"4\" item_desktop_small=\"3\" item_tablet=\"2\" item_mobile=\"1\" icon_content=\"fa fa-chain\" color_top=\"#334878\"][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][title title_text=\"BUTTONS\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1437189178433{padding-bottom: 75px !important;}\"][vc_column width=\"1/3\"][vc_btn title=\"Scinece\" style=\"custom\" custom_background=\"#8c001b\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\"][vc_btn title=\"Work Space\" style=\"custom\" custom_background=\"#304471\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\"][vc_btn title=\"Scinece\" style=\"custom\" custom_background=\"#267672\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\"][vc_btn title=\"Work Space\" style=\"custom\" custom_background=\"#876500\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\"][vc_btn title=\"Scinece\" style=\"custom\" custom_background=\"#0080ab\" custom_text=\"#ffffff\" shape=\"square\" size=\"sm\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\"][/vc_column][vc_column width=\"1/3\" css=\".vc_custom_1437189352335{padding-bottom: 30px !important;}\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#8c001b\" custom_text=\"#ffffff\" shape=\"square\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#304471\" custom_text=\"#ffffff\" shape=\"square\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#267672\" custom_text=\"#ffffff\" shape=\"square\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#876500\" custom_text=\"#ffffff\" shape=\"square\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#0080ab\" custom_text=\"#ffffff\" shape=\"square\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][/vc_column][vc_column width=\"1/3\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#8c001b\" custom_text=\"#ffffff\" shape=\"square\" size=\"lg\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#304471\" custom_text=\"#ffffff\" shape=\"square\" size=\"lg\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#267672\" custom_text=\"#ffffff\" shape=\"square\" size=\"lg\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#876500\" custom_text=\"#ffffff\" shape=\"square\" size=\"lg\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][vc_btn title=\"MORE DETAILS\" style=\"custom\" custom_background=\"#0080ab\" custom_text=\"#ffffff\" shape=\"square\" size=\"lg\" i_icon_fontawesome=\"fa fa-arrows-alt\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||target:%20_blank\" add_icon=\"true\"][/vc_column][/vc_row]','Feature SortCodes','','publish','open','open','','feature-sortcodes','','','2015-06-02 07:04:30','2015-06-02 07:04:30','',0,'http://wordpress.templaza.net/ethic/?page_id=1791',0,'page','',0),(1857,2,'2015-06-05 07:56:54','2015-06-05 07:56:54','','image-1-Blog-01-Column','','inherit','open','open','','image-1-blog-01-column-2','','','2015-06-05 07:56:54','2015-06-05 07:56:54','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-1-Blog-01-Column1.jpg',0,'attachment','image/jpeg',0),(1858,2,'2015-06-05 07:57:00','2015-06-05 07:57:00','','image-3-Blog-01-Column','','inherit','open','open','','image-3-blog-01-column-2','','','2015-06-05 07:57:00','2015-06-05 07:57:00','',0,'http://genewyork.com/wp-content/uploads/2015/05/image-3-Blog-01-Column1.jpg',0,'attachment','image/jpeg',0),(1891,2,'2015-06-05 09:44:45','2015-06-05 09:44:45','','learn-586409','','inherit','open','open','','learn-586409','','','2015-06-05 09:44:45','2015-06-05 09:44:45','',0,'http://genewyork.com/wp-content/uploads/2015/04/learn-586409.jpg',0,'attachment','image/jpeg',0),(1892,2,'2015-06-05 09:45:12','2015-06-05 09:45:12','','children-286239','','inherit','open','open','','children-286239','','','2015-06-05 09:45:12','2015-06-05 09:45:12','',0,'http://genewyork.com/wp-content/uploads/2015/04/children-286239.jpg',0,'attachment','image/jpeg',0),(1893,2,'2015-06-05 09:45:35','2015-06-05 09:45:35','','people-316506','','inherit','open','open','','people-316506','','','2015-06-05 09:45:35','2015-06-05 09:45:35','',0,'http://genewyork.com/wp-content/uploads/2015/04/people-316506.jpg',0,'attachment','image/jpeg',0),(1895,2,'2015-06-05 09:56:50','2015-06-05 09:56:50','','read-720528','','inherit','open','open','','read-720528','','','2015-06-05 09:56:50','2015-06-05 09:56:50','',0,'http://genewyork.com/wp-content/uploads/2015/04/read-720528.jpg',0,'attachment','image/jpeg',0),(1896,2,'2015-06-05 09:57:11','2015-06-05 09:57:11','','workstation-405768','','inherit','open','open','','workstation-405768','','','2015-06-05 09:57:11','2015-06-05 09:57:11','',0,'http://genewyork.com/wp-content/uploads/2015/04/workstation-405768.jpg',0,'attachment','image/jpeg',0),(1897,2,'2015-06-05 09:57:45','2015-06-05 09:57:45','','drawing_circle_hires','','inherit','open','open','','drawing_circle_hires','','','2015-06-05 09:57:45','2015-06-05 09:57:45','',0,'http://genewyork.com/wp-content/uploads/2015/04/drawing_circle_hires.jpg',0,'attachment','image/jpeg',0),(1899,2,'2015-06-05 10:03:17','2015-06-05 10:03:17','','teacher-702998','','inherit','open','open','','teacher-702998','','','2015-06-05 10:03:17','2015-06-05 10:03:17','',0,'http://genewyork.com/wp-content/uploads/2015/04/teacher-702998.jpg',0,'attachment','image/jpeg',0),(1900,2,'2015-06-05 10:03:52','2015-06-05 10:03:52','','workstation-405768','','inherit','open','open','','workstation-405768-2','','','2015-06-05 10:03:52','2015-06-05 10:03:52','',0,'http://genewyork.com/wp-content/uploads/2015/04/workstation-4057681.jpg',0,'attachment','image/jpeg',0),(1901,2,'2015-06-05 10:04:18','2015-06-05 10:04:18','','dieting_concept_hires','','inherit','open','open','','dieting_concept_hires','','','2015-06-05 10:04:18','2015-06-05 10:04:18','',0,'http://genewyork.com/wp-content/uploads/2015/04/dieting_concept_hires.jpg',0,'attachment','image/jpeg',0),(1919,2,'2015-06-08 03:29:31','2015-06-08 03:29:31','','check','','inherit','open','open','','check-2','','','2015-06-08 03:29:31','2015-06-08 03:29:31','',0,'http://genewyork.com/wp-content/uploads/2015/04/check1.png',0,'attachment','image/png',0),(1927,2,'2015-06-08 04:36:42','2015-06-08 04:36:42','','check-01','','inherit','open','open','','check-01-2','','','2015-06-08 04:36:42','2015-06-08 04:36:42','',0,'http://genewyork.com/wp-content/uploads/2015/04/check-011.png',0,'attachment','image/png',0),(1953,2,'2015-06-08 09:11:20','2015-06-08 09:11:20','','check-01','','inherit','open','open','','check-01-3','','','2015-06-08 09:11:20','2015-06-08 09:11:20','',0,'http://genewyork.com/wp-content/uploads/2015/04/check-012.png',0,'attachment','image/png',0),(1987,2,'2015-06-09 05:12:11','2015-06-09 05:12:11','','logobanner-color-2','','inherit','open','open','','logobanner-color-2','','','2015-06-09 05:12:11','2015-06-09 05:12:11','',0,'http://genewyork.com/wp-content/uploads/2015/05/logobanner-color-2.png',0,'attachment','image/png',0),(2006,2,'2015-06-10 03:57:44','2015-06-10 03:57:44','','images-2-Cources-3','','inherit','open','open','','images-2-cources-3','','','2015-06-10 03:57:44','2015-06-10 03:57:44','',0,'http://genewyork.com/wp-content/uploads/2015/04/images-2-Cources-3.jpg',0,'attachment','image/jpeg',0),(2011,2,'2015-06-10 11:27:47','2015-06-10 11:27:47','','images-4-Events-3','','inherit','open','open','','images-4-events-3','','','2015-06-10 11:27:47','2015-06-10 11:27:47','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-4-Events-3.jpg',0,'attachment','image/jpeg',0),(2013,2,'2015-06-10 11:28:28','2015-06-10 11:28:28','','images-3-Events-3','','inherit','open','open','','images-3-events-3','','','2015-06-10 11:28:28','2015-06-10 11:28:28','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-3-Events-3.jpg',0,'attachment','image/jpeg',0),(2014,2,'2015-06-10 11:28:29','2015-06-10 11:28:29','','images-5-Events-3','','inherit','open','open','','images-5-events-3','','','2015-06-10 11:28:29','2015-06-10 11:28:29','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-5-Events-3.jpg',0,'attachment','image/jpeg',0),(2052,2,'2015-06-11 08:15:08','2015-06-11 08:15:08','','Speaker','','publish','closed','closed','','speaker','','','2015-06-11 08:15:08','2015-06-11 08:15:08','',0,'http://wordpress.templaza.net/ethic/?post_type=tmm&p=2052',0,'tmm','',0),(2054,2,'2015-06-11 08:33:29','2015-06-11 08:33:29','','images-2-Events-3','','inherit','open','open','','images-2-events-3','','','2015-06-11 08:33:29','2015-06-11 08:33:29','',0,'http://genewyork.com/wp-content/uploads/2015/04/images-2-Events-3.jpg',0,'attachment','image/jpeg',0),(2055,2,'2015-06-11 08:46:09','2015-06-11 08:46:09','Washington is a state in the Pacific Northwest with terrain spanning the snow-capped Cascade Mountains to forested islands in Puget Sound. Its largest city, Seattle, is known for its thriving tech industry, vibrant music scene and celebrated coffeehouses.','Washington','','publish','closed','closed','','washington','','','2015-06-11 08:46:09','2015-06-11 08:46:09','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_venue&p=2055',0,'tribe_venue','',0),(2089,2,'2015-06-13 03:45:20','2015-06-13 03:45:20','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Your Success in Your College','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum','publish','open','open','','your-success-in-your-college-1','','','2015-06-13 03:45:20','2015-06-13 03:45:20','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2089',0,'tribe_events','',0),(2090,2,'2015-06-13 03:46:38','2015-06-13 03:46:38','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Project 2014 - Workshop','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','project-2014-workshop-1','','','2015-06-13 03:46:38','2015-06-13 03:46:38','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2090',0,'tribe_events','',0),(2091,2,'2015-06-13 03:47:16','2015-06-13 03:47:16','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Project 2014 - Workshop','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','project-2014-workshop-3','','','2015-06-13 03:47:16','2015-06-13 03:47:16','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2091',0,'tribe_events','',0),(2092,2,'2015-06-13 03:47:53','2015-06-13 03:47:53','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','criminal-justice-camp-1','','','2015-06-13 03:47:53','2015-06-13 03:47:53','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2092',0,'tribe_events','',0),(2093,2,'2015-06-15 05:50:24','2015-06-15 05:50:24','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Pesticide Applicators','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi','publish','open','open','','pesticide-applicators-training-1','','','2015-06-15 05:50:24','2015-06-15 05:50:24','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2093',0,'tribe_events','',0),(2094,2,'2015-06-13 03:48:32','2015-06-13 03:48:32','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim, Fusce malesuada neque, at commodo ipsum congue eu.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna. Integer eget arcu sit amet mauris egestas dignissim. Fusce malesuada neque nisi, at commodo ipsum congue eu.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget','publish','open','open','','criminal-justice-camp-1-2','','','2015-06-13 03:48:32','2015-06-13 03:48:32','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2094',0,'tribe_events','',0),(2095,2,'2015-06-13 03:48:37','2015-06-13 03:48:37','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque lobortis, nisl at ullamcorper egestas, felis tortor adipiscing dolor, a interdum lorem urna quis magna. Integer eget arcu sit amet mauris egestas. Integer eget arcu sit amet.\n\nFusce malesuada neque nisi, at commodo ipsum congue eu. Fusce id velit eros. Integer eget arcu sit amet mauris egestas dignissim. Integer gravida mauris nec justo tempus venenatis. Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla egestas facilisis magna.\n\nThank you.\n\n[tmm name=\"speaker\"]','Criminal Justice Camp','Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget','publish','open','open','','criminal-justice-camp-1-3','','','2015-06-13 03:48:37','2015-06-13 03:48:37','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2095',0,'tribe_events','',0),(2096,2,'2015-06-13 03:45:15','2015-06-13 03:45:15','','images-7-Events-1','','inherit','open','open','','images-7-events-1','','','2015-06-13 03:45:15','2015-06-13 03:45:15','',2089,'http://genewyork.com/wp-content/uploads/2015/06/images-7-Events-1.jpg',0,'attachment','image/jpeg',0),(2097,2,'2015-06-13 03:46:33','2015-06-13 03:46:33','','images-8-Events-1','','inherit','open','open','','images-8-events-1','','','2015-06-13 03:46:33','2015-06-13 03:46:33','',2090,'http://genewyork.com/wp-content/uploads/2015/06/images-8-Events-1.jpg',0,'attachment','image/jpeg',0),(2098,2,'2015-06-13 03:46:49','2015-06-13 03:46:49','','images-9-Events-1','','inherit','open','open','','images-9-events-1','','','2015-06-13 03:46:49','2015-06-13 03:46:49','',313,'http://genewyork.com/wp-content/uploads/2015/04/images-9-Events-1.jpg',0,'attachment','image/jpeg',0),(2099,2,'2015-06-13 03:47:11','2015-06-13 03:47:11','','images-10-Events-1','','inherit','open','open','','images-10-events-1','','','2015-06-13 03:47:11','2015-06-13 03:47:11','',2091,'http://genewyork.com/wp-content/uploads/2015/06/images-10-Events-1.jpg',0,'attachment','image/jpeg',0),(2100,2,'2015-06-13 03:47:28','2015-06-13 03:47:28','','images-11-Events-1','','inherit','open','open','','images-11-events-1','','','2015-06-13 03:47:28','2015-06-13 03:47:28','',305,'http://genewyork.com/wp-content/uploads/2015/04/images-11-Events-1.jpg',0,'attachment','image/jpeg',0),(2101,2,'2015-06-13 03:47:49','2015-06-13 03:47:49','','images-12-Events-1','','inherit','open','open','','images-12-events-1','','','2015-06-13 03:47:49','2015-06-13 03:47:49','',2092,'http://genewyork.com/wp-content/uploads/2015/06/images-12-Events-1.jpg',0,'attachment','image/jpeg',0),(2124,2,'2015-06-15 05:29:35','2015-06-15 05:29:35','','images-1-RightSidebar','','inherit','open','open','','images-1-rightsidebar-2','','','2015-06-15 05:29:35','2015-06-15 05:29:35','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-1-RightSidebar1.jpg',0,'attachment','image/jpeg',0),(2125,2,'2015-06-15 05:29:56','2015-06-15 05:29:56','','images-2-RightSidebar','','inherit','open','open','','images-2-rightsidebar-2','','','2015-06-15 05:29:56','2015-06-15 05:29:56','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-2-RightSidebar1.jpg',0,'attachment','image/jpeg',0),(2126,2,'2015-06-15 05:30:31','2015-06-15 05:30:31','','images-3-RightSidebar','','inherit','open','open','','images-3-rightsidebar','','','2015-06-15 05:30:31','2015-06-15 05:30:31','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-3-RightSidebar.jpg',0,'attachment','image/jpeg',0),(2127,2,'2015-06-15 05:31:17','2015-06-15 05:31:17','','images-4-RightSidebar','','inherit','open','open','','images-4-rightsidebar-2','','','2015-06-15 05:31:17','2015-06-15 05:31:17','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-4-RightSidebar1.jpg',0,'attachment','image/jpeg',0),(2128,2,'2015-06-15 05:31:49','2015-06-15 05:31:49','','images-5-RightSidebar','','inherit','open','open','','images-5-rightsidebar','','','2015-06-15 05:31:49','2015-06-15 05:31:49','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-5-RightSidebar.jpg',0,'attachment','image/jpeg',0),(2129,2,'2015-06-15 05:32:08','2015-06-15 05:32:08','','images-6-RightSidebar','','inherit','open','open','','images-6-rightsidebar-2','','','2015-06-15 05:32:08','2015-06-15 05:32:08','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-6-RightSidebar1.jpg',0,'attachment','image/jpeg',0),(2175,2,'2015-06-16 08:28:52','2015-06-16 08:28:52','','Timeline-01','','inherit','open','open','','timeline-01-2','','','2015-06-16 08:28:52','2015-06-16 08:28:52','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-01.jpg',0,'attachment','image/jpeg',0),(2176,2,'2015-06-16 08:30:01','2015-06-16 08:30:01','','Timeline-02','','inherit','open','open','','timeline-02','','','2015-06-16 08:30:01','2015-06-16 08:30:01','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-02.jpg',0,'attachment','image/jpeg',0),(2179,2,'2015-06-16 08:32:19','2015-06-16 08:32:19','','Timeline-03','','inherit','open','open','','timeline-03','','','2015-06-16 08:32:19','2015-06-16 08:32:19','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-03.jpg',0,'attachment','image/jpeg',0),(2182,2,'2015-06-16 08:34:49','2015-06-16 08:34:49','','Timeline-04','','inherit','open','open','','timeline-04','','','2015-06-16 08:34:49','2015-06-16 08:34:49','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-04.jpg',0,'attachment','image/jpeg',0),(2186,2,'2015-06-16 08:37:00','2015-06-16 08:37:00','','Timeline-05','','inherit','open','open','','timeline-05','','','2015-06-16 08:37:00','2015-06-16 08:37:00','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-05.jpg',0,'attachment','image/jpeg',0),(2189,2,'2015-06-16 08:38:34','2015-06-16 08:38:34','','Timeline-06','','inherit','open','open','','timeline-06','','','2015-06-16 08:38:34','2015-06-16 08:38:34','',0,'http://genewyork.com/wp-content/uploads/2015/06/Timeline-06.jpg',0,'attachment','image/jpeg',0),(2235,2,'2015-06-17 02:40:59','2015-06-17 02:40:59','','images-1-Blog-4-Column','','inherit','open','open','','images-1-blog-4-column','','','2015-06-17 02:40:59','2015-06-17 02:40:59','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-1-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2238,2,'2015-06-17 02:42:12','2015-06-17 02:42:12','','images-2-Blog-4-Column','','inherit','open','open','','images-2-blog-4-column','','','2015-06-17 02:42:12','2015-06-17 02:42:12','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-2-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2241,2,'2015-06-17 02:44:02','2015-06-17 02:44:02','','images-3-Blog-4-Column','','inherit','open','open','','images-3-blog-4-column','','','2015-06-17 02:44:02','2015-06-17 02:44:02','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-3-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2244,2,'2015-06-17 02:45:23','2015-06-17 02:45:23','','images-4-Blog-4-Column','','inherit','open','open','','images-4-blog-4-column','','','2015-06-17 02:45:23','2015-06-17 02:45:23','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-4-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2247,2,'2015-06-17 02:46:40','2015-06-17 02:46:40','','images-5-Blog-4-Column','','inherit','open','open','','images-5-blog-4-column','','','2015-06-17 02:46:40','2015-06-17 02:46:40','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-5-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2250,2,'2015-06-17 02:47:54','2015-06-17 02:47:54','','images-6-Blog-4-Column','','inherit','open','open','','images-6-blog-4-column','','','2015-06-17 02:47:54','2015-06-17 02:47:54','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-6-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2253,2,'2015-06-17 02:49:19','2015-06-17 02:49:19','','images-7-Blog-4-Column','','inherit','open','open','','images-7-blog-4-column','','','2015-06-17 02:49:19','2015-06-17 02:49:19','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-7-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2256,2,'2015-06-17 02:50:20','2015-06-17 02:50:20','','images-8-Blog-4-Column','','inherit','open','open','','images-8-blog-4-column','','','2015-06-17 02:50:20','2015-06-17 02:50:20','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-8-Blog-4-Column.jpg',0,'attachment','image/jpeg',0),(2267,2,'2015-06-17 07:33:01','2015-06-17 07:33:01','','images-2-Blog-2-Column','','inherit','open','open','','images-2-blog-2-column-2','','','2015-06-17 07:33:01','2015-06-17 07:33:01','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-2-Blog-2-Column1.jpg',0,'attachment','image/jpeg',0),(2277,2,'2015-06-18 02:48:26','2015-06-18 02:48:26','<div class=\"ipsType_pagedesc forum_rules\">a forum for the discussion of curriculum issues</div>','Design Technology:Curriculum Issues','','publish','closed','open','','design-technologycurriculum-issues','','','2015-06-18 02:48:26','2015-06-18 02:48:26','',1634,'http://wordpress.templaza.net/ethic/?post_type=forum&p=2277',0,'forum','',0),(2280,2,'2015-06-18 02:49:13','2015-06-18 02:49:13','<div class=\"ipsType_pagedesc forum_rules\">information on new resources available</div>','Design Technology:Resources','','publish','closed','open','','design-technologyresources','','','2015-06-18 02:49:13','2015-06-18 02:49:13','',1634,'http://wordpress.templaza.net/ethic/?post_type=forum&p=2280',0,'forum','',0),(2282,2,'2015-06-18 02:50:38','2015-06-18 02:50:38','<div class=\"ipsType_pagedesc forum_rules\">questions and answers</div>','Design Technology:Help','','publish','closed','open','','design-technologyhelp','','','2015-06-18 02:50:38','2015-06-18 02:50:38','',1634,'http://wordpress.templaza.net/ethic/?post_type=forum&p=2282',0,'forum','',0),(2284,2,'2015-06-18 03:02:23','2015-06-18 03:02:23','Hi there all.\n\nI was wondering what thoughts colleagues have with regards to this issue? I have been teaching Design Technology for 17 years now. Prior to coming to the International School Of Toulouse in 1999 to start up a department from scratch (including introducing IB Design Technology), my only post 16 experience was A - Level and then the A/AS scenario in schools in the UK (although I was educated overseas in Hong Kong where I followed the A-level Design Technology course as a student). Personally, having now taught the IB for 5 years, I think that it has significant advantages over the A/AS level courses for a variety of reasons, not least that it really does delve into a broad range of Design and Technological issues and the three examination papers are really quite challenging. The downsides currently (although these are soon to be addressed in the \'new\' DT syllabus for IB I hope...) are the lack of \'design\' work on paper (A3 and A2 portfolio work) required. For me, this design development sketching is probably the most important component....Having read the mixed reviews recently about the current A/AS levels (and results in the UK press) I would be interested to hear other viewpoints from other DT colleagues.\n\nAny other thoughts?\n\nDavid ','IB v A Level in Design Technology','','publish','closed','open','','ib-v-a-level-in-design-technology','','','2015-06-18 03:02:23','2015-06-18 03:02:23','',2277,'http://wordpress.templaza.net/ethic/forums/topic/ib-v-a-level-in-design-technology/',0,'topic','',0),(2285,2,'2015-06-18 03:05:16','2015-06-18 03:05:16','Focus on... Design and Technology: ICT Advice in Secondary Magazine is available to view online. All links are written out in full at the end of this message.\n\nFocus on..., part of the ICT Advice in Secondary Magazine, is aimed at subject teachers in secondary schools, and offers feature articles, reviews and events to provide guidance, support and inspiration for using and embedding ICT in the curriculum.\n\nIn the spring/summer term issue:\n\nElectronic portfolios pilot: Does D&T coursework really have to be printed out?\nA round-up of resources for design and technology: A must-have pack from the DfES, plus a selection of spot-on resources.\n\nCrucial D&T dates: Details of the DATA Annual Conference and D&T Week\nFocus on... Design and Technology is only available to view online, but you can download or print a copy by clicking on the Print Friendly button at the bottom of the web page. (Please see Becta ICT Advice copyright statement.)\n\nView ICT Advice in Secondary: Focus on... Design and technology online ','Design and Technology: ICT Advice','','publish','closed','open','','design-and-technology-ict-advice','','','2015-06-18 03:05:16','2015-06-18 03:05:16','',2277,'http://wordpress.templaza.net/ethic/forums/topic/design-and-technology-ict-advice/',0,'topic','',0),(2288,2,'2015-06-19 03:05:12','2015-06-19 03:05:12','<span class=\"st\">Play over 3000 free <em>online games</em>! Including arcade <em>games</em>, puzzle <em>games</em>, funny <em>games</em>, sports <em>games</em>, shooting <em>games</em>, and more! New free <em>games</em> every day ...</span>','Game online','','publish','closed','open','','game-online','','','2015-06-19 03:05:12','2015-06-19 03:05:12','',0,'http://wordpress.templaza.net/ethic/?post_type=forum&p=2288',0,'forum','',0),(2291,2,'2015-06-19 03:13:14','2015-06-19 03:13:14','When developer Bungie announced <a href=\"http://www.gamespot.com/destiny/\" data-ref-id=\"5000-38799\">Destiny\'s</a> next expansion, The Taken King, I was skeptical of its story. I was not particularly impressed with the narrative in the base game. But I was able to go hands-on with the first mission in The Taken King, and I came away believing that Bungie is pushing hard to make this expansion\'s story special.\n\nWhen the mission started, I dropped onto Mars\' moon, Phobos, a new location in Destiny. The sky was full with ships and in the distance and the red planet hung in the sky. I started running along a cliff toward a structure. A massive Cabal ship rose up over the cliff, only a few feet from me, but it quickly flew away. As I rounded the corner and came into view of a Cabal war base, sounds of fighting and destruction rose in my ears. I spotted forms of Cabal and my mind prepared for combat. These Cabal, however, were dying. One crawled for a few seconds and then fell prostrate at my feet. Another was just a heap by the building. Something ominous was happening and murdering all of the Cabal. Something had shifted in Destiny\'s world; I was not fighting the normal enemies any longer.\n\n[embed]https://www.youtube.com/watch?v=bUIvhQPPCRg[/embed]\n\nThis is just the opening of the next chapter in Destiny\'s story, and the sinister atmosphere weighed heavily across the entire thing. Later in the level, I encountered the new enemy type, the Taken, for the first time. The black-and-white enemies shudder and shift, as if they\'re caught in between worlds. They take on forms that you\'ve seen before, but they behave in very different ways. Salvos of rockets join the familiar guns and melee attacks, and some of the foes split into two.','Destiny: The Taken King\'s Story Soars to New Heights','','publish','closed','open','','destiny-the-taken-kings-story-soars-to-new-heights','','','2015-06-19 03:13:14','2015-06-19 03:13:14','',0,'http://wordpress.templaza.net/ethic/?post_type=topic&p=2291',0,'topic','',0),(2672,2,'2015-07-07 11:32:19','2015-07-07 11:32:19','','image-home-4','','inherit','open','open','','image-home-4','','','2015-07-07 11:32:19','2015-07-07 11:32:19','',0,'http://genewyork.com/wp-content/uploads/2015/07/image-home-4.png',0,'attachment','image/png',0),(2699,2,'2015-07-08 03:51:42','2015-07-08 03:51:42','','images-8-Events-1','','inherit','open','open','','images-8-events-1-2','','','2015-07-08 03:51:42','2015-07-08 03:51:42','',305,'http://genewyork.com/wp-content/uploads/2015/04/images-8-Events-1.jpg',0,'attachment','image/jpeg',0),(2700,2,'2015-07-08 03:52:40','2015-07-08 03:52:40','','images-3-Events-2','','inherit','open','open','','images-3-events-2','','','2015-07-08 03:52:40','2015-07-08 03:52:40','',310,'http://genewyork.com/wp-content/uploads/2015/04/images-3-Events-2.jpg',0,'attachment','image/jpeg',0),(2702,2,'2015-07-08 03:53:39','2015-07-08 03:53:39','','images-3-Events-1','','inherit','open','open','','images-3-events-1','','','2015-07-08 03:53:39','2015-07-08 03:53:39','',313,'http://genewyork.com/wp-content/uploads/2015/04/images-3-Events-1.jpg',0,'attachment','image/jpeg',0),(2703,2,'2015-07-08 04:01:52','2015-07-08 04:01:52','','images-4-Blog-2-Column','','inherit','open','open','','images-4-blog-2-column','','','2015-07-08 04:01:52','2015-07-08 04:01:52','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-4-Blog-2-Column.jpg',0,'attachment','image/jpeg',0),(2704,2,'2015-07-08 04:02:59','2015-07-08 04:02:59','','images-1-Blog-2-Column','','inherit','open','open','','images-1-blog-2-column-2','','','2015-07-08 04:02:59','2015-07-08 04:02:59','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-1-Blog-2-Column1.jpg',0,'attachment','image/jpeg',0),(2706,2,'2015-07-08 04:12:53','2015-07-08 04:12:53','','images-5-Blog-3-Column','','inherit','open','open','','images-5-blog-3-column','','','2015-07-08 04:12:53','2015-07-08 04:12:53','',0,'http://genewyork.com/wp-content/uploads/2015/05/images-5-Blog-3-Column.jpg',0,'attachment','image/jpeg',0),(2707,2,'2015-07-08 04:18:58','2015-07-08 04:18:58','','images-1-Blog-4-Column','','inherit','open','open','','images-1-blog-4-column-2','','','2015-07-08 04:18:58','2015-07-08 04:18:58','',0,'http://genewyork.com/wp-content/uploads/2015/06/images-1-Blog-4-Column1.jpg',0,'attachment','image/jpeg',0),(2708,1,'2015-08-26 16:09:31','2015-08-26 16:09:31','','PAGE','','publish','closed','closed','','page','','','2015-08-26 16:09:31','2015-08-26 16:09:31','',0,'http://genewyork.com/2015/08/26/page/',45,'nav_menu_item','',0),(2709,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','FORUM','','publish','closed','closed','','forum','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/forum/',44,'nav_menu_item','',0),(2710,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','BLOG','','publish','closed','closed','','blog','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/blog/',35,'nav_menu_item','',0),(2711,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','FEATURES','','publish','closed','closed','','features','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/features/',18,'nav_menu_item','',0),(2712,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','COURSES','','publish','closed','closed','','courses','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/courses/',13,'nav_menu_item','',0),(2713,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','EVENTS','','publish','closed','closed','','events','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/events/',9,'nav_menu_item','',0),(2714,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Home','','publish','closed','closed','','home','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/home/',1,'nav_menu_item','',0),(2718,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','FORUM','','publish','closed','closed','','forum-2','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/forum-2/',18,'nav_menu_item','',0),(2719,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','BLOG','','publish','closed','closed','','blog-2','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/blog-2/',9,'nav_menu_item','',0),(2720,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','PAGE','','publish','closed','closed','','page-2','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/page-2/',1,'nav_menu_item','',0),(2721,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Log In Form','','publish','closed','closed','','log-in-form','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/log-in-form/',1,'nav_menu_item','',0),(2722,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Register Form','','publish','closed','closed','','register-form','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/register-form/',2,'nav_menu_item','',0),(2723,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Remind User','','publish','closed','closed','','remind-user','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/remind-user/',3,'nav_menu_item','',0),(2724,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Reset Pass','','publish','closed','closed','','reset-pass','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/reset-pass/',4,'nav_menu_item','',0),(2725,1,'2015-08-26 16:09:32','2015-08-26 16:09:32','','Edit User Profile','','publish','closed','closed','','edit-user-profile','','','2015-08-26 16:09:32','2015-08-26 16:09:32','',0,'http://genewyork.com/2015/08/26/edit-user-profile/',5,'nav_menu_item','',0),(2726,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Event List','','publish','closed','closed','','event-list','','','2015-08-26 16:09:33','2015-08-26 16:09:33','',0,'http://genewyork.com/2015/08/26/event-list/',11,'nav_menu_item','',0),(2734,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','History & Mission','','publish','closed','closed','','history-mission','','','2015-09-14 20:26:26','2015-09-14 20:26:26','',0,'http://genewyork.com/2015/08/26/history-mission/',2,'nav_menu_item','',0),(2735,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Home','','publish','closed','closed','','administration','','','2015-09-14 20:26:26','2015-09-14 20:26:26','',0,'http://genewyork.com/2015/08/26/administration/',1,'nav_menu_item','',0),(2736,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','About Us','','publish','closed','closed','','community','','','2015-09-14 20:26:26','2015-09-14 20:26:26','',0,'http://genewyork.com/2015/08/26/community/',4,'nav_menu_item','',0),(2739,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Admissions','','publish','closed','closed','','visitor-information','','','2015-09-14 20:26:26','2015-09-14 20:26:26','',0,'http://genewyork.com/2015/08/26/visitor-information/',3,'nav_menu_item','',0),(2742,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Language Program','','publish','closed','closed','','by-school','','','2015-09-14 20:09:28','2015-09-14 20:09:28','',0,'http://genewyork.com/2015/08/26/by-school/',1,'nav_menu_item','',0),(2743,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Business Program','','publish','closed','closed','','process','','','2015-09-14 20:09:28','2015-09-14 20:09:28','',0,'http://genewyork.com/2015/08/26/process/',2,'nav_menu_item','',0),(2744,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Multimedia Design Program','','publish','closed','closed','','visitor-information-2','','','2015-09-14 20:09:28','2015-09-14 20:09:28','',0,'http://genewyork.com/2015/08/26/visitor-information-2/',3,'nav_menu_item','',0),(2745,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Allied Health Program','','publish','closed','closed','','for-prospective-parents','','','2015-09-14 20:09:28','2015-09-14 20:09:28','',0,'http://genewyork.com/2015/08/26/for-prospective-parents/',4,'nav_menu_item','',0),(2751,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','Contact Us','','publish','closed','closed','','resources','','','2015-09-14 20:25:06','2015-09-14 20:25:06','',0,'http://genewyork.com/2015/08/26/resources/',1,'nav_menu_item','',0),(2752,1,'2015-08-26 16:09:33','2015-08-26 16:09:33','','FAQ','','publish','closed','closed','','health-medicine','','','2015-09-14 20:25:06','2015-09-14 20:25:06','',0,'http://genewyork.com/2015/08/26/health-medicine/',2,'nav_menu_item','',0),(2754,1,'2015-08-26 16:09:34','2015-08-26 16:09:34',' ','','','publish','closed','closed','','2754','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/',2,'nav_menu_item','',0),(2755,1,'2015-08-26 16:09:34','2015-08-26 16:09:34',' ','','','publish','closed','closed','','2755','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/',3,'nav_menu_item','',0),(2756,1,'2015-08-26 16:09:34','2015-08-26 16:09:34',' ','','','publish','closed','closed','','2756','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/',4,'nav_menu_item','',0),(2757,1,'2015-08-26 16:09:34','2015-08-26 16:09:34',' ','','','publish','closed','closed','','2757','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/',5,'nav_menu_item','',0),(2758,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Forums','','publish','closed','closed','','forums','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/forums/',1,'nav_menu_item','',0),(2759,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Groups','','publish','closed','closed','','groups','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/groups/',6,'nav_menu_item','',0),(2760,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Single Course','','publish','closed','closed','','single-course','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/single-course/',17,'nav_menu_item','',0),(2761,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Single Event','','publish','closed','closed','','single-event','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/single-event/',12,'nav_menu_item','',0),(2764,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Blog Single Post Page','','publish','closed','closed','','blog-single-post-page','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/blog-single-post-page/',43,'nav_menu_item','',0),(2765,1,'2015-08-26 16:09:34','2015-08-26 16:09:34','','Blog Single Post Page','','publish','closed','closed','','blog-single-post-page-2','','','2015-08-26 16:09:34','2015-08-26 16:09:34','',0,'http://genewyork.com/2015/08/26/blog-single-post-page-2/',17,'nav_menu_item','',0),(2973,2,'2015-07-13 08:11:15','2015-07-13 08:11:15','','Test Event','','publish','open','open','','test-event','','','2015-07-13 08:11:15','2015-07-13 08:11:15','',0,'http://wordpress.templaza.net/ethic/?post_type=tribe_events&p=2973',0,'tribe_events','',0),(2974,2,'2015-07-13 08:11:16','2015-07-13 08:11:16','','Templaza','','publish','open','open','','templaza','','','2015-07-13 08:11:16','2015-07-13 08:11:16','',0,'http://wordpress.templaza.net/ethic/venue/templaza/',0,'tribe_venue','',0),(3020,2,'2015-04-15 10:11:53','2015-04-15 10:11:53','<ul class=\"tz-contact-wapper\">\n <li>\n <span>YOU WANT TO KNOW MORE <br> INFORMATION? SEND US A MAIL!</span>\n </li>\n <li>\n [text txtname class:tz-contact-input-name placeholder \"Your Name\"]\n </li>\n <li>\n [email txtemail class:tz-contact-input-email placeholder \"Your Email\"]\n </li>\n <li>\n [textarea textarea-message 1x1 class:tz-contact-message placeholder \"Your Message\"]\n </li>\n <li><i class=\"fa fa-arrows-alt\"></i>[submit \"SEND\"]\n </li>\n </ul>\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nYour entered code is incorrect.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.\nYour answer is not correct.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.','Contact form 1','','publish','open','open','','contact-form-1-2','','','2015-04-15 10:11:53','2015-04-15 10:11:53','',0,'http://wordpress.templaza.net/ethic/?post_type=wpcf7_contact_form&p=5',0,'wpcf7_contact_form','',0),(3031,1,'2015-08-26 16:09:42','2015-08-26 16:09:42','','Header Style 06','','publish','closed','closed','','header-style-06','','','2015-08-26 16:09:42','2015-08-26 16:09:42','',0,'http://genewyork.com/2015/08/26/header-style-06/',7,'nav_menu_item','',0),(3041,1,'2015-08-26 16:09:42','2015-08-26 16:09:42','','Home Version 2','','publish','closed','closed','','home-version-2-2','','','2015-08-26 16:09:42','2015-08-26 16:09:42','',0,'http://genewyork.com/2015/08/26/home-version-2-2/',3,'nav_menu_item','',0),(3050,1,'2015-08-26 16:09:42','2015-08-26 16:09:42',' ','','','publish','closed','closed','','3050','','','2015-08-26 16:09:42','2015-08-26 16:09:42','',0,'http://genewyork.com/2015/08/26/3050/',25,'nav_menu_item','',0),(3052,1,'2015-08-26 16:09:42','2015-08-26 16:09:42',' ','','','publish','closed','closed','','3052','','','2015-08-26 16:09:42','2015-08-26 16:09:42','',0,'http://genewyork.com/2015/08/26/3052/',26,'nav_menu_item','',0),(3053,1,'2015-08-26 16:09:42','2015-08-26 16:09:42',' ','','','publish','closed','closed','','3053','','','2015-08-26 16:09:42','2015-08-26 16:09:42','',0,'http://genewyork.com/2015/08/26/3053/',29,'nav_menu_item','',0),(3072,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3072','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3072/',46,'nav_menu_item','',0),(3074,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3074','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3074/',50,'nav_menu_item','',0),(3079,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3079','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3079/',21,'nav_menu_item','',0),(3080,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3080','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3080/',32,'nav_menu_item','',0),(3081,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3081','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3081/',33,'nav_menu_item','',0),(3082,1,'2015-08-26 16:09:43','2015-08-26 16:09:43',' ','','','publish','closed','closed','','3082','','','2015-08-26 16:09:43','2015-08-26 16:09:43','',0,'http://genewyork.com/2015/08/26/3082/',34,'nav_menu_item','',0),(3083,1,'2015-08-26 16:09:44','2015-08-26 16:09:44',' ','','','publish','closed','closed','','3083','','','2015-08-26 16:09:44','2015-08-26 16:09:44','',0,'http://genewyork.com/2015/08/26/3083/',23,'nav_menu_item','',0),(3084,1,'2015-08-26 16:09:44','2015-08-26 16:09:44',' ','','','publish','closed','closed','','3084','','','2015-08-26 16:09:44','2015-08-26 16:09:44','',0,'http://genewyork.com/2015/08/26/3084/',19,'nav_menu_item','',0),(3090,1,'2015-08-26 16:10:23','2015-08-26 16:10:23','','banner-03.jpg','','inherit','closed','closed','','banner-03-jpg','','','2015-08-26 16:10:23','2015-08-26 16:10:23','',0,'http://genewyork.com/wp-content/uploads/revslider/Slider1/banner-03.jpg',0,'attachment','image/jpeg',0),(3091,1,'2015-08-26 16:10:24','2015-08-26 16:10:24','','banner-02.jpg','','inherit','closed','closed','','banner-02-jpg','','','2015-08-26 16:10:24','2015-08-26 16:10:24','',0,'http://genewyork.com/wp-content/uploads/revslider/Slider1/banner-02.jpg',0,'attachment','image/jpeg',0),(3092,1,'2015-08-26 16:10:25','2015-08-26 16:10:25','','banner-01.jpg','','inherit','closed','closed','','banner-01-jpg','','','2015-08-26 16:10:25','2015-08-26 16:10:25','',0,'http://genewyork.com/wp-content/uploads/revslider/Slider1/banner-01.jpg',0,'attachment','image/jpeg',0),(3095,1,'2015-08-26 16:14:58','2015-08-26 16:14:58','','About GENY','','publish','closed','closed','','3095','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3095',10,'nav_menu_item','',0),(3096,1,'2015-08-26 16:14:59','2015-08-26 16:14:59',' ','','','publish','closed','closed','','3096','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3096',11,'nav_menu_item','',0),(3097,1,'2015-08-26 16:14:58','2015-08-26 16:14:58',' ','','','publish','closed','closed','','home-4','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3097',1,'nav_menu_item','',0),(3099,1,'2015-08-26 16:19:24','2015-08-26 16:19:24','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"539\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1435075305153{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 48px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]<a href=\"http://genewyork.com/wp-content/uploads/2015/04/logo-services.png\"><img class=\" size-full wp-image-542 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/logo-services.png\" alt=\"logo-services\" width=\"40\" height=\"52\" /></a>\r\n<h3>ETHIC GIVE YOUR BEST SERVICES</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-26 16:19:24','2015-08-26 16:19:24','',536,'http://genewyork.com/2015/08/26/536-revision-v1/',0,'revision','',0),(3100,1,'2015-08-26 16:20:04','2015-08-26 16:20:04','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1435075305153{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 48px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]<a href=\"http://genewyork.com/wp-content/uploads/2015/04/logo-services.png\"><img class=\" size-full wp-image-542 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/logo-services.png\" alt=\"logo-services\" width=\"40\" height=\"52\" /></a>\r\n<h3>ETHIC GIVE YOUR BEST SERVICES</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-26 16:20:04','2015-08-26 16:20:04','',536,'http://genewyork.com/2015/08/26/536-revision-v1/',0,'revision','',0),(3101,1,'2015-08-26 16:46:32','2015-08-26 16:46:32','[vc_row css=\".vc_custom_1440607588579{padding: 50px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xMCUyMTFtOCUyMTFtMyUyMTFkMTUxOTAyOS4zMTA1MjA2MzI0JTIxMmQtOTYuOTE5NDM0MTA5Mzc1JTIxM2Q0MS45NjA0NjgyOTM0MDUwMyUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE0MzQ2ODM4MjIxMjMlMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info background_icon_top=\"#334878\" style_icon_image=\"style_image\" style_image_title=\"1953\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"CONTACT US\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\" content_contact_us=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-26 16:46:32','2015-08-26 16:46:32','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3103,1,'2015-08-26 16:50:13','2015-08-26 16:50:13','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xMCUyMTFtOCUyMTFtMyUyMTFkMTUxOTAyOS4zMTA1MjA2MzI0JTIxMmQtOTYuOTE5NDM0MTA5Mzc1JTIxM2Q0MS45NjA0NjgyOTM0MDUwMyUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE0MzQ2ODM4MjIxMjMlMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info background_icon_top=\"#334878\" style_icon_image=\"style_image\" style_image_title=\"1953\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"CONTACT US\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\" content_contact_us=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-26 16:50:13','2015-08-26 16:50:13','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3104,1,'2015-08-26 16:53:30','2015-08-26 16:53:30','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xMCUyMTFtOCUyMTFtMyUyMTFkMTUxOTAyOS4zMTA1MjA2MzI0JTIxMmQtOTYuOTE5NDM0MTA5Mzc1JTIxM2Q0MS45NjA0NjgyOTM0MDUwMyUyMTNtMiUyMTFpMTAyNCUyMTJpNzY4JTIxNGYxMy4xJTIxNWUwJTIxM20yJTIxMXNlbiUyMTJzdXMlMjE0djE0MzQ2ODM4MjIxMjMlMjIlMjB3aWR0aCUzRCUyMjYwMCUyMiUyMGhlaWdodCUzRCUyMjQ1MCUyMiUzRSUzQyUyRmlmcmFtZSUzRQ==\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#334878\" style_icon_image=\"style_image\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"CONTACT US\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\" content_contact_us=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-26 16:53:30','2015-08-26 16:53:30','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3105,1,'2015-08-26 21:28:46','2015-08-26 21:28:46','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"CONTACT US\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\" content_contact_us=\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-26 21:28:46','2015-08-26 21:28:46','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3108,1,'2015-08-26 23:18:57','2015-08-26 23:18:57','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1435075305153{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 48px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"] \n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"alignnone wp-image-3107\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"84\" height=\"80\" /></a></h3>\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-26 23:18:57','2015-08-26 23:18:57','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3109,1,'2015-08-26 23:20:35','2015-08-26 23:20:35','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1435075305153{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 48px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 alignleft\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"84\" height=\"80\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-26 23:20:35','2015-08-26 23:20:35','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3110,1,'2015-08-27 01:37:05','2015-08-27 01:37:05','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1435075305153{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 48px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:37:05','2015-08-27 01:37:05','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3111,1,'2015-08-27 01:43:45','2015-08-27 01:43:45','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"MORE DETAILS\" link=\"http://www.templaza.com/\" ][/button][/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:43:45','2015-08-27 01:43:45','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3112,1,'2015-08-27 01:44:28','2015-08-27 01:44:28','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:44:28','2015-08-27 01:44:28','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3113,1,'2015-08-27 01:45:47','2015-08-27 01:45:47','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:45:47','2015-08-27 01:45:47','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3114,1,'2015-08-27 01:53:05','2015-08-27 01:53:05','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded-less\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:53:05','2015-08-27 01:53:05','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3115,1,'2015-08-27 01:54:25','2015-08-27 01:54:25','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded-less\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:54:25','2015-08-27 01:54:25','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3116,1,'2015-08-27 01:56:50','2015-08-27 01:56:50','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded-less\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:56:50','2015-08-27 01:56:50','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3117,1,'2015-08-27 01:58:28','2015-08-27 01:58:28','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded-less\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 01:58:28','2015-08-27 01:58:28','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3119,1,'2015-08-27 02:03:39','2015-08-27 02:03:39','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1435077437650{margin-right: 15px !important;padding-top: 35px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 02:03:39','2015-08-27 02:03:39','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3120,1,'2015-08-27 02:04:52','2015-08-27 02:04:52','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641087719{margin-right: 15px !important;padding-top: 10px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 02:04:52','2015-08-27 02:04:52','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3121,1,'2015-08-27 02:07:02','2015-08-27 02:07:02','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641087719{margin-right: 15px !important;padding-top: 10px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 02:07:02','2015-08-27 02:07:02','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3122,1,'2015-08-27 02:08:09','2015-08-27 02:08:09','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home 2','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 02:08:09','2015-08-27 02:08:09','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3123,1,'2015-08-27 04:06:12','2015-08-27 04:06:12','','Admissions','','publish','closed','closed','','admissions','','','2015-08-27 04:06:12','2015-08-27 04:06:12','',0,'http://genewyork.com/?page_id=3123',0,'page','',0),(3124,1,'2015-08-27 04:06:12','2015-08-27 04:06:12','','Admissions','','inherit','closed','closed','','3123-revision-v1','','','2015-08-27 04:06:12','2015-08-27 04:06:12','',3123,'http://genewyork.com/3123-revision-v1/',0,'revision','',0),(3125,1,'2015-08-27 04:06:38','2015-08-27 04:06:38','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"20\" element_width=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441772236944-02964ea6-300a-3\" taxonomies=\"108\"][/vc_column][/vc_row]','Programs','','publish','closed','closed','','programs','','','2015-09-09 04:18:10','2015-09-09 04:18:10','',0,'http://genewyork.com/?page_id=3125',0,'page','',0),(3126,1,'2015-08-27 04:06:38','2015-08-27 04:06:38','','Programs','','inherit','closed','closed','','3125-revision-v1','','','2015-08-27 04:06:38','2015-08-27 04:06:38','',3125,'http://genewyork.com/3125-revision-v1/',0,'revision','',0),(3128,1,'2015-08-27 04:08:23','2015-08-27 04:08:23',' ','','','publish','closed','closed','','3128','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3128',2,'nav_menu_item','',0),(3129,1,'2015-08-27 04:08:23','2015-08-27 04:08:23',' ','','','publish','closed','closed','','3129','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3129',5,'nav_menu_item','',0),(3130,1,'2015-08-27 04:11:10','2015-08-27 04:11:10','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"5\"][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 04:11:10','2015-08-27 04:11:10','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3131,1,'2015-08-27 04:22:18','2015-08-27 04:22:18','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3093\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-27 04:22:18','2015-08-27 04:22:18','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3140,1,'2015-08-27 05:17:35','2015-08-27 05:17:35','','ESL','','inherit','open','closed','','esl','','','2015-08-27 05:18:33','2015-08-27 05:18:33','',0,'http://genewyork.com/wp-content/uploads/2015/08/ESL.jpg',0,'attachment','image/jpeg',0),(3146,1,'2015-08-28 03:50:06','2015-08-28 03:50:06','','ets_toefl_logo','','inherit','open','closed','','ets_toefl_logo','','','2015-08-28 03:50:06','2015-08-28 03:50:06','',0,'http://genewyork.com/wp-content/uploads/2015/08/ets_toefl_logo.png',0,'attachment','image/png',0),(3175,1,'2015-08-28 19:28:05','2015-08-28 19:28:05','','geny_favicon','','inherit','open','closed','','geny_favicon','','','2015-08-29 17:39:23','2015-08-29 17:39:23','',5,'http://genewyork.com/wp-content/uploads/2015/08/geny_favicon.png',0,'attachment','image/png',0),(3177,1,'2015-08-29 04:20:50','2015-08-29 04:20:50','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3176\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:20:50','2015-08-29 04:20:50','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3180,1,'2015-08-29 04:29:36','2015-08-29 04:29:36','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:29:36','2015-08-29 04:29:36','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3182,1,'2015-08-29 04:35:22','2015-08-29 04:35:22','[vc_row][vc_column css=\".vc_custom_1440822916073{margin-top: -10px !important;}\"][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:35:22','2015-08-29 04:35:22','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3183,1,'2015-08-29 04:37:49','2015-08-29 04:37:49','','geny_logo_225x200','','inherit','open','closed','','geny_logo_225x200','','','2015-08-29 04:37:49','2015-08-29 04:37:49','',536,'http://genewyork.com/wp-content/uploads/2015/04/geny_logo_225x200.png',0,'attachment','image/png',0),(3184,1,'2015-08-29 04:38:05','2015-08-29 04:38:05','[vc_row][vc_column css=\".vc_custom_1440823080589{background: #cccccc url(http://genewyork.com/wp-content/uploads/2015/04/geny_logo_225x200.png?id=3183) !important;}\"][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:38:05','2015-08-29 04:38:05','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3185,1,'2015-08-29 04:42:44','2015-08-29 04:42:44','[vc_row][vc_column][tzheader header_option=\"header2\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]\r\n<h3><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1.png\"><img class=\"wp-image-3107 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray1-300x285.png\" alt=\"geny_logo_gray\" width=\"50\" height=\"48\" /></a></h3>\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\r\n\r\n[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:42:44','2015-08-29 04:42:44','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3186,1,'2015-08-29 04:46:06','2015-08-29 04:46:06','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"1755\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></h4>\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\">Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"CONTACT US\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1435664290583{margin-top: 100px !important;margin-bottom: 85px !important;}\" el_class=\"tz-home7-introduce-icon\"][vc_column width=\"5/12\" el_class=\"tz-introduce-content\"][vc_column_text el_class=\"tz-university-one\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a></p>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"7/12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433214991347{margin-top: 15px !important;margin-bottom: 15px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row style_width=\"boxed\"][vc_column][title title_text=\"OUR LEADER\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][tz_our_team limit=\"6\" item_desktop=\"4\" item_desktop_small=\"3\" item_tablet=\"2\" item_mobile=\"1\" icon_content=\"fa fa-chain\" color_top=\"#334878\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-08-29 04:46:06','2015-08-29 04:46:06','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3187,1,'2015-08-29 04:49:06','2015-08-29 04:49:06','','geny_logo_gray','','inherit','open','closed','','geny_logo_gray','','','2015-08-29 04:49:06','2015-08-29 04:49:06','',536,'http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray.png',0,'attachment','image/png',0),(3188,1,'2015-08-29 04:50:44','2015-08-29 04:50:44','','geny_logo_gray_113x100','','inherit','open','closed','','geny_logo_gray_113x100','','','2015-08-29 04:50:44','2015-08-29 04:50:44','',536,'http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png',0,'attachment','image/png',0),(3189,1,'2015-08-29 04:53:42','2015-08-29 04:53:42','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440639820455{margin-right: -30px !important;margin-left: 15px !important;padding-top: 40px !important;padding-bottom: 40px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]<img class=\"alignleft wp-image-3188 size-full\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"\" width=\"113\" height=\"100\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:53:42','2015-08-29 04:53:42','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3190,1,'2015-08-29 04:56:42','2015-08-29 04:56:42','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824196258{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]<img class=\"alignleft wp-image-3187\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:56:42','2015-08-29 04:56:42','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3191,1,'2015-08-29 04:58:14','2015-08-29 04:58:14','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text el_class=\"tz-services-description\"]<img class=\"wp-image-3187 alignnone\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 04:58:14','2015-08-29 04:58:14','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3192,1,'2015-08-29 05:02:03','2015-08-29 05:02:03','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 05:02:03','2015-08-29 05:02:03','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3193,1,'2015-08-29 05:03:05','2015-08-29 05:03:05','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 05:03:05','2015-08-29 05:03:05','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3194,1,'2015-08-29 05:32:27','2015-08-29 05:32:27','','geny_logo_white','','inherit','open','closed','','geny_logo_white','','','2015-08-29 05:32:27','2015-08-29 05:32:27','',5,'http://genewyork.com/wp-content/uploads/2015/08/geny_logo_white.png',0,'attachment','image/png',0),(3197,1,'2015-08-29 05:50:14','2015-08-29 05:50:14','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441507240724-39d94b3e-588e-6\" taxonomies=\"107\"][/vc_column][/vc_row]','Business Program','','publish','closed','closed','','business-program','','','2015-09-06 02:51:30','2015-09-06 02:51:30','',3125,'http://genewyork.com/?page_id=3197',0,'page','',0),(3198,1,'2015-08-29 05:50:14','2015-08-29 05:50:14','[vc_row][vc_column][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 05:50:14','2015-08-29 05:50:14','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3199,1,'2015-09-06 02:59:02','2015-09-06 02:59:02','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441507240724-39d94b3e-588e-6\" taxonomies=\"107\"][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-autosave-v1','','','2015-09-06 02:59:02','2015-09-06 02:59:02','',3197,'http://genewyork.com/3197-autosave-v1/',0,'revision','',0),(3200,1,'2015-08-29 05:50:56','2015-08-29 05:50:56',' ','','','publish','closed','closed','','3200','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',3125,'http://genewyork.com/?p=3200',7,'nav_menu_item','',0),(3201,1,'2015-08-29 06:04:17','2015-08-29 06:04:17','[vc_row][vc_column width=\"1/4\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"]\r\n[/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 06:04:17','2015-08-29 06:04:17','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3202,1,'2015-08-29 06:07:20','2015-08-29 06:07:20','[vc_row][vc_column width=\"1/4\"]\r\n[/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][vc_separator][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 06:07:20','2015-08-29 06:07:20','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3203,1,'2015-08-29 06:08:53','2015-08-29 06:08:53','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 06:08:53','2015-08-29 06:08:53','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3204,1,'2015-08-29 06:10:50','2015-08-29 06:10:50','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 06:10:50','2015-08-29 06:10:50','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3205,1,'2015-08-29 06:12:33','2015-08-29 06:12:33','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Bookkeeping</h1>\r\nThis course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-08-29 06:12:33','2015-08-29 06:12:33','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3206,1,'2015-08-29 06:20:14','2015-08-29 06:20:14','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"2\" orderby=\"title\" grid_id=\"vc_gid:1441512256529-2a59c92d-cafc-3\" taxonomies=\"110\"][/vc_column][/vc_row]','Allied Health Program','','publish','closed','closed','','allied-health-program','','','2015-09-12 02:43:37','2015-09-12 02:43:37','',3125,'http://genewyork.com/?page_id=3206',0,'page','',0),(3207,1,'2015-08-29 06:20:14','2015-08-29 06:20:14','[vc_row][vc_column][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\nThe U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evalu- ation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-08-29 06:20:14','2015-08-29 06:20:14','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3208,1,'2015-08-29 06:20:31','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2015-08-29 06:20:31','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3208',1,'nav_menu_item','',0),(3209,1,'2015-08-29 06:21:34','2015-08-29 06:21:34',' ','','','publish','closed','closed','','3209','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',3125,'http://genewyork.com/?p=3209',6,'nav_menu_item','',0),(3210,1,'2015-09-06 04:03:37','2015-09-06 04:03:37','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"2\" style=\"pagination\" orderby=\"title\" grid_id=\"vc_gid:1441512213518-2a59c92d-cafc-9\" taxonomies=\"110\"][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-autosave-v1','','','2015-09-06 04:03:37','2015-09-06 04:03:37','',3206,'http://genewyork.com/3206-autosave-v1/',0,'revision','',0),(3211,1,'2015-08-29 06:36:15','2015-08-29 06:36:15','[vc_row][vc_column][title icon_color=\"#ff0000\" background_color=\"#ff0000\" text_color=\"#ff0000\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\nThe U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evalu- ation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-08-29 06:36:15','2015-08-29 06:36:15','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3212,1,'2015-08-29 06:36:50','2015-08-29 06:36:50','[vc_row][vc_column][title icon_color=\"\" background_color=\"\" text_color=\"#ff0000\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\nThe U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evalu- ation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-08-29 06:36:50','2015-08-29 06:36:50','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3213,1,'2015-08-29 06:37:24','2015-08-29 06:37:24','[vc_row][vc_column][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\nThe U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evalu- ation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-08-29 06:37:24','2015-08-29 06:37:24','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3216,1,'2015-08-29 16:37:00','2015-08-29 16:37:00','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][vc_single_image image=\"3215\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 16:37:00','2015-08-29 16:37:00','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3217,1,'2015-08-29 16:44:27','2015-08-29 16:44:27','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title icon_color=\"#ff0000\" background_color=\"#ff0000\" text_color=\"#ff0000\"][vc_single_image image=\"3215\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 16:44:27','2015-08-29 16:44:27','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3218,1,'2015-08-29 16:51:04','2015-08-29 16:51:04','','empire-state-building-nyc-2000x919','','inherit','open','closed','','empire-state-building-nyc-2000x919','','','2015-08-29 16:51:04','2015-08-29 16:51:04','',1689,'http://genewyork.com/wp-content/uploads/2015/05/empire-state-building-nyc-2000x919.jpg',0,'attachment','image/jpeg',0),(3219,1,'2015-08-29 16:51:17','2015-08-29 16:51:17','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title icon_color=\"#ff0000\" background_color=\"#ff0000\" text_color=\"#ff0000\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 16:51:17','2015-08-29 16:51:17','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3220,1,'2015-08-29 16:53:16','2015-08-29 16:53:16','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></h4>\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\">Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"CONTACT US\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1435664290583{margin-top: 100px !important;margin-bottom: 85px !important;}\" el_class=\"tz-home7-introduce-icon\"][vc_column width=\"5/12\" el_class=\"tz-introduce-content\"][vc_column_text el_class=\"tz-university-one\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a></p>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[button type_choose_style=\"Style Button 1\" background=\"rgb(246, 246, 246)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][vc_column width=\"7/12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Deadlines\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433214991347{margin-top: 15px !important;margin-bottom: 15px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style3\" title_customer=\"Find A Major\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row style_width=\"boxed\"][vc_column][title title_text=\"OUR LEADER\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][tz_our_team limit=\"6\" item_desktop=\"4\" item_desktop_small=\"3\" item_tablet=\"2\" item_mobile=\"1\" icon_content=\"fa fa-chain\" color_top=\"#334878\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-08-29 16:53:16','2015-08-29 16:53:16','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3221,1,'2015-08-29 17:12:41','2015-08-29 17:12:41','','35th&8th','','inherit','open','closed','','35th8th','','','2015-08-29 17:13:38','2015-08-29 17:13:38','',1689,'http://genewyork.com/wp-content/uploads/2015/05/35th8th.jpg',0,'attachment','image/jpeg',0),(3222,1,'2015-08-29 17:14:24','2015-08-29 17:14:24','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][vc_single_image image=\"3221\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 17:14:24','2015-08-29 17:14:24','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3223,1,'2015-08-29 17:20:55','2015-08-29 17:20:55','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#f2a633\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][vc_single_image image=\"3221\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 17:20:55','2015-08-29 17:20:55','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3224,1,'2015-09-04 21:42:00','2015-09-04 21:42:00','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row full_height=\"yes\"][vc_column el_class=\"about-us-carousel\" css=\".vc_custom_1441402830563{padding: 0px !important;background-color: #f6f6f6 !important;}\"][vc_separator border_width=\"3\"][title style=\"style2\" title_text=\"GENY School Interiors\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"GENY has multiple computer rooms, student lounge, library and kitchen for our students and staff.\"][vc_column_text css=\".vc_custom_1441402914772{margin-top: -50px !important;margin-bottom: 50px !important;}\"]\r\n\r\n[huge_it_slider id=\"5\"]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-autosave-v1','','','2015-09-04 21:42:00','2015-09-04 21:42:00','',1752,'http://genewyork.com/1752-autosave-v1/',0,'revision','',0),(3226,1,'2015-08-29 17:40:03','2015-08-29 17:40:03','','geny_logo_circle_gold_nav_120x120','','inherit','open','closed','','geny_logo_circle_gold_nav_120x120','','','2015-08-29 17:40:03','2015-08-29 17:40:03','',5,'http://genewyork.com/wp-content/uploads/2015/08/geny_logo_circle_gold_nav_120x120.png',0,'attachment','image/png',0),(3227,1,'2015-08-29 17:43:47','2015-08-29 17:43:47','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][vc_single_image image=\"3221\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 17:43:47','2015-08-29 17:43:47','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3228,1,'2015-08-29 17:58:35','2015-08-29 17:58:35','','geny_logo_white_footer','','inherit','open','closed','','geny_logo_white_footer','','','2015-08-29 17:58:35','2015-08-29 17:58:35','',5,'http://genewyork.com/wp-content/uploads/2015/08/geny_logo_white_footer.png',0,'attachment','image/png',0),(3229,1,'2015-08-29 18:40:25','2015-08-29 18:40:25','','35th&8th','','inherit','open','closed','','35th8th-2','','','2015-08-29 18:40:25','2015-08-29 18:40:25','',1689,'http://genewyork.com/wp-content/uploads/2015/05/35th8th1.jpg',0,'attachment','image/jpeg',0),(3230,1,'2015-08-29 18:40:55','2015-08-29 18:40:55','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 18:40:55','2015-08-29 18:40:55','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3231,1,'2015-08-29 18:42:05','2015-08-29 18:42:05','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ff0000\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 18:42:05','2015-08-29 18:42:05','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3232,1,'2015-08-29 18:56:35','2015-08-29 18:56:35','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title title_text=\"Have a question? Send us a message.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#000000\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 18:56:35','2015-08-29 18:56:35','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3233,1,'2015-08-29 19:18:59','2015-08-29 19:18:59','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"646-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? Send us a message.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Get started today.\nGENY aims to provide quality education programs. For course inquiries, technical support, and legal questions...\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 19:18:59','2015-08-29 19:18:59','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3234,1,'2015-08-29 19:20:02','2015-08-29 19:20:02','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3179\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></h4>\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\">Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"CONTACT US\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row style_width=\"boxed\"][vc_column][title title_text=\"OUR LEADER\" style_icon_image=\"style_image\" style_image_title=\"1953\" background_color=\"#ffffff\" text_color=\"#444444\"][tz_our_team limit=\"6\" item_desktop=\"4\" item_desktop_small=\"3\" item_tablet=\"2\" item_mobile=\"1\" icon_content=\"fa fa-chain\" color_top=\"#334878\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-08-29 19:20:02','2015-08-29 19:20:02','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3235,1,'2015-08-29 19:21:17','2015-08-29 19:21:17','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-29 19:21:17','2015-08-29 19:21:17','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3236,1,'2015-08-29 19:41:55','2015-08-29 19:41:55','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"+1 (646)-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][title style=\"style2\" title_text=\"Reach out to us\" icon_color=\"#ff0000\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Feel free to call us on +1 (646)-794-8333 and our representative will help you with all your questions.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? Reach out to us.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Send us a message and we will get back to you promptly.\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 19:41:55','2015-08-29 19:41:55','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3237,1,'2015-08-29 19:44:15','2015-08-29 19:44:15','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"+1 (646)-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][title style=\"style2\" title_text=\"Reach out to us\" icon_color=\"#ff0000\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Feel free to call us on +1 (646)-794-8333 and our representative will help you with all your questions.\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? We are here for you.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Send us a message and we will get back to you promptly.\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-08-29 19:44:15','2015-08-29 19:44:15','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3245,1,'2015-08-29 21:55:53','2015-08-29 21:55:53','a:1:{i:0;a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}','polylang_mo_59','','private','closed','closed','','polylang_mo_59','','','2015-08-29 21:55:53','2015-08-29 21:55:53','',0,'http://genewyork.com/?post_type=polylang_mo&p=3245',0,'polylang_mo','',0),(3246,1,'2015-08-29 22:14:27','2015-08-29 22:14:27','a:1:{i:0;a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}','polylang_mo_81','','private','closed','closed','','polylang_mo_81','','','2015-08-29 22:14:27','2015-08-29 22:14:27','',0,'http://genewyork.com/?post_type=polylang_mo&p=3246',0,'polylang_mo','',0),(3247,1,'2015-08-29 22:15:17','2015-08-29 22:15:17','a:1:{i:0;a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}','polylang_mo_84','','private','closed','closed','','polylang_mo_84','','','2015-08-29 22:15:17','2015-08-29 22:15:17','',0,'http://genewyork.com/?post_type=polylang_mo&p=3247',0,'polylang_mo','',0),(3248,1,'2015-08-29 22:15:37','2015-08-29 22:15:37','a:1:{i:0;a:2:{i:0;s:0:\"\";i:1;s:0:\"\";}}','polylang_mo_87','','private','closed','closed','','polylang_mo_87','','','2015-08-29 22:15:37','2015-08-29 22:15:37','',0,'http://genewyork.com/?post_type=polylang_mo&p=3248',0,'polylang_mo','',0),(3290,1,'2015-08-31 15:24:58','0000-00-00 00:00:00','','Languages list Insertion point','Current language is not inserted and links appears and redirect to post or page if exists in other languages.','draft','closed','closed','','','','','2015-08-31 15:24:58','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3290',1,'nav_menu_item','',0),(3291,1,'2015-08-31 15:24:58','0000-00-00 00:00:00','','Pages list Insertion point','include=','draft','closed','closed','','','','','2015-08-31 15:24:58','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3291',1,'nav_menu_item','',0),(3292,1,'2015-08-31 15:24:58','0000-00-00 00:00:00','','Menus list Insertion point','','draft','closed','closed','','','','','2015-08-31 15:24:58','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3292',1,'nav_menu_item','',0),(3293,1,'2015-08-31 16:00:02','2015-08-31 16:00:02','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"plazart-sidebar-header\"][/vc_column][/vc_row][vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-08-31 16:00:02','2015-08-31 16:00:02','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3295,1,'2015-08-31 16:22:35','0000-00-00 00:00:00','','Languages list Insertion point','Current language is not inserted and links appears and redirect to post or page if exists in other languages.','draft','closed','closed','','','','','2015-08-31 16:22:35','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3295',1,'nav_menu_item','',0),(3296,1,'2015-08-31 16:22:35','0000-00-00 00:00:00','','Pages list Insertion point','include=','draft','closed','closed','','','','','2015-08-31 16:22:35','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3296',1,'nav_menu_item','',0),(3297,1,'2015-08-31 16:22:35','0000-00-00 00:00:00','','Menus list Insertion point','','draft','closed','closed','','','','','2015-08-31 16:22:35','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3297',1,'nav_menu_item','',0),(3298,1,'2015-08-31 16:22:46','0000-00-00 00:00:00','','Languages list Insertion point','Current language is not inserted and links appears and redirect to post or page if exists in other languages.','draft','closed','closed','','','','','2015-08-31 16:22:46','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3298',1,'nav_menu_item','',0),(3299,1,'2015-08-31 16:22:46','0000-00-00 00:00:00','','Pages list Insertion point','include=','draft','closed','closed','','','','','2015-08-31 16:22:46','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3299',1,'nav_menu_item','',0),(3300,1,'2015-08-31 16:22:46','0000-00-00 00:00:00','','Menus list Insertion point','','draft','closed','closed','','','','','2015-08-31 16:22:46','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3300',1,'nav_menu_item','',0),(3304,1,'2015-08-27 04:43:58','2015-08-27 04:43:58','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>惹尼的专业英语作为第二语言( ESL )课程包括六个级别。每一个新学生都必须参加英语水平测试,将决定哪个级别将是最适合他或她。虽然我们的课程强调交际能力,惹尼的ESL课程讲授中,鼓励能力在各个领域的方式:听力,阅读,口语和写作。</div>\r\n<h3>Comprehensive</h3>\r\n惹尼的月度评估测验,让学生根据个人的进步从而使学生的个性化他们的教育推进。平均而言,学生在每个级别花费约3个月,但鼓励学生学会在自己的步伐。\r\n<h3>Elective and skills classes.</h3>\r\n对于早间节目,惹尼提供了多种选修课。在这些课程,学生可以选择英语技能的集中地。学生可以选择其中选修班,他们想借每月。对于下午和晚上学生,技能班每个月都会发生变化,让学生学习这些技能(阅读和放大器,词汇,听力和放大器;口语和语法和放大器;写作)为每1个月。\r\n<h3>Tutoring sessions</h3>\r\n下课后学生可以参加我们的辅导课之一。辅导课为学生提供了机会,以进一步练习技能,他们的讲话与以英语为母语。[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>惹尼的新托福考试预备课程是高级英语语言的学生和那些谁已经采取了新托福考试,并希望提高自己的分数。我们的课程只有谁已经帮助许多外籍英语语言的学生实现对托福网考的成功经验的教师授课。当学生完成这一计划,他们将获得两个较大的新托福考试本身和更强的学术技能,他们将需要美国学院和大学的理解。我们的计划针对新托福考试的各个领域,尤其是口语和写作部分,学生将利用我们成熟的测试形式和战略学习和实践。托福词汇也强调在整个过程中,伴随着足量的上课时间专门练了其他部分的测试。有一个完整的新托福考试的预测试和后测试包括沿十小测试的过程中,使学生能够在过程中看到自己的进步。我们还包括五位迷你词汇测试和最后的词汇测试,因为我们知道如何重要的新托福考试的词汇是我们无论是在测试,他们对未来学业的学生。</div>\r\n \r\n<div>除了我们的动态的课堂教学活动,学生也有机会练习写作托福网考散文和应对托福网考口语问题,在整个过程中,所有这些都是由我们经验丰富的教师进行分级。此外,我们的计算机实验室,包括补充新托福考试阅读和听力练习,学生可以在车间小时使用。总之,我们有信心,他们谁适用于我们的新托福考试计划国际英语语言学生实现自己的目标。</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\n商务英语课程是谁想要学习英语的国际化,讲英语的工作的学生。该计划的目的是向学生介绍商业语言为英语。\r\n\r\n您将学习与业务相关的词汇量,提高你的口语,聆听和写作技能在任何商业用途。你会愿意用英语交流的跨文化专业的环境。[/vc_column_text][/vc_column][/vc_row]','语言课程','','publish','closed','closed','','language-program','','','2015-09-02 01:22:00','2015-09-02 01:22:00','',0,'http://genewyork.com/language-program/?lang=zh-hans',0,'page','',0),(3305,1,'2015-09-02 01:21:03','2015-09-02 01:21:03','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>惹尼的专业英语作为第二语言( ESL )课程包括六个级别。每一个新学生都必须参加英语水平测试,将决定哪个级别将是最适合他或她。虽然我们的课程强调交际能力,惹尼的ESL课程讲授中,鼓励能力在各个领域的方式:听力,阅读,口语和写作。</div>\r\n<h3>Comprehensive</h3>\r\n惹尼的月度评估测验,让学生根据个人的进步从而使学生的个性化他们的教育推进。平均而言,学生在每个级别花费约3个月,但鼓励学生学会在自己的步伐。\r\n<h3>Elective and skills classes.</h3>\r\n对于早间节目,惹尼提供了多种选修课。在这些课程,学生可以选择英语技能的集中地。学生可以选择其中选修班,他们想借每月。对于下午和晚上学生,技能班每个月都会发生变化,让学生学习这些技能(阅读和放大器,词汇,听力和放大器;口语和语法和放大器;写作)为每1个月。\r\n<h3>Tutoring sessions</h3>\r\n下课后学生可以参加我们的辅导课之一。辅导课为学生提供了机会,以进一步练习技能,他们的讲话与以英语为母语。[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>惹尼的新托福考试预备课程是高级英语语言的学生和那些谁已经采取了新托福考试,并希望提高自己的分数。我们的课程只有谁已经帮助许多外籍英语语言的学生实现对托福网考的成功经验的教师授课。当学生完成这一计划,他们将获得两个较大的新托福考试本身和更强的学术技能,他们将需要美国学院和大学的理解。我们的计划针对新托福考试的各个领域,尤其是口语和写作部分,学生将利用我们成熟的测试形式和战略学习和实践。托福词汇也强调在整个过程中,伴随着足量的上课时间专门练了其他部分的测试。有一个完整的新托福考试的预测试和后测试包括沿十小测试的过程中,使学生能够在过程中看到自己的进步。我们还包括五位迷你词汇测试和最后的词汇测试,因为我们知道如何重要的新托福考试的词汇是我们无论是在测试,他们对未来学业的学生。</div>\r\n \r\n<div>除了我们的动态的课堂教学活动,学生也有机会练习写作托福网考散文和应对托福网考口语问题,在整个过程中,所有这些都是由我们经验丰富的教师进行分级。此外,我们的计算机实验室,包括补充新托福考试阅读和听力练习,学生可以在车间小时使用。总之,我们有信心,他们谁适用于我们的新托福考试计划国际英语语言学生实现自己的目标。</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\n商务英语课程是谁想要学习英语的国际化,讲英语的工作的学生。该计划的目的是向学生介绍商业语言为英语。\r\n\r\n您将学习与业务相关的词汇量,提高你的口语,聆听和写作技能在任何商业用途。你会愿意用英语交流的跨文化专业的环境。[/vc_column_text][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3304-autosave-v1','','','2015-09-02 01:21:03','2015-09-02 01:21:03','',3304,'http://genewyork.com/3304-autosave-v1/',0,'revision','',0),(3306,1,'2015-09-02 01:21:26','2015-09-02 01:21:26','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>惹尼的专业英语作为第二语言( ESL )课程包括六个级别。每一个新学生都必须参加英语水平测试,将决定哪个级别将是最适合他或她。虽然我们的课程强调交际能力,惹尼的ESL课程讲授中,鼓励能力在各个领域的方式:听力,阅读,口语和写作。</div>\r\n<h3>Comprehensive</h3>\r\n惹尼的月度评估测验,让学生根据个人的进步从而使学生的个性化他们的教育推进。平均而言,学生在每个级别花费约3个月,但鼓励学生学会在自己的步伐。\r\n<h3>Elective and skills classes.</h3>\r\n对于早间节目,惹尼提供了多种选修课。在这些课程,学生可以选择英语技能的集中地。学生可以选择其中选修班,他们想借每月。对于下午和晚上学生,技能班每个月都会发生变化,让学生学习这些技能(阅读和放大器,词汇,听力和放大器;口语和语法和放大器;写作)为每1个月。\r\n<h3>Tutoring sessions</h3>\r\n下课后学生可以参加我们的辅导课之一。辅导课为学生提供了机会,以进一步练习技能,他们的讲话与以英语为母语。[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>惹尼的新托福考试预备课程是高级英语语言的学生和那些谁已经采取了新托福考试,并希望提高自己的分数。我们的课程只有谁已经帮助许多外籍英语语言的学生实现对托福网考的成功经验的教师授课。当学生完成这一计划,他们将获得两个较大的新托福考试本身和更强的学术技能,他们将需要美国学院和大学的理解。我们的计划针对新托福考试的各个领域,尤其是口语和写作部分,学生将利用我们成熟的测试形式和战略学习和实践。托福词汇也强调在整个过程中,伴随着足量的上课时间专门练了其他部分的测试。有一个完整的新托福考试的预测试和后测试包括沿十小测试的过程中,使学生能够在过程中看到自己的进步。我们还包括五位迷你词汇测试和最后的词汇测试,因为我们知道如何重要的新托福考试的词汇是我们无论是在测试,他们对未来学业的学生。</div>\r\n \r\n<div>除了我们的动态的课堂教学活动,学生也有机会练习写作托福网考散文和应对托福网考口语问题,在整个过程中,所有这些都是由我们经验丰富的教师进行分级。此外,我们的计算机实验室,包括补充新托福考试阅读和听力练习,学生可以在车间小时使用。总之,我们有信心,他们谁适用于我们的新托福考试计划国际英语语言学生实现自己的目标。</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\n商务英语课程是谁想要学习英语的国际化,讲英语的工作的学生。该计划的目的是向学生介绍商业语言为英语。\r\n\r\n您将学习与业务相关的词汇量,提高你的口语,聆听和写作技能在任何商业用途。你会愿意用英语交流的跨文化专业的环境。[/vc_column_text][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3304-revision-v1','','','2015-09-02 01:21:26','2015-09-02 01:21:26','',3304,'http://genewyork.com/3304-revision-v1/',0,'revision','',0),(3307,1,'2015-09-02 01:22:00','2015-09-02 01:22:00','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>惹尼的专业英语作为第二语言( ESL )课程包括六个级别。每一个新学生都必须参加英语水平测试,将决定哪个级别将是最适合他或她。虽然我们的课程强调交际能力,惹尼的ESL课程讲授中,鼓励能力在各个领域的方式:听力,阅读,口语和写作。</div>\r\n<h3>Comprehensive</h3>\r\n惹尼的月度评估测验,让学生根据个人的进步从而使学生的个性化他们的教育推进。平均而言,学生在每个级别花费约3个月,但鼓励学生学会在自己的步伐。\r\n<h3>Elective and skills classes.</h3>\r\n对于早间节目,惹尼提供了多种选修课。在这些课程,学生可以选择英语技能的集中地。学生可以选择其中选修班,他们想借每月。对于下午和晚上学生,技能班每个月都会发生变化,让学生学习这些技能(阅读和放大器,词汇,听力和放大器;口语和语法和放大器;写作)为每1个月。\r\n<h3>Tutoring sessions</h3>\r\n下课后学生可以参加我们的辅导课之一。辅导课为学生提供了机会,以进一步练习技能,他们的讲话与以英语为母语。[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>惹尼的新托福考试预备课程是高级英语语言的学生和那些谁已经采取了新托福考试,并希望提高自己的分数。我们的课程只有谁已经帮助许多外籍英语语言的学生实现对托福网考的成功经验的教师授课。当学生完成这一计划,他们将获得两个较大的新托福考试本身和更强的学术技能,他们将需要美国学院和大学的理解。我们的计划针对新托福考试的各个领域,尤其是口语和写作部分,学生将利用我们成熟的测试形式和战略学习和实践。托福词汇也强调在整个过程中,伴随着足量的上课时间专门练了其他部分的测试。有一个完整的新托福考试的预测试和后测试包括沿十小测试的过程中,使学生能够在过程中看到自己的进步。我们还包括五位迷你词汇测试和最后的词汇测试,因为我们知道如何重要的新托福考试的词汇是我们无论是在测试,他们对未来学业的学生。</div>\r\n \r\n<div>除了我们的动态的课堂教学活动,学生也有机会练习写作托福网考散文和应对托福网考口语问题,在整个过程中,所有这些都是由我们经验丰富的教师进行分级。此外,我们的计算机实验室,包括补充新托福考试阅读和听力练习,学生可以在车间小时使用。总之,我们有信心,他们谁适用于我们的新托福考试计划国际英语语言学生实现自己的目标。</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\n商务英语课程是谁想要学习英语的国际化,讲英语的工作的学生。该计划的目的是向学生介绍商业语言为英语。\r\n\r\n您将学习与业务相关的词汇量,提高你的口语,聆听和写作技能在任何商业用途。你会愿意用英语交流的跨文化专业的环境。[/vc_column_text][/vc_column][/vc_row]','语言课程','','inherit','closed','closed','','3304-revision-v1','','','2015-09-02 01:22:00','2015-09-02 01:22:00','',3304,'http://genewyork.com/3304-revision-v1/',0,'revision','',0),(3318,1,'2015-08-27 04:43:58','2015-08-27 04:43:58','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>第二言語( ESL )プログラムとジェニーの専門的な英語は6つのレベルで構成されています。それぞれの新しい学生は、彼または彼女のために最も適切であろうどのレベルかを決定します英語のプレースメントテストを受けるために必要とされます。リスニング、リーディング、スピーキング、書き込み:私たちのクラスはコミュニケーション能力を重視しますが、ジェニーのESLコースはすべての分野で能力を奨励するような方法で教えられています。</div>\r\n<h3>Comprehensive</h3>\r\nジェニーの毎月の評価クイズは、学生がこのように学生は彼らの教育をパーソナライズすることができ、個々の進捗状況に基づいて進めることができます。平均では、学生がそれぞれのレベルで3ヶ月約過ごすが、学生は自分のペースで学習することが推奨されます。\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','言語プログラム','','publish','closed','closed','','language-program','','','2015-09-02 02:04:59','2015-09-02 02:04:59','',0,'http://genewyork.com/ja/language-program/',0,'page','',0),(3319,1,'2015-09-02 02:03:05','2015-09-02 02:03:05','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h1>ESL</h1>\n<div>GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.</div>\n<h3>Comprehensive</h3>\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\n<h3>Elective and skills classes.</h3>\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\n<h3>Tutoring sessions</h3>\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h1>TOEFL PREPARATION</h1>\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\n \n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\n<h1>Business English</h1>\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\n\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','言語プログラム','','inherit','closed','closed','','3318-autosave-v1','','','2015-09-02 02:03:05','2015-09-02 02:03:05','',3318,'http://genewyork.com/3318-autosave-v1/',0,'revision','',0),(3320,1,'2015-09-02 02:04:59','2015-09-02 02:04:59','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>第二言語( ESL )プログラムとジェニーの専門的な英語は6つのレベルで構成されています。それぞれの新しい学生は、彼または彼女のために最も適切であろうどのレベルかを決定します英語のプレースメントテストを受けるために必要とされます。リスニング、リーディング、スピーキング、書き込み:私たちのクラスはコミュニケーション能力を重視しますが、ジェニーのESLコースはすべての分野で能力を奨励するような方法で教えられています。</div>\r\n<h3>Comprehensive</h3>\r\nジェニーの毎月の評価クイズは、学生がこのように学生は彼らの教育をパーソナライズすることができ、個々の進捗状況に基づいて進めることができます。平均では、学生がそれぞれのレベルで3ヶ月約過ごすが、学生は自分のペースで学習することが推奨されます。\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','言語プログラム','','inherit','closed','closed','','3318-revision-v1','','','2015-09-02 02:04:59','2015-09-02 02:04:59','',3318,'http://genewyork.com/3318-revision-v1/',0,'revision','',0),(3321,1,'2015-08-27 04:43:58','2015-08-27 04:43:58','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>제 2 언어 ( ESL) 프로그램으로 GENY 의 전문 영어 6 단계 로 구성되어 있습니다. 각각의 새로운 학생은 그 또는 그녀를 위해 가장 적합 할 것이다 수준 이 결정됩니다 영어 배치 시험을 해야합니다. 듣기, 읽기 , 말하기 , 쓰기 : 우리의 수업 은 의사 소통 능력 을 강조 하지만 , GENY 의 ESL 과정 은 모든 영역에서 역량을 장려하는 방식으로 진행됩니다.</div>\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','언어 프로그램','','publish','closed','closed','','language-program','','','2015-09-02 02:09:46','2015-09-02 02:09:46','',0,'http://genewyork.com/ko/language-program/',0,'page','',0),(3322,1,'2015-09-02 02:08:20','2015-09-02 02:08:20','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>제 2 언어 ( ESL) 프로그램으로 GENY 의 전문 영어 6 단계 로 구성되어 있습니다. 각각의 새로운 학생은 그 또는 그녀를 위해 가장 적합 할 것이다 수준 이 결정됩니다 영어 배치 시험을 해야합니다. 듣기, 읽기 , 말하기 , 쓰기 : 우리의 수업 은 의사 소통 능력 을 강조 하지만 , GENY 의 ESL 과정 은 모든 영역에서 역량을 장려하는 방식으로 진행됩니다.</div>\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3321-revision-v1','','','2015-09-02 02:08:20','2015-09-02 02:08:20','',3321,'http://genewyork.com/3321-revision-v1/',0,'revision','',0),(3323,1,'2015-09-02 02:09:46','2015-09-02 02:09:46','[vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3140\" img_size=\"full\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>ESL</h1>\r\n<div>제 2 언어 ( ESL) 프로그램으로 GENY 의 전문 영어 6 단계 로 구성되어 있습니다. 각각의 새로운 학생은 그 또는 그녀를 위해 가장 적합 할 것이다 수준 이 결정됩니다 영어 배치 시험을 해야합니다. 듣기, 읽기 , 말하기 , 쓰기 : 우리의 수업 은 의사 소통 능력 을 강조 하지만 , GENY 의 ESL 과정 은 모든 영역에서 역량을 장려하는 방식으로 진행됩니다.</div>\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440735503589{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image image=\"3146\" img_size=\"full\" css=\".vc_custom_1440736185681{background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440774567445{margin-top: 40px !important;margin-bottom: 80px !important;}\"][vc_separator][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_single_image link=\"http://placehold.it/350x150\"][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>Business English</h1>\r\nThe Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column][/vc_row]','언어 프로그램','','inherit','closed','closed','','3321-revision-v1','','','2015-09-02 02:09:46','2015-09-02 02:09:46','',3321,'http://genewyork.com/3321-revision-v1/',0,'revision','',0),(3325,1,'2015-09-02 03:09:20','2015-09-02 03:09:20','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"plazart-sidebar-header\"][/vc_column][/vc_row][vc_row][vc_column][tzheader header_option=\"header5\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:09:20','2015-09-02 03:09:20','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3326,1,'2015-09-02 03:11:28','2015-09-02 03:11:28','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"plazart-sidebar-header\"][/vc_column][/vc_row][vc_row][vc_column][tzheader header_option=\"header2\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:11:28','2015-09-02 03:11:28','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3327,1,'2015-09-02 03:20:45','2015-09-02 03:20:45','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"plazart-sidebar-header\" title=\"hello!\"][/vc_column][/vc_row][vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:20:45','2015-09-02 03:20:45','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3328,1,'2015-09-02 03:24:20','2015-09-02 03:24:20','[vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:24:20','2015-09-02 03:24:20','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3329,1,'2015-09-02 03:31:16','2015-09-02 03:31:16','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:31:16','2015-09-02 03:31:16','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3330,1,'2015-09-02 03:39:21','2015-09-02 03:39:21','[vc_row][vc_column][vc_widget_sidebar title=\"widget title\" sidebar_id=\"plazart-sidebar-default\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:39:21','2015-09-02 03:39:21','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3331,1,'2015-09-02 03:54:24','2015-09-02 03:54:24','[vc_row][vc_column][vc_widget_sidebar sidebar_id=\"plazart-sidebar-header\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-02 03:54:24','2015-09-02 03:54:24','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3332,1,'2015-09-02 13:49:27','2015-09-02 13:49:27','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\"><img class=\"alignnone size-full wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"113\" height=\"100\" /></a></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 13:49:27','2015-09-02 13:49:27','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3333,1,'2015-09-02 13:54:36','2015-09-02 13:54:36','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 13:54:36','2015-09-02 13:54:36','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3334,1,'2015-09-02 13:56:57','2015-09-02 13:56:57','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<blockquote>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n</blockquote>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 13:56:57','2015-09-02 13:56:57','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3335,1,'2015-09-02 13:58:21','2015-09-02 13:58:21','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 13:58:21','2015-09-02 13:58:21','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3336,1,'2015-09-02 13:59:54','2015-09-02 13:59:54','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style2\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 13:59:54','2015-09-02 13:59:54','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0); INSERT INTO `g516db_posts` VALUES (3337,1,'2015-09-02 14:00:33','2015-09-02 14:00:33','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:00:33','2015-09-02 14:00:33','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3338,1,'2015-09-02 14:03:29','2015-09-02 14:03:29','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:03:29','2015-09-02 14:03:29','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3339,1,'2015-09-02 14:17:17','2015-09-02 14:17:17','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:17:17','2015-09-02 14:17:17','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3340,1,'2015-09-02 14:17:58','2015-09-02 14:17:58','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item introduce_option=\"style2\" content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:17:58','2015-09-02 14:17:58','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3341,1,'2015-09-02 14:18:35','2015-09-02 14:18:35','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:18:35','2015-09-02 14:18:35','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3342,1,'2015-09-02 14:19:51','2015-09-02 14:19:51','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3188\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:19:51','2015-09-02 14:19:51','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3344,1,'2015-09-02 14:28:55','2015-09-02 14:28:55','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3343\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3343\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:28:55','2015-09-02 14:28:55','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3346,1,'2015-09-02 14:43:48','2015-09-02 14:43:48','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3345\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3343\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3343\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:43:48','2015-09-02 14:43:48','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3347,1,'2015-09-02 14:54:25','2015-09-02 14:54:25','','geny_logo_simple_white_70x75','','inherit','open','closed','','geny_logo_simple_white_70x75','','','2015-09-02 14:54:25','2015-09-02 14:54:25','',1752,'http://genewyork.com/wp-content/uploads/2015/06/geny_logo_simple_white_70x75.png',0,'attachment','image/png',0),(3348,1,'2015-09-02 14:54:53','2015-09-02 14:54:53','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3345\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3343\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:54:53','2015-09-02 14:54:53','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3349,1,'2015-09-02 14:57:55','2015-09-02 14:57:55','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3343\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:57:55','2015-09-02 14:57:55','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3350,1,'2015-09-02 14:58:47','2015-09-02 14:58:47','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 14:58:47','2015-09-02 14:58:47','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3358,1,'2015-09-02 16:06:41','2015-09-02 16:06:41','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel images=\"3351,3352,3353,3354,3355,3356,3357\" img_size=\"full\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:06:41','2015-09-02 16:06:41','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3359,1,'2015-09-02 16:14:44','2015-09-02 16:14:44','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][title][vc_images_carousel images=\"3351,3352,3353,3354,3355,3356,3357\" img_size=\"large\" autoplay=\"yes\" wrap=\"yes\" el_class=\"about-us-slides\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:14:44','2015-09-02 16:14:44','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3360,1,'2015-09-02 16:15:59','2015-09-02 16:15:59','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1441210551130{margin-top: 20px !important;margin-right: 20px !important;margin-bottom: 20px !important;margin-left: 20px !important;}\"][title][vc_images_carousel images=\"3351,3352,3353,3354,3355,3356,3357\" img_size=\"large\" autoplay=\"yes\" wrap=\"yes\" el_class=\"about-us-slides\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:15:59','2015-09-02 16:15:59','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3361,1,'2015-09-02 16:25:18','2015-09-02 16:25:18','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\"><img class=\"alignnone size-full wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"113\" height=\"100\" /></a></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row][vc_row][vc_column][vc_gallery interval=\"3\" images=\"3357,3356,3355,3354,3353,3352,3351\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:25:18','2015-09-02 16:25:18','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3362,1,'2015-09-02 16:26:49','2015-09-02 16:26:49','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\"><img class=\"alignnone size-full wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"113\" height=\"100\" /></a></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row][vc_row][vc_column][vc_gallery type=\"flexslider_slide\" interval=\"3\" images=\"3357,3356,3355,3354,3353,3352,3351\" img_size=\"full\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:26:49','2015-09-02 16:26:49','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3363,1,'2015-09-02 16:27:49','2015-09-02 16:27:49','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\"><img class=\"alignnone size-full wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"113\" height=\"100\" /></a></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][vc_gallery type=\"flexslider_slide\" interval=\"3\" images=\"3357,3356,3355,3354,3353,3352,3351\" img_size=\"full\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:27:49','2015-09-02 16:27:49','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3364,1,'2015-09-02 16:29:27','2015-09-02 16:29:27','[vc_row][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"About Us\" style_icon_image=\"style_image\" background_color=\"#f6f6f6\" text_color=\"#444444\"][vc_single_image image=\"3218\" img_size=\"full\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\"><img class=\"alignnone size-full wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"113\" height=\"100\" /></a></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: center;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\nGENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.\r\n\r\nThe school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.\r\n\r\nGENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\"><img class=\"alignnone size-full wp-image-1953\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check-012.png\" alt=\"check-01\" width=\"8\" height=\"9\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"1085\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][tz-video icon_video=\"fa fa-video-camera\" title_2=\"best student life \" color_icon=\"#ffffff\" bg_color_icon=\"#334878\" webm=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.webm\" mp4=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.mp4\" ogv=\"http://wordpress.templaza.net/ethic/wp-content/uploads/2015/07/Teagueduino-HD.ogv\" image=\"785\"][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel][/vc_column][/vc_row][vc_row][vc_column][vc_gallery interval=\"3\" images=\"3357,3356,3355,3354,3353,3352,3351\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:29:27','2015-09-02 16:29:27','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3365,1,'2015-09-02 16:30:13','2015-09-02 16:30:13','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel images=\"3351,3352,3353,3354,3355,3356,3357\" img_size=\"full\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:30:13','2015-09-02 16:30:13','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3366,1,'2015-09-02 16:31:08','2015-09-02 16:31:08','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_gallery type=\"flexslider_slide\" interval=\"3\" images=\"3357,3356,3355,3354,3353,3352,3351\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 16:31:08','2015-09-02 16:31:08','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3367,1,'2015-09-02 21:07:15','2015-09-02 21:07:15','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row][vc_column][vc_images_carousel images=\"3357,3356,3355,3354,3353,3352,3351\" img_size=\"large\" el_class=\"align-center\"][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-02 21:07:15','2015-09-02 21:07:15','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3371,1,'2015-09-03 03:34:31','2015-09-03 03:34:31','','Classroom_3','','inherit','open','closed','','classroom_3','','','2015-09-03 03:34:31','2015-09-03 03:34:31','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Classroom_3.jpg',0,'attachment','image/jpeg',0),(3373,1,'2015-09-03 03:34:34','2015-09-03 03:34:34','','Computer_Room_1','','inherit','open','closed','','computer_room_1','','','2015-09-03 03:34:34','2015-09-03 03:34:34','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Computer_Room_1.jpg',0,'attachment','image/jpeg',0),(3374,1,'2015-09-03 03:34:36','2015-09-03 03:34:36','','Elevator_Hall_1','','inherit','open','closed','','elevator_hall_1','','','2015-09-03 03:34:36','2015-09-03 03:34:36','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Elevator_Hall_1.jpg',0,'attachment','image/jpeg',0),(3375,1,'2015-09-03 03:34:38','2015-09-03 03:34:38','','Elevetor_Hall_2','','inherit','open','closed','','elevetor_hall_2','','','2015-09-03 03:34:38','2015-09-03 03:34:38','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Elevetor_Hall_2.jpg',0,'attachment','image/jpeg',0),(3376,1,'2015-09-03 03:34:40','2015-09-03 03:34:40','','Library','','inherit','open','closed','','library','','','2015-09-03 03:34:40','2015-09-03 03:34:40','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Library.jpg',0,'attachment','image/jpeg',0),(3377,1,'2015-09-03 03:34:41','2015-09-03 03:34:41','','Lobby2','','inherit','open','closed','','lobby2','','','2015-09-03 03:34:41','2015-09-03 03:34:41','',1752,'http://genewyork.com/wp-content/uploads/2015/06/Lobby2.jpg',0,'attachment','image/jpeg',0),(3378,1,'2015-09-03 03:48:42','2015-09-03 03:48:42','','Classroom_5','','inherit','open','closed','','classroom_5','','','2015-09-03 03:48:42','2015-09-03 03:48:42','',5,'http://genewyork.com/wp-content/uploads/2015/08/Classroom_5.jpg',0,'attachment','image/jpeg',0),(3379,1,'2015-09-03 03:51:42','2015-09-03 03:51:42','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row full_height=\"yes\"][vc_column el_class=\"about-us-carousel\" css=\".vc_custom_1441252213137{padding: 100px !important;}\"][vc_column_text]\r\n\r\n[huge_it_slider id=\"5\"]\r\n\r\n[/vc_column_text][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-03 03:51:42','2015-09-03 03:51:42','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3380,1,'2015-09-03 05:04:52','2015-09-03 05:04:52','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1430913565470{margin-top: 90px !important;margin-bottom: 80px !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1440824282620{margin-right: -30px !important;margin-left: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text css=\".vc_custom_1440824581860{padding-left: 30px !important;}\"]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h3>GENY PROVIDES A QUALITY EDUCATION</h3>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae blandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.[/vc_column_text][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1440641286274{margin-right: 15px !important;padding-top: 30px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-03 05:04:52','2015-09-03 05:04:52','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3381,1,'2015-09-04 21:42:26','2015-09-04 21:42:26','[vc_row style_width=\"boxed\" css=\".vc_custom_1433213369088{padding-top: 65px !important;padding-bottom: 100px !important;}\"][vc_column][vc_column_text el_class=\"tz-introduce-content\"]\r\n<h4 style=\"text-align: center;\"><img class=\"alignnone wp-image-3188\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_113x100.png\" alt=\"geny_logo_gray_113x100\" width=\"50\" height=\"44\" /></h4>\r\n<h4 style=\"text-align: center;\">GLOBAL EDUCATION NEW YORK</h4>\r\n<p style=\"text-align: left;\">GENY is registered as a Private Career School and is approved by the New York State Department of Education. It is authorized under federal laws to accept non-immigrant students.</p>\r\n<p style=\"text-align: left;\">GENY traces its origins to 1995 when it was founded as a computer training school. It has evolved into a teaching institution that serves the needs of a broad range of students, offering programs in practical ESL (English as a Second Language), Accounting, N-CLEX Preparation, Fashion Design Web Design, and other emerging and popular fields of study.</p>\r\n<p style=\"text-align: left;\">The school is ideally located at the heart of the cultural, financial, and economic center of the world, there is easy access to Wall Street, trendy Fashion Avenue, Chinatown, art galleries, and museums, as well as restaurants and nightlife.</p>\r\n<p style=\"text-align: left;\">GENY has a friendly and professional staff of teachers and administrators whose overriding mission is to help our students develop in their respective fields of study while also encouraging them to explore, discover, and experience the many opportunities available in New York.</p>\r\n[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-envelope\" title=\"CONTACT US\" link=\"http://www.genewyork/contact-us/\" ][/button][/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"1084\"][vc_column][our_introduce][our_introduce_item content_main=\"“Education is the most powerful weapon which you can use to change the world”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row][vc_row full_height=\"yes\"][vc_column el_class=\"about-us-carousel\" css=\".vc_custom_1441402830563{padding: 0px !important;background-color: #f6f6f6 !important;}\"][vc_separator border_width=\"3\"][title style=\"style2\" title_text=\"GENY School Interiors\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"GENY has multiple computer rooms, student lounge, library and kitchen for our students and staff.\"][vc_column_text css=\".vc_custom_1441402914772{margin-top: -50px !important;margin-bottom: 50px !important;}\"]\r\n\r\n[huge_it_slider id=\"5\"]\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','About Us','','inherit','closed','closed','','1752-revision-v1','','','2015-09-04 21:42:26','2015-09-04 21:42:26','',1752,'http://genewyork.com/1752-revision-v1/',0,'revision','',0),(3382,1,'2015-09-04 22:23:59','2015-09-04 22:23:59','[vc_row][vc_column][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"I-134 Affidavit of Support (Optional)\" color=\"warning\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','publish','closed','closed','','apply-online','','','2015-09-05 05:21:13','2015-09-05 05:21:13','',0,'http://genewyork.com/?page_id=3382',0,'page','',0),(3383,1,'2015-09-04 21:52:20','2015-09-04 21:52:20','[vc_row][vc_column][vc_tta_accordion][vc_tta_section title=\"What is an F-1 Visa?\" tab_id=\"1441403370780-1151b3e4-a8bb\"][vc_column_text]\r\n\r\nAn F-1 Visa is an immigration document that permits a foreign citizen to come to the US to study full-time for a temporary period of time.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How do I get an F-1 Visa?\" tab_id=\"1441403370924-ee784d14-d833\"][vc_column_text]\r\n\r\nYou must first apply to GENY. If eligible for admission, GENY will issue an “Initial Attendance” I-20 form . Upon receipt of the I-20, you will need to pay the SEVIS I-901 fee online at www.fmjfee.com. The SEVIS I-901 fee supports the system that tracks students and ensures they maintain their visa status while in the U.S. After paying the fee, you will then need to visit the U.S. Embassy/Consulate in your home country to get an F-1 visa.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-20?\" tab_id=\"1441403647120-68264d88-9d17\"][vc_column_text]\r\n\r\nThe I-20 is the document GENY issues to students who are going to study with us full-time. It enables students to apply for a student visa at their local U.S. embassy.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Why is an I-20 important?\" tab_id=\"1441403708039-29bc85c6-aa8f\"][vc_column_text]\r\n\r\nThe I-20, also called a “Certificate of Eligibility”, confirms that a non-immigrant has been admitted to a U.S. school that is approved by the U.S. government to enroll non-immigrants. The I-20 is issued by the Designated School Official (DSO) at the school where the student intends to study and is required by the U.S. Embassy/Consulate to obtain F-1 visa status. In addition, F-1 students must maintain a valid I-20 by studying full-time to remain legally in the U.S. after their start date. They must also communicate regularly with their DSO to ensure they maintain legal status while in the U.S.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"When can I enter the U.S.?\" tab_id=\"1441403724800-6851261a-97df\"][vc_column_text]\r\n\r\nYou have up to 30 days before the start date listed on your I-20 to enter the U.S.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-94 and why is it important?\" tab_id=\"1441403724041-4566bb9d-9e8d\"][vc_column_text]\r\n\r\nThe I-94, also called the “Arrival/Departure Document,” is a small white piece of paper that you will receive when you enter the U.S. It will be attached to your passport/visa at the Port of Entry and it confirms successful entry into the U.S. The Port of Entry Officer will hand-write an expiration date on the I-94, which confirms how long you can legally stay in the U.S. Before leaving the Port of Entry, make sure your I-94 says “Duration of Status” or “D/S.” All F-1 visa holders should get “D/S” on their I-94. This means you are able to stay in the U.S. as long as you are maintaining valid F-1 status by studying full-time at a Department of Homeland Security approved school.\r\n\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]','Visa Information','','publish','closed','closed','','visa-information','','','2015-09-04 21:59:13','2015-09-04 21:59:13','',0,'http://genewyork.com/?page_id=3383',0,'page','',0),(3384,1,'2015-09-04 21:52:20','2015-09-04 21:52:20','[vc_row][vc_column][vc_tta_accordion][vc_tta_section title=\"What is an F-1 Visa?\" tab_id=\"1441403370780-1151b3e4-a8bb\"][vc_column_text]\r\n\r\nAn F-1 Visa is an immigration document that permits a foreign citizen to come to the US to study full-time for a temporary period of time.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How do I get an F-1 Visa?\" tab_id=\"1441403370924-ee784d14-d833\"]\r\n[/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]','Visa Information','','inherit','closed','closed','','3383-revision-v1','','','2015-09-04 21:52:20','2015-09-04 21:52:20','',3383,'http://genewyork.com/3383-revision-v1/',0,'revision','',0),(3385,1,'2015-09-04 21:52:49','2015-09-04 21:52:49',' ','','','publish','closed','closed','','3385','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3385',4,'nav_menu_item','',0),(3386,1,'2015-09-04 21:58:52','2015-09-04 21:58:52','[vc_row][vc_column][vc_tta_accordion][vc_tta_section title=\"What is an F-1 Visa?\" tab_id=\"1441403370780-1151b3e4-a8bb\"][vc_column_text]\n\nAn F-1 Visa is an immigration document that permits a foreign citizen to come to the US to study full-time for a temporary period of time.\n\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How do I get an F-1 Visa?\" tab_id=\"1441403370924-ee784d14-d833\"][vc_column_text]\n\nYou must first apply to GENY. If eligible for admission, GENY will issue an “Initial Attendance” I-20 form . Upon receipt of the I-20, you will need to pay the SEVIS I-901 fee online at www.fmjfee.com. The SEVIS I-901 fee supports the system that tracks students and ensures they maintain their visa status while in the U.S. After paying the fee, you will then need to visit the U.S. Embassy/Consulate in your home country to get an F-1 visa.\n\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-20?\" tab_id=\"1441403647120-68264d88-9d17\"][vc_column_text]\n\nThe I-20 is the document GENY issues to students who are going to study with us full-time. It enables students to apply for a stu- dent visa at their local U.S. embassy.\n\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Why is an I-20 important?\" tab_id=\"1441403708039-29bc85c6-aa8f\"][vc_column_text]\n\nThe I-20, also called a “Certificate of Eligibility”, confirms that a non-immigrant has been admitted to a U.S. school that is approved by the U.S. government to enroll non-immigrants. The I-20 is issued by the Designated School Official (DSO) at the school where the student intends to study and is required by the U.S. Embassy/Consulate to obtain F-1 visa status. In addition, F-1 students must maintain a valid I-20 by studying full-time to remain legally in the U.S. after their start date. They must also communicate regularly with their DSO to ensure they maintain legal status while in the U.S.\n\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"When can I enter the U.S.?\" tab_id=\"1441403724800-6851261a-97df\"][vc_column_text]\n\nYou have up to 30 days before the start date listed on your I-20 to enter the U.S.\n\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-94 and why is it important?\" tab_id=\"1441403724041-4566bb9d-9e8d\"][vc_column_text]\n\nThe I-94, also called the “Arrival/Departure Document,” is a small white piece of paper that you will receive when you enter the U.S. It will be attached to your passport/visa at the Port of Entry and it confirms successful entry into the U.S. The Port of Entry Officer will hand-write an expiration date on the I-94, which confirms how long you can legally stay in the U.S. Before leaving the Port of Entry, make sure your I-94 says “Duration of Status” or “D/S.” All F-1 visa holders should get “D/S” on their I-94. This means you are able to stay in the U.S. as long as you are maintaining valid F-1 status by studying full-time at a Department of Homeland Security approved school.\n\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]','Visa Information','','inherit','closed','closed','','3383-autosave-v1','','','2015-09-04 21:58:52','2015-09-04 21:58:52','',3383,'http://genewyork.com/3383-autosave-v1/',0,'revision','',0),(3387,1,'2015-09-04 21:59:13','2015-09-04 21:59:13','[vc_row][vc_column][vc_tta_accordion][vc_tta_section title=\"What is an F-1 Visa?\" tab_id=\"1441403370780-1151b3e4-a8bb\"][vc_column_text]\r\n\r\nAn F-1 Visa is an immigration document that permits a foreign citizen to come to the US to study full-time for a temporary period of time.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"How do I get an F-1 Visa?\" tab_id=\"1441403370924-ee784d14-d833\"][vc_column_text]\r\n\r\nYou must first apply to GENY. If eligible for admission, GENY will issue an “Initial Attendance” I-20 form . Upon receipt of the I-20, you will need to pay the SEVIS I-901 fee online at www.fmjfee.com. The SEVIS I-901 fee supports the system that tracks students and ensures they maintain their visa status while in the U.S. After paying the fee, you will then need to visit the U.S. Embassy/Consulate in your home country to get an F-1 visa.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-20?\" tab_id=\"1441403647120-68264d88-9d17\"][vc_column_text]\r\n\r\nThe I-20 is the document GENY issues to students who are going to study with us full-time. It enables students to apply for a student visa at their local U.S. embassy.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"Why is an I-20 important?\" tab_id=\"1441403708039-29bc85c6-aa8f\"][vc_column_text]\r\n\r\nThe I-20, also called a “Certificate of Eligibility”, confirms that a non-immigrant has been admitted to a U.S. school that is approved by the U.S. government to enroll non-immigrants. The I-20 is issued by the Designated School Official (DSO) at the school where the student intends to study and is required by the U.S. Embassy/Consulate to obtain F-1 visa status. In addition, F-1 students must maintain a valid I-20 by studying full-time to remain legally in the U.S. after their start date. They must also communicate regularly with their DSO to ensure they maintain legal status while in the U.S.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"When can I enter the U.S.?\" tab_id=\"1441403724800-6851261a-97df\"][vc_column_text]\r\n\r\nYou have up to 30 days before the start date listed on your I-20 to enter the U.S.\r\n\r\n[/vc_column_text][/vc_tta_section][vc_tta_section title=\"What is an I-94 and why is it important?\" tab_id=\"1441403724041-4566bb9d-9e8d\"][vc_column_text]\r\n\r\nThe I-94, also called the “Arrival/Departure Document,” is a small white piece of paper that you will receive when you enter the U.S. It will be attached to your passport/visa at the Port of Entry and it confirms successful entry into the U.S. The Port of Entry Officer will hand-write an expiration date on the I-94, which confirms how long you can legally stay in the U.S. Before leaving the Port of Entry, make sure your I-94 says “Duration of Status” or “D/S.” All F-1 visa holders should get “D/S” on their I-94. This means you are able to stay in the U.S. as long as you are maintaining valid F-1 status by studying full-time at a Department of Homeland Security approved school.\r\n\r\n[/vc_column_text][/vc_tta_section][/vc_tta_accordion][/vc_column][/vc_row]','Visa Information','','inherit','closed','closed','','3383-revision-v1','','','2015-09-04 21:59:13','2015-09-04 21:59:13','',3383,'http://genewyork.com/3383-revision-v1/',0,'revision','',0),(3388,1,'2015-09-04 22:08:19','2015-09-04 22:08:19','[vc_row][vc_column][vc_column_text]\r\n\r\nI am text block. Click edit button to change this text. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.\r\n\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator][/vc_column][/vc_row][vc_row][vc_column][vc_toggle title=\"First question\" open=\"true\" el_id=\"1441404475043-abe18f84-f201\"]\r\n\r\nToggle content goes here, click edit button to change this text.\r\n\r\n[/vc_toggle][vc_toggle title=\"Second question\" el_id=\"1441404475181-e1d3d024-8598\"]\r\n\r\nToggle content goes here, click edit button to change this text.\r\n\r\n[/vc_toggle][vc_toggle title=\"Third question\" el_id=\"1441404475302-cf4a6b04-4cbf\"]\r\n\r\nToggle content goes here, click edit button to change this text.\r\n\r\n[/vc_toggle][vc_toggle title=\"Fourth question\" el_id=\"1441404475430-daf0d542-ea97\"]\r\n\r\nToggle content goes here, click edit button to change this text.\r\n\r\n[/vc_toggle][vc_toggle title=\"Fifth question\" el_id=\"1441404475552-29abdfee-57ba\"]\r\n\r\nToggle content goes here, click edit button to change this text.\r\n\r\n[/vc_toggle][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-04 22:08:19','2015-09-04 22:08:19','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3389,1,'2015-09-04 22:18:24','2015-09-04 22:18:24','[vc_row][vc_column][title style=\"style2\" title_text=\"International Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"International students must submit the following.\"][title style=\"style2\" title_text=\"Transfer Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Transferring students must submit the following.\"][title style=\"style2\" title_text=\"Transfer Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Local students must submit the following.\"][vc_column_text]\r\n<ul>\r\n <li>A completed International Student Application Form that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your high school or university diploma or transcript.</li>\r\n <li>An original bank statement with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor (optional).</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-04 22:18:24','2015-09-04 22:18:24','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3390,1,'2015-09-04 22:23:59','2015-09-04 22:23:59','[vc_row][vc_column][title style=\"style2\" title_text=\"International Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"International students must submit the following.\"][vc_column_text]\r\n<ul>\r\n <li>A completed International Student Application Form that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your high school or university diploma or transcript.</li>\r\n <li>An original bank statement with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor (optional).</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n[/vc_column_text][title style=\"style2\" title_text=\"Transfer Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Transferring students must submit the following.\"][vc_column_text]\r\n<ul>\r\n <li>The Transfer Form that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n[/vc_column_text][title style=\"style2\" title_text=\"Transfer Students\" icon_color=\"\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Local students must submit the following.\"][vc_column_text]\r\n<ul>\r\n <li>A completed Application Form that you can download from our website.</li>\r\n <li>A copy of your ID with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-04 22:23:59','2015-09-04 22:23:59','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3391,1,'2015-09-04 22:25:00','2015-09-04 22:25:00',' ','','','publish','closed','closed','','3391','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',0,'http://genewyork.com/?p=3391',3,'nav_menu_item','',0),(3392,1,'2015-09-05 05:20:09','2015-09-05 05:20:09','[vc_row][vc_column][vc_empty_space height=\"25px\"][vc_column_text]\n<h1>International Students</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\n<ul>\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\n <li>A copy of your passport with a recent photograph.</li>\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\n</ul>\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"I-134 Affidavit of Support (Optional)\" color=\"warning\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1>Transferring International Students</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\n<ul>\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\napplication fee.</li>\n</ul>\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\n<h1>Local Studetns</h1>\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\n<ul>\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\n</ul>\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-autosave-v1','','','2015-09-05 05:20:09','2015-09-05 05:20:09','',3382,'http://genewyork.com/3382-autosave-v1/',0,'revision','',0),(3393,1,'2015-09-05 02:56:11','2015-09-05 02:56:11',' ','','','publish','closed','closed','','3393','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3125,'http://genewyork.com/?p=3393',1,'nav_menu_item','',0),(3403,1,'2015-09-05 04:12:43','2015-09-05 04:12:43','[vc_row][vc_column][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n\r\n<hr />\r\n\r\n \r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_separator border_width=\"3\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Students</h1>\r\n \r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 04:12:43','2015-09-05 04:12:43','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3404,1,'2015-09-05 04:59:55','2015-09-05 04:59:55','[vc_row][vc_column][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Studetns</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 04:59:55','2015-09-05 04:59:55','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3405,1,'2015-09-05 05:09:14','2015-09-05 05:09:14','[vc_row][vc_column][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Studetns</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 05:09:14','2015-09-05 05:09:14','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3406,1,'2015-09-05 05:16:31','2015-09-05 05:16:31','[vc_row][vc_column][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"I-134 Affidavit of Support (Optional)\" color=\"warning\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"20px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Studetns</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 05:16:31','2015-09-05 05:16:31','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3407,1,'2015-09-05 05:20:50','2015-09-05 05:20:50','[vc_row][vc_column][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"I-134 Affidavit of Support (Optional)\" color=\"warning\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Studetns</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 05:20:50','2015-09-05 05:20:50','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3408,1,'2015-09-05 05:21:13','2015-09-05 05:21:13','[vc_row][vc_column][vc_empty_space height=\"25px\"][vc_column_text]\r\n<h1>International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>International Student Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your passport with a recent photograph.</li>\r\n <li>A copy of your <strong>high school or university diploma or transcript</strong>.</li>\r\n <li>An <strong>original bank statement</strong> with a minimum US$20,000 balance.</li>\r\n <li>Affidavit of Support (I-134) that documents sufficient funds to cover the duration of study filled out by your sponsor <strong>(optional)</strong>.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$200.00, payable to GENY, to cover both the application fee and international shipping fees.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_row_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"International Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_btn title=\"I-134 Affidavit of Support (Optional)\" color=\"warning\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Transferring International Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>The <a>Transfer Form</a> that you can download from our website.</li>\r\n <li>A non-refundable money order, check, or credit card payment for US$100.00, payable to GENY, to cover the\r\napplication fee.</li>\r\n</ul>\r\n<h5>If all requirements are met, GENY will send an acceptance letter and an i-20 Form to the prospective student.</h5>\r\n[/vc_column_text][vc_btn title=\"Transfer Student Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][vc_empty_space height=\"80px\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>Local Students</h1>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][vc_separator border_width=\"3\"][vc_column_text]\r\n<ul>\r\n <li>A completed <a>Application Form</a> that you can download from our website.</li>\r\n <li>A copy of your <strong>ID</strong> with a recent photograph.</li>\r\n <li>A non-refundable Money Order, check, or credit card payment for US$50.00, payable to GENY, to cover the application fee.</li>\r\n</ul>\r\n[/vc_column_text][vc_btn title=\"Application Form\" color=\"warning\" align=\"left\" i_icon_fontawesome=\"fa fa-file-text\" add_icon=\"true\"][/vc_column][/vc_row]','Apply Online','','inherit','closed','closed','','3382-revision-v1','','','2015-09-05 05:21:13','2015-09-05 05:21:13','',3382,'http://genewyork.com/3382-revision-v1/',0,'revision','',0),(3409,1,'2015-09-05 17:57:20','2015-09-05 17:57:20',' ','','','publish','closed','closed','','3409','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3125,'http://genewyork.com/?p=3409',4,'nav_menu_item','',0),(3412,1,'2015-09-05 18:43:46','2015-09-05 18:43:46','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"turquoise\" border_width=\"3\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-09-05 18:43:46','2015-09-05 18:43:46','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3415,1,'2015-09-05 18:44:39','0000-00-00 00:00:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"turquoise\" border_width=\"3\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','Allied Health Program','','draft','closed','closed','','','','','2015-09-05 18:44:39','0000-00-00 00:00:00','',0,'http://genewyork.com/?page_id=3415',0,'page','',0),(3416,1,'2015-09-05 18:45:46','0000-00-00 00:00:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"turquoise\" border_width=\"3\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440829347877{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ALLIED HEALTH TRAINING</h1>\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row][vc_row][vc_column][/vc_column][/vc_row]','Allied Health Program','','draft','closed','closed','','','','','2015-09-05 18:45:46','0000-00-00 00:00:00','',0,'http://genewyork.com/?page_id=3416',0,'page','',0),(3417,1,'2015-09-05 18:48:45','2015-09-05 18:48:45','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','NCLEX-RN PREP','','publish','closed','closed','','nclex-rn-prep','','','2015-09-15 01:43:45','2015-09-15 01:43:45','',3206,'http://genewyork.com/?page_id=3417',0,'page','',0),(3418,1,'2015-09-05 18:48:45','2015-09-05 18:48:45','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"turquoise\" border_width=\"3\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','NCLEX-RN PREP','','inherit','closed','closed','','3417-revision-v1','','','2015-09-05 18:48:45','2015-09-05 18:48:45','',3417,'http://genewyork.com/3417-revision-v1/',0,'revision','',0),(3419,1,'2015-09-05 18:52:34','2015-09-05 18:52:34','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ALLIED HEATH TRAINING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]\r\n\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Allied Health Training','','publish','closed','closed','','allied-health-training','','','2015-09-15 01:43:59','2015-09-15 01:43:59','',3206,'http://genewyork.com/?page_id=3419',0,'page','',0),(3420,1,'2015-09-05 18:52:34','2015-09-05 18:52:34','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ALLIED HEATH TRAINING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"turquoise\" border_width=\"3\"][vc_column_text]\r\n\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Allied Health Training','','inherit','closed','closed','','3419-revision-v1','','','2015-09-05 18:52:34','2015-09-05 18:52:34','',3419,'http://genewyork.com/3419-revision-v1/',0,'revision','',0),(3421,1,'2015-09-05 18:53:25','2015-09-05 18:53:25',' ','','','publish','closed','closed','','3421','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',0,'http://genewyork.com/?p=3421',3,'nav_menu_item','',0),(3422,1,'2015-09-05 18:53:25','2015-09-05 18:53:25',' ','','','publish','closed','closed','','3422','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',0,'http://genewyork.com/?p=3422',2,'nav_menu_item','',0),(3424,1,'2015-09-05 19:07:27','2015-09-05 19:07:27','','Smiling female doctor with her teamates','Smiling female doctor with her teamates in the hospital','inherit','open','closed','','smiling-female-doctor-with-her-teamates','','','2015-09-05 19:07:27','2015-09-05 19:07:27','',3206,'http://genewyork.com/wp-content/uploads/2015/08/allied-health-program-img-1-350x250.jpg',0,'attachment','image/jpeg',0),(3426,1,'2015-09-05 19:20:42','2015-09-05 19:20:42','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3424\" img_size=\"large\" alignment=\"center\" style=\"vc_box_rounded\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">NCLEX-RN PREP</h3>\r\n[/vc_column_text][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3425\" img_size=\"large\" alignment=\"center\" style=\"vc_box_rounded\"][vc_column_text]\r\n<h3 style=\"text-align: center;\">ALLIED HEALTH TRAINING</h3>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-09-05 19:20:42','2015-09-05 19:20:42','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3427,1,'2015-09-05 19:38:28','2015-09-05 19:38:28','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','NCLEX-RN PREP','','inherit','closed','closed','','3417-autosave-v1','','','2015-09-05 19:38:28','2015-09-05 19:38:28','',3417,'http://genewyork.com/3417-autosave-v1/',0,'revision','',0),(3428,1,'2015-09-05 19:38:40','2015-09-05 19:38:40','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>NCLEX-RN PREP</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]The U.S. Department of Labor projects that by the year 2020 there will be shortage of 800,000 nurses. This shortage created a high demand for international nurses in the United States. GENY offers a complete course package for local and international students pursuing a career in nursing. This comprehensive program for registered nurses (RNs) offers students assistance through the various application and evaluation procedures that can lead to certification.\r\n\r\nGENY helps both local and international students find volunteer work. For local students, GENY also assists with job placement.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','NCLEX-RN PREP','','inherit','closed','closed','','3417-revision-v1','','','2015-09-05 19:38:40','2015-09-05 19:38:40','',3417,'http://genewyork.com/3417-revision-v1/',0,'revision','',0),(3429,1,'2015-09-05 19:42:44','2015-09-05 19:42:44','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ALLIED HEATH TRAINING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]\r\n\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Allied Health Training','','inherit','closed','closed','','3419-autosave-v1','','','2015-09-05 19:42:44','2015-09-05 19:42:44','',3419,'http://genewyork.com/3419-autosave-v1/',0,'revision','',0),(3430,1,'2015-09-05 19:43:11','2015-09-05 19:43:11','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ALLIED HEATH TRAINING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#006eb4\"][vc_column_text]\r\n\r\nIt takes a special kind of person to work in healthcare. One who thinks with both mind and heart. It’s a career choice that comes with great responsibility. Being “really good” in a position in this field is not an understatement.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Medical Office Assistant</h3>\r\nThe objective of this course is to prepare students to work in a medical setting as an entry level medical office clerk/receptionist. This course will cover Introduction to Medical Terminology, Medical Office Administration, and Introduction to Medical Insurance/Billing.\r\n<h3>Medical Assistant *TBA</h3>\r\nThe objective of this course is to prepare students to work in a medical setting, with the ability to do electronic coding and to perform the duties of a phlebotomist and to assist the doctor in the administration of EKG’s. The students will understand the responsibilities of a medical assistant regarding patient care. (Externships available)\r\n<h3>Nurse Aide / Assistant (CNA) *TBA</h3>\r\nThe objective of this course is to prepare students to work under the supervision of nursing and medical staff in hospitals, nursing care facilities, and community care facilities for the elderly. CNA is responsible for basic care services (bathing, grooming, and feeding patients, assisting nurses with medical equipment, and checking patient vital signs). (Externships available)\r\n<h3>Physical Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to support physical therapy care delivery by preparing the treatment area, patient, equipment and materials and by performing procedures under the supervision of a Physical Therapist. RHCF (Externships available)\r\n<h3>Phlebotomy Technician</h3>\r\nThe objective of this course is to prepare students for the proper techniques of drawing blood. This course will primarily be responsible for entry level collecting of blood samples to use in testing procedures.\r\n<h3>EKG Technician</h3>\r\nThe objective of this course is to prepare students to analyze a basic EKG and take a routing EKG. This course is for entry level work as an EKG technician.\r\n<h3>Home Health Aide (HHA) *TBA</h3>\r\nThe objective of this course is to prepare students to provide health care tasks, personal hygiene services, housekeeping tasks and other related support services essential for enabling patients to stay in their homes.\r\n<h3>Accounting for the Medical Office</h3>\r\nThis comprehensive course covers all aspects of finance in the medical field. Students receive specific training in accounting procedures and bookkeeping techniques as they relate to the medical profession. There is a special emphasis on medical insurance, electronic billing and coding, and medical business terminology. (Externships available)\r\n<h3>Occupational Therapy Aide *TBA</h3>\r\nThe objective of this course is to prepare students to be able to support occupational therapy by preparing materials and assembling equipment used during treatment, and to assume responsibility for a wide range of clerical tasks.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Allied Health Training','','inherit','closed','closed','','3419-revision-v1','','','2015-09-05 19:43:11','2015-09-05 19:43:11','',3419,'http://genewyork.com/3419-revision-v1/',0,'revision','',0),(3432,1,'2015-09-05 20:26:53','2015-09-05 20:26:53','[vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-09-05 20:26:53','2015-09-05 20:26:53','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3433,1,'2015-09-05 20:35:37','2015-09-05 20:35:37','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485097574{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #f6f6f6 !important;}\"][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-09-05 20:35:37','2015-09-05 20:35:37','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3434,1,'2015-09-05 20:42:22','2015-09-05 20:42:22','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-09-05 20:42:22','2015-09-05 20:42:22','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3435,1,'2015-09-05 20:43:25','2015-09-05 20:43:25','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Bookkeeping','','publish','closed','closed','','bookkeeping','','','2015-09-14 20:52:33','2015-09-14 20:52:33','',3197,'http://genewyork.com/?page_id=3435',0,'page','',0),(3436,1,'2015-09-05 20:43:25','2015-09-05 20:43:25','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828630808{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_column_text]\r\n[/vc_column_text][/vc_column][vc_column width=\"3/4\"][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\nThe course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828417619{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][/vc_column][/vc_row][vc_row][vc_column css=\".vc_custom_1440828489909{margin-top: 30px !important;margin-bottom: 50px !important;}\"][vc_separator border_width=\"3\"][/vc_column][/vc_row][vc_row][vc_column][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column][/vc_row]','Bookkeeping','','inherit','closed','closed','','3435-revision-v1','','','2015-09-05 20:43:25','2015-09-05 20:43:25','',3435,'http://genewyork.com/3435-revision-v1/',0,'revision','',0),(3437,1,'2015-09-05 20:49:19','2015-09-05 20:49:19','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]\r\n\r\nAccounting track description.\r\n\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ACCOUNTING</h3>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.[/vc_column_text][vc_column_text]\r\n<h3>INTERMEDIATE ACCOUNTING</h3>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.[/vc_column_text][vc_column_text]\r\n<h3>MANAGERIAL ACCOUNTING</h3>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.[/vc_column_text][vc_column_text]\r\n<h3>MICROSOFT OFFICE PRO</h3>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Accounting','','publish','closed','closed','','accounting','','','2015-09-06 03:05:33','2015-09-06 03:05:33','',3197,'http://genewyork.com/?page_id=3437',0,'page','',0),(3438,1,'2015-09-05 20:47:02','2015-09-05 20:47:02','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]\r\n\r\nAccounting track description.\r\n\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.\r\n[/vc_column_text][vc_column_text]\r\n<h1>INTERMEDIATE ACCOUNTING</h1>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.\r\n[/vc_column_text][vc_column_text]\r\n<h1>MANAGERIAL ACCOUNTING</h1>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.\r\n[/vc_column_text][vc_column_text]\r\n<h1>MICROSOFT OFFICE PRO</h1>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Accounting','','inherit','closed','closed','','3437-revision-v1','','','2015-09-05 20:47:02','2015-09-05 20:47:02','',3437,'http://genewyork.com/3437-revision-v1/',0,'revision','',0),(3439,1,'2015-09-05 20:48:50','2015-09-05 20:48:50','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ACCOUNTING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]\r\n\r\nAccounting track description.\r\n\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ACCOUNTING</h3>\r\nAccounting concepts and techniques essential to the administration of a business enterprise: analyzing and recording financial transactions; accounting valuation and allocation practices; preparation, analysis and interpretation of financial statements; international accounting issues.[/vc_column_text][vc_column_text]\r\n<h3>INTERMEDIATE ACCOUNTING</h3>\r\nThe course will provide a comprehensive study of creating, analyzing financial statements from general ledger data, proficiency of recording adjusting entries for the depreciation of assets and disposal of assets, use inventory valuation methods to record, create spreadsheet that will show the schedule of depreciation and create financial statements for business using computerized accounting software.[/vc_column_text][vc_column_text]\r\n<h3>MANAGERIAL ACCOUNTING</h3>\r\nThe course cover the principles, techniques, financial statement in accounting, organizational behavior and computerized accounting with Quickbooks for planning and control of business organizations from a management perspective.[/vc_column_text][vc_column_text]\r\n<h3>MICROSOFT OFFICE PRO</h3>\r\nDevelops introductory skills in the latest Microsoft Office Suite (Word, Excel, Access, and PowerPoint) while reinforcing the knowledge of windows operating system’s computer concepts, file management, Internet and email usage through demonstrations and lab exercises.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Accounting','','inherit','closed','closed','','3437-revision-v1','','','2015-09-05 20:48:50','2015-09-05 20:48:50','',3437,'http://genewyork.com/3437-revision-v1/',0,'revision','',0),(3440,1,'2015-09-05 20:51:15','2015-09-05 20:51:15',' ','','','publish','closed','closed','','3440','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3197,'http://genewyork.com/?p=3440',6,'nav_menu_item','',0),(3441,1,'2015-09-05 20:51:15','2015-09-05 20:51:15',' ','','','publish','closed','closed','','3441','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3197,'http://genewyork.com/?p=3441',5,'nav_menu_item','',0),(3442,1,'2015-09-05 20:52:47','2015-09-05 20:52:47','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BOOKKEEPING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]This course helps students understand the accounting procedures necessary for tracking business finances.\r\nUsing specialized software, students are instructed how to track debit, credit and total accounts on spreadsheets and databases. In addition, students are shown how to compile statistical, financial, accounting and auditing reports pertaining to cash receipts, expenditures, accounts payable/receivable and profits/losses.\r\n[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Fundamentals of Accounting I</h3>\r\nThis class starts with an overview of mathematical operations accounting concepts and principles (GAAP), common accounting cycle, records, trial balances, financial statements, inventory, and payroll are also studied.\r\n<h3>Fundamentals of Accounting II</h3>\r\nIn this course more in-depth knowledge is acquired in the areas of sales & purchases, A/R & A/P, cash receipts & payments, accruals/deferrals, and depreciation. This class will also cover preparation of income statements and balance sheets.\r\n<h3>QuickBooks & Excel</h3>\r\nThis course will provide an overview of Quickbooks and Excel for business purposes.\r\nBy the end of the course, students will be able to manage business finances including payroll, invoice processing, bank account management, and tax report preparation.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Bookkeeping','','inherit','closed','closed','','3435-revision-v1','','','2015-09-05 20:52:47','2015-09-05 20:52:47','',3435,'http://genewyork.com/3435-revision-v1/',0,'revision','',0),(3443,1,'2015-09-05 20:56:59','2015-09-05 20:56:59','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]The course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Marketing Management','','publish','closed','closed','','marketing-management','','','2015-09-14 23:43:06','2015-09-14 23:43:06','',3197,'http://genewyork.com/?page_id=3443',0,'page','',0),(3444,1,'2015-09-05 20:56:59','2015-09-05 20:56:59','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>MARKETING MANAGEMENT</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"chino\" border_width=\"3\"][vc_column_text]The course is designed to serve as an introduction to the theory and practice of marketing management. The class will have students understand and improve their ability to develop effective marketing strategies and assess market opportunities, as well as design strategy implementation programs.\r\n\r\nIn depth study of contemporary business world, management communication skills, principles of marketing, sales strategy based on Customer-Centric Service drawn from variety of sources services, consumers and business to business industries.[/vc_column_text][vc_empty_space height=\"20px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441485684231{padding-top: 25px !important;padding-right: 25px !important;padding-bottom: 25px !important;padding-left: 25px !important;background-color: #fcfcfc !important;}\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Marketing Management','','inherit','closed','closed','','3443-revision-v1','','','2015-09-05 20:56:59','2015-09-05 20:56:59','',3443,'http://genewyork.com/3443-revision-v1/',0,'revision','',0),(3446,1,'2015-09-05 20:58:23','2015-09-05 20:58:23',' ','','','publish','closed','closed','','3446','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3197,'http://genewyork.com/?p=3446',7,'nav_menu_item','',0),(3448,1,'2015-09-05 21:57:00','2015-09-05 21:57:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ESL</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','publish','closed','closed','','esl','','','2015-09-14 20:53:52','2015-09-14 20:53:52','',3479,'http://genewyork.com/?page_id=3448',0,'page','',0),(3449,1,'2015-09-05 21:57:00','2015-09-05 21:57:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ESL</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3448-revision-v1','','','2015-09-05 21:57:00','2015-09-05 21:57:00','',3448,'http://genewyork.com/3448-revision-v1/',0,'revision','',0),(3450,1,'2015-09-06 03:41:22','2015-09-06 03:41:22','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\n<h1>ESL</h1>\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\n<h3>Comprehensive</h3>\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\n<h3>Elective and skills classes.</h3>\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\n<h3>Tutoring sessions</h3>\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3448-autosave-v1','','','2015-09-06 03:41:22','2015-09-06 03:41:22','',3448,'http://genewyork.com/3448-autosave-v1/',0,'revision','',0),(3452,1,'2015-09-05 22:22:10','2015-09-05 22:22:10','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ESL</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"100px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"100px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BUSINESS ENGLISH</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]The Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3448-revision-v1','','','2015-09-05 22:22:10','2015-09-05 22:22:10','',3448,'http://genewyork.com/3448-revision-v1/',0,'revision','',0),(3453,1,'2015-09-05 22:55:00','2015-09-05 22:55:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][vc_single_image image=\"3146\" img_size=\"medium\" alignment=\"right\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','TOEFL Preparation','','publish','closed','closed','','toefl-preparation','','','2015-09-06 03:42:06','2015-09-06 03:42:06','',3479,'http://genewyork.com/?page_id=3453',0,'page','',0),(3454,1,'2015-09-05 22:25:23','2015-09-05 22:25:23','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_single_image image=\"3146\" img_size=\"medium\" style=\"vc_box_rounded\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:25:23','2015-09-05 22:25:23','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3455,1,'2015-09-05 22:26:37','2015-09-05 22:26:37','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]\r\n<div><img class=\"alignright wp-image-3146 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/08/ets_toefl_logo-300x106.png\" alt=\"ets_toefl_logo\" width=\"300\" height=\"106\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:26:37','2015-09-05 22:26:37','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3456,1,'2015-09-05 22:27:42','2015-09-05 22:27:42','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]\r\n<div><img class=\"wp-image-3146 size-medium alignright\" src=\"http://genewyork.com/wp-content/uploads/2015/08/ets_toefl_logo-300x106.png\" alt=\"ets_toefl_logo\" width=\"300\" height=\"106\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:27:42','2015-09-05 22:27:42','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3457,1,'2015-09-05 22:28:26','2015-09-05 22:28:26','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:28:26','2015-09-05 22:28:26','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3458,1,'2015-09-05 22:29:22','2015-09-05 22:29:22','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:29:22','2015-09-05 22:29:22','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3459,1,'2015-09-05 22:30:46','2015-09-05 22:30:46','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3146\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:30:46','2015-09-05 22:30:46','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3460,1,'2015-09-05 22:32:08','2015-09-05 22:32:08','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3146\" img_size=\"medium\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:32:08','2015-09-05 22:32:08','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3461,1,'2015-09-05 22:32:37','2015-09-05 22:32:37','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_empty_space height=\"50px\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_single_image image=\"3146\" img_size=\"medium\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:32:37','2015-09-05 22:32:37','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3462,1,'2015-09-05 22:32:52','2015-09-05 22:32:52','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3146\" img_size=\"medium\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:32:52','2015-09-05 22:32:52','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3463,1,'2015-09-05 22:40:37','2015-09-05 22:40:37','','toefl-350x250','','inherit','open','closed','','toefl-350x250','','','2015-09-05 22:40:37','2015-09-05 22:40:37','',3453,'http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250.jpg',0,'attachment','image/jpeg',0),(3464,1,'2015-09-05 22:41:11','2015-09-05 22:41:11','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3146\" img_size=\"medium\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3463\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:41:11','2015-09-05 22:41:11','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3465,1,'2015-09-05 22:42:54','2015-09-05 22:42:54','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3146\" img_size=\"medium\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"alignleft wp-image-3463\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250.jpg\" alt=\"toefl-350x250\" width=\"200\" height=\"143\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:42:54','2015-09-05 22:42:54','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3466,1,'2015-09-05 22:47:41','2015-09-05 22:47:41','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3146\" img_size=\"medium\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250.jpg\" alt=\"toefl-350x250\" width=\"200\" height=\"143\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:47:41','2015-09-05 22:47:41','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3467,1,'2015-09-05 22:48:07','2015-09-05 22:48:07','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3146\" img_size=\"medium\"][/vc_column_inner][vc_column_inner width=\"1/2\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:48:07','2015-09-05 22:48:07','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3468,1,'2015-09-05 22:51:52','2015-09-05 22:51:52','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][vc_single_image image=\"3146\" img_size=\"medium\" alignment=\"right\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:51:52','2015-09-05 22:51:52','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3469,1,'2015-09-05 22:52:21','2015-09-05 22:52:21','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][vc_single_image image=\"3146\" img_size=\"medium\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:52:21','2015-09-05 22:52:21','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3470,1,'2015-09-05 22:53:46','2015-09-05 22:53:46','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][vc_single_image image=\"3146\" img_size=\"medium\" alignment=\"right\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:53:46','2015-09-05 22:53:46','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3471,1,'2015-09-05 22:55:00','2015-09-05 22:55:00','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<div><img class=\"tofle-img alignleft wp-image-3463 size-medium\" src=\"http://genewyork.com/wp-content/uploads/2015/09/toefl-350x250-300x214.jpg\" alt=\"toefl-350x250\" width=\"300\" height=\"214\" />GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][vc_single_image image=\"3146\" img_size=\"medium\" alignment=\"right\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','TOEFL Preparation','','inherit','closed','closed','','3453-revision-v1','','','2015-09-05 22:55:00','2015-09-05 22:55:00','',3453,'http://genewyork.com/3453-revision-v1/',0,'revision','',0),(3472,1,'2015-09-05 22:57:31','2015-09-05 22:57:31',' ','','','publish','closed','closed','','3472','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3479,'http://genewyork.com/?p=3472',10,'nav_menu_item','',0),(3474,1,'2015-09-05 22:57:31','2015-09-05 22:57:31',' ','','','publish','closed','closed','','3474','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3479,'http://genewyork.com/?p=3474',9,'nav_menu_item','',0),(3475,1,'2015-09-05 23:01:08','2015-09-05 23:01:08','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BUSINESS ENGLISH</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]The Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Business English','','publish','closed','closed','','business-english','','','2015-09-14 23:43:33','2015-09-14 23:43:33','',3479,'http://genewyork.com/?page_id=3475',0,'page','',0),(3476,1,'2015-09-05 23:01:08','2015-09-05 23:01:08','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BUSINESS ENGLISH</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]The Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Business English','','inherit','closed','closed','','3475-revision-v1','','','2015-09-05 23:01:08','2015-09-05 23:01:08','',3475,'http://genewyork.com/3475-revision-v1/',0,'revision','',0),(3478,1,'2015-09-05 23:01:52','2015-09-05 23:01:52',' ','','','publish','closed','closed','','3478','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3479,'http://genewyork.com/?p=3478',11,'nav_menu_item','',0),(3479,1,'2015-09-05 23:08:51','2015-09-05 23:08:51','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441511148273-b9c4aa69-2239-7\" taxonomies=\"109\"][/vc_column][/vc_row]','Language Program','','publish','closed','closed','','language-program','','','2015-09-06 03:57:47','2015-09-06 03:57:47','',3125,'http://genewyork.com/?page_id=3479',0,'page','',0),(3480,1,'2015-09-05 23:02:58','2015-09-05 23:02:58','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ESL</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"100px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>TOEFL PREPARATION</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]\r\n<div>GENY\'s TOEFL iBT Preparation Program is for advanced English language students and for those who have already taken the TOEFL iBT and wish to improve their scores. Our course is taught only by experienced teachers who have helped many foreign English language students achieve success on the TOEFL iBT. When students complete this program, they will have acquired both a greater understanding of the TOEFL iBT itself and stronger academic skills, which they will need for American colleges and universities. Our program focuses on every area of the TOEFL iBT, especially the speaking and writing sections, where students will learn and practice using our proven test formats and strategies. TOEFL iBT vocabulary is also stressed throughout the course, along with an ample amount of class time dedicated to practicing the other sections on the test. There is a complete TOEFL iBT pre-test and a post-test included in the course along with ten mini tests, so that students can see their progress during the course. We have also included five mini vocabulary tests and a final vocabulary test because we understand how critical TOEFL iBT vocabulary is for our students both on the test and in their future academic studies.</div>\r\n \r\n<div>Aside from our dynamic classroom activities, students also have the opportunity to practice writing TOEFL iBT essays and responding to TOEFL iBT speaking questions throughout the course, all of which are graded by our experienced teachers. In addition, our computer labs include supplemental TOEFL iBT reading and listening exercises that students can utilize during workshop hours. All in all, we are confident that international English language students who apply themselves to our TOEFL iBT program will achieve their goals.</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"100px\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BUSINESS ENGLISH</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]The Business English course is for students who want to learn English for an international, English-speaking workplace. The goal of the program is to introduce students to business language in English.\r\n\r\nYou will learn business-related vocabulary and improve your speaking, listen- ing and writing skills for use in any business. You will be prepared to communicate in English in a cross-cultural professional environment.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3479-revision-v1','','','2015-09-05 23:02:58','2015-09-05 23:02:58','',3479,'http://genewyork.com/3479-revision-v1/',0,'revision','',0),(3481,1,'2015-09-05 23:10:00','2015-09-05 23:10:00',' ','','','publish','closed','closed','','3481','','','2015-09-12 23:19:49','2015-09-12 23:19:49','',3125,'http://genewyork.com/?p=3481',8,'nav_menu_item','',0),(3482,1,'2015-09-05 23:10:34','2015-09-05 23:10:34',' ','','','publish','closed','closed','','3482','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',3125,'http://genewyork.com/?p=3482',8,'nav_menu_item','',0),(3484,1,'2015-09-06 02:41:18','2015-09-06 02:41:18','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441507240724-39d94b3e-588e-6\" taxonomies=\"107\"][/vc_column][/vc_row]','Business Program','','inherit','closed','closed','','3197-revision-v1','','','2015-09-06 02:41:18','2015-09-06 02:41:18','',3197,'http://genewyork.com/3197-revision-v1/',0,'revision','',0),(3489,1,'2015-09-06 03:14:11','2015-09-06 03:14:11','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>ESL</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"custom\" border_width=\"3\" accent_color=\"#f2a633\"][vc_column_text]GENY’s specialized English as a Second Language (ESL) program consists of six levels. Each new student is required to take an English placement test that will determine which level would be most appropriate for him or her. Though our classes emphasize communicative competence, GENY’s ESL courses are taught in a way that encourages competency in all areas: listening, reading, speaking, and writing.\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481995444{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Comprehensive</h3>\r\nGENY’s monthly assessment quizzes allow students to advance based on their individual progress thus allowing students to personalize their education. On average, students spend approximately 3 months in each level, but students are encouraged to learn at their own pace.\r\n<h3>Elective and skills classes.</h3>\r\nFor the morning program, GENY offers a variety of elective classes. In these classes, students can choose an English skill to focus on. Students select which elective class they would like to take every month. For afternoon and evening students, skills classes change every month, allowing students to study these skills (reading & vocabulary, listening & speaking, and grammar & writing) for 1 month each.\r\n<h3>Tutoring sessions</h3>\r\nAfter class students can participate in one of our tutoring sessions. Tutoring sessions provide students with the opportunity to further practice their speaking skills with a native English speaker.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','ESL','','inherit','closed','closed','','3448-revision-v1','','','2015-09-06 03:14:11','2015-09-06 03:14:11','',3448,'http://genewyork.com/3448-revision-v1/',0,'revision','',0),(3490,1,'2015-09-06 03:36:34','2015-09-06 03:36:34','','toefl-feature','','inherit','open','closed','','toefl-feature','','','2015-09-06 03:36:34','2015-09-06 03:36:34','',3453,'http://genewyork.com/wp-content/uploads/2015/09/toefl-feature.jpg',0,'attachment','image/jpeg',0),(3491,1,'2015-09-06 03:48:02','2015-09-06 03:48:02','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441511148273-b9c4aa69-2239-7\" taxonomies=\"109\"][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3479-autosave-v1','','','2015-09-06 03:48:02','2015-09-06 03:48:02','',3479,'http://genewyork.com/3479-autosave-v1/',0,'revision','',0),(3495,1,'2015-09-06 03:57:47','2015-09-06 03:57:47','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441511148273-b9c4aa69-2239-7\" taxonomies=\"109\"][/vc_column][/vc_row]','Language Program','','inherit','closed','closed','','3479-revision-v1','','','2015-09-06 03:57:47','2015-09-06 03:57:47','',3479,'http://genewyork.com/3479-revision-v1/',0,'revision','',0),(3498,1,'2015-09-06 04:02:02','2015-09-06 04:02:02','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"2\" orderby=\"title\" grid_id=\"vc_gid:1441512118413-0256bcaf-edd6-3\" taxonomies=\"110\"][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-09-06 04:02:02','2015-09-06 04:02:02','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3499,1,'2015-09-06 04:04:26','2015-09-06 04:04:26','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"2\" orderby=\"title\" grid_id=\"vc_gid:1441512256529-2a59c92d-cafc-3\" taxonomies=\"110\"][/vc_column][/vc_row]','Allied Health Program','','inherit','closed','closed','','3206-revision-v1','','','2015-09-06 04:04:26','2015-09-06 04:04:26','',3206,'http://genewyork.com/3206-revision-v1/',0,'revision','',0),(3500,1,'2015-09-06 04:23:58','2015-09-06 04:23:58','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"+1 (646)-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][title style=\"style2\" title_text=\"Reach out to us\" icon_color=\"#ff0000\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Feel free to call us on +1 (646)-794-8333 and our representative will help you with all your questions.\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? We are here for you.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Send us a message and we will get back to you promptly.\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-autosave-v1','','','2015-09-06 04:23:58','2015-09-06 04:23:58','',1689,'http://genewyork.com/1689-autosave-v1/',0,'revision','',0),(3501,1,'2015-09-06 04:24:27','2015-09-06 04:24:27','[vc_row css=\".vc_custom_1440607793090{padding-top: 10px !important;padding-right: 150px !important;padding-bottom: 10px !important;padding-left: 150px !important;}\"][vc_column][vc_gmaps link=\"#E-8_JTNDaWZyYW1lJTIwc3JjJTNEJTIyaHR0cHMlM0ElMkYlMkZ3d3cuZ29vZ2xlLmNvbSUyRm1hcHMlMkZlbWJlZCUzRnBiJTNEJTIxMW0xOCUyMTFtMTIlMjExbTMlMjExZDMwMjIuMzkyMjQxMzY0MTglMjEyZC03My45OTMwMTgzOTk5OTk5NSUyMTNkNDAuNzUzMzk2ODk5OTk5OTg0JTIxMm0zJTIxMWYwJTIxMmYwJTIxM2YwJTIxM20yJTIxMWkxMDI0JTIxMmk3NjglMjE0ZjEzLjElMjEzbTMlMjExbTIlMjExczB4ODljMjU5YWRiY2M4MmE4NyUyNTNBMHhjNWQ3NDlhMjMwZmEwZmJmJTIxMnM1MTklMkI4dGglMkJBdmUlMjUyQyUyQk5ldyUyQllvcmslMjUyQyUyQk5ZJTJCMTAwMTglMjE1ZTAlMjEzbTIlMjExc2VuJTIxMnN1cyUyMTR2MTQ0MDYyNDA5NzAzMCUyMiUyMHdpZHRoJTNEJTIyNjAwJTIyJTIwaGVpZ2h0JTNEJTIyNDUwJTIyJTIwZnJhbWVib3JkZXIlM0QlMjIwJTIyJTIwc3R5bGUlM0QlMjJib3JkZXIlM0EwJTIyJTIwYWxsb3dmdWxsc2NyZWVuJTNFJTNDJTJGaWZyYW1lJTNF\" size=\"450px\" el_class=\"tz-contact-us-gmap\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][contact_info phone=\"+1 (646)-794-8333\" email=\"info@genewyork.com\" address=\"519 8th avenue 2nd floor, New York, NY 10018 \" background_icon_top=\"#e5a82e\" icon=\"\" icon_color=\"#ffffff\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1440873721927{margin-top: 30px !important;margin-bottom: 30px !important;}\"][title style=\"style2\" title_text=\"Reach out to us\" icon_color=\"#ff0000\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Feel free to call us on +1 (646)-794-8333 and our representative will help you with all your questions.\"][vc_single_image image=\"3229\" img_size=\"full\" alignment=\"center\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column][title style=\"style2\" title_text=\"Have a question? We are here for you.\" icon=\"fa fa-question\" icon_color=\"#cccccc\" background_color=\"\" text_color=\"#444444\" content_contact_us=\"Send us a message and we will get back to you promptly.\"][contact-form-7 id=\"1701\"][/vc_column][/vc_row]','Contact Us','','inherit','closed','closed','','1689-revision-v1','','','2015-09-06 04:24:27','2015-09-06 04:24:27','',1689,'http://genewyork.com/1689-revision-v1/',0,'revision','',0),(3502,1,'2015-09-15 02:22:12','2015-09-15 02:22:12','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1442282104630{margin-bottom: 90px !important;}\"][title style=\"style3\" title_text=\"FIND COURSES\" icon_color=\"\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3684,3689,3682\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442281601138{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"ESL\" link=\"http://www.genewyork.com/programs/language-program/esl/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Toefl Prep\" link=\"http://www.genewyork.com/programs/language-program/toefl-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3690,3686,3685,3683,3680\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283230188{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Graphic Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/graphic-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Web Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/web-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Fashion Design\" link=\"http://www.genewyork.com/multimedia-design-program/fashion-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Color Theory\" link=\"http://www.genewyork.com/multimedia-design-program/color-theory/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Basic Drawing\" link=\"http://www.genewyork.com/multimedia-design-program/basic-drawing/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_gallery interval=\"5\" images=\"3681,3678,3687\" img_size=\"full\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442283170672{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Bookkeeping\" link=\"http://www.genewyork.com/programs/business-program/bookkeeping/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Accounting\" link=\"http://www.genewyork.com/programs/business-program/accounting/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Marketing Management\" link=\"http://www.genewyork.com/programs/business-program/marketing-management\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_gallery interval=\"5\" images=\"3688,3679\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283248087{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"NCLEX-RN Prep\" link=\"http://www.genewyork.com/programs/allied-health-program/nclex-rn-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Allied Health Training\" link=\"http://www.genewyork.com/programs/allied-health-program/allied-health-training/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3677\"][vc_column][our_introduce][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-autosave-v1','','','2015-09-15 02:22:12','2015-09-15 02:22:12','',536,'http://genewyork.com/536-autosave-v1/',0,'revision','',0),(3503,1,'2015-09-06 05:02:30','2015-09-06 05:02:30','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1441515531510{margin: 100px !important;background-color: #f6f6f6 !important;}\" background_parallax=\"none\"][vc_column width=\"1/2\" css=\".vc_custom_1441515011985{padding-top: 30px !important;padding-bottom: 30px !important;padding-left: 50px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column][vc_column width=\"1/2\" css=\".vc_custom_1441515675379{margin-top: 100px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-5 vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][vc_row_inner css=\".vc_custom_1433507170744{padding-top: 15px !important;padding-bottom: 38px !important;}\"][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style2\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Fine Arts\" tab_id=\"37a61be3-2e56-5\"][vc_gallery interval=\"0\" images=\"581,1901,1893,1892,1895\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Comunication Studies\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Bussiness\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861532705{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Humanities\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Languages / Global \" tab_id=\"1429264861465-4-6\"][vc_single_image image=\"1897\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861570874{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Sciences & Math\" tab_id=\"1429264863160-5-4\"][vc_single_image image=\"1896\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861582208{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Professional Programs \" tab_id=\"1429264864846-6-4\"][vc_single_image image=\"1895\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861597973{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Education\" tab_id=\"1429264866448-7-9\"][vc_single_image image=\"1893\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861611412{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia / Design\" tab_id=\"1429264868196-8-9\"][vc_single_image image=\"1891\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861626112{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Economics\" tab_id=\"1429264869867-9-2\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861638947{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-06 05:02:30','2015-09-06 05:02:30','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3507,1,'2015-09-08 21:31:13','2015-09-08 21:31:13','','GENY-basic-drawing-banner','','inherit','open','closed','','geny-basic-drawing-banner','','','2015-09-08 21:31:13','2015-09-08 21:31:13','',5,'http://genewyork.com/wp-content/uploads/2015/08/GENY-basic-drawing-banner.jpg',0,'attachment','image/jpeg',0),(3508,1,'2015-09-09 04:17:20','2015-09-09 04:17:20','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"20\" element_width=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441772236944-02964ea6-300a-3\" taxonomies=\"108\"][/vc_column][/vc_row]','Programs','','inherit','closed','closed','','3125-autosave-v1','','','2015-09-09 04:17:20','2015-09-09 04:17:20','',3125,'http://genewyork.com/3125-autosave-v1/',0,'revision','',0),(3509,1,'2015-09-09 04:13:51','2015-09-09 04:13:51','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"20\" element_width=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441772015495-f80bdab7-48df-9\" taxonomies=\"8\"][/vc_column][/vc_row]','Programs','','inherit','closed','closed','','3125-revision-v1','','','2015-09-09 04:13:51','2015-09-09 04:13:51','',3125,'http://genewyork.com/3125-revision-v1/',0,'revision','',0),(3510,1,'2015-09-09 04:18:10','2015-09-09 04:18:10','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"20\" element_width=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441772236944-02964ea6-300a-3\" taxonomies=\"108\"][/vc_column][/vc_row]','Programs','','inherit','closed','closed','','3125-revision-v1','','','2015-09-09 04:18:10','2015-09-09 04:18:10','',3125,'http://genewyork.com/3125-revision-v1/',0,'revision','',0),(3511,1,'2015-09-09 21:24:12','2015-09-09 21:24:12','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row style_width=\"boxed\" css=\".vc_custom_1441515531510{margin: 100px !important;background-color: #f6f6f6 !important;}\" background_parallax=\"none\"][vc_column css=\".vc_custom_1441515011985{padding-top: 30px !important;padding-bottom: 30px !important;padding-left: 50px !important;background-color: #f6f6f6 !important;}\" offset=\"vc_col-lg-7 vc_col-xs-12\"][vc_column_text]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 21:24:12','2015-09-09 21:24:12','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3512,1,'2015-09-09 21:53:30','2015-09-09 21:53:30','','geny-school-exterior','','inherit','open','closed','','geny-school-exterior','','','2015-09-09 21:53:30','2015-09-09 21:53:30','',536,'http://genewyork.com/wp-content/uploads/2015/04/geny-school-exterior.jpg',0,'attachment','image/jpeg',0),(3513,1,'2015-09-09 22:01:45','2015-09-09 22:01:45','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836072217{margin: 100px !important;background-color: #fcfcfc !important;}\"][vc_column width=\"1/2\"][vc_column_text]<img class=\"wp-image-3187 aligncenter\" src=\"http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray-300x267.png\" alt=\"geny school\" width=\"50\" height=\"44\" />\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column][vc_column width=\"1/2\"][vc_single_image image=\"3512\" img_size=\"medium\" alignment=\"center\"][/vc_column][/vc_row][vc_row][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 22:01:45','2015-09-09 22:01:45','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3514,1,'2015-09-09 22:18:28','2015-09-09 22:18:28','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836269515{margin-top: 100px !important;margin-right: 100px !important;margin-bottom: 100px !important;margin-left: 100px !important;background-color: #fcfcfc !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 22:18:28','2015-09-09 22:18:28','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3515,1,'2015-09-09 23:24:51','2015-09-09 23:24:51','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-sm-offset-0\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 23:24:51','2015-09-09 23:24:51','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3516,1,'2015-09-09 23:31:33','2015-09-09 23:31:33','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-sm-offset-0\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 23:31:33','2015-09-09 23:31:33','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3517,1,'2015-09-09 23:32:41','0000-00-00 00:00:00','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}\"][vc_column_inner width=\"1/2\"][vc_column_text]\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-sm-offset-0\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','draft','open','open','','','','','2015-09-09 23:32:41','0000-00-00 00:00:00','',0,'http://genewyork.com/?page_id=3517',0,'page','',0),(3520,1,'2015-09-09 23:45:02','2015-09-09 23:45:02','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"100px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column][vc_row_inner css=\".vc_custom_1441836576222{padding-top: 50px !important;padding-right: 30px !important;padding-bottom: 50px !important;padding-left: 30px !important;}\"][vc_column_inner width=\"1/2\" offset=\"vc_col-sm-offset-3\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-sm-offset-3\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 23:45:02','2015-09-09 23:45:02','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3521,1,'2015-09-09 23:56:54','2015-09-09 23:56:54','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441842789408{padding: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 23:56:54','2015-09-09 23:56:54','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3522,1,'2015-09-09 23:58:32','2015-09-09 23:58:32','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843107398{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-09 23:58:32','2015-09-09 23:58:32','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3523,1,'2015-09-10 00:02:19','2015-09-10 00:02:19','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441840488816{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843107398{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-10 00:02:19','2015-09-10 00:02:19','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3524,1,'2015-09-10 00:13:20','2015-09-10 00:13:20','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441843939882{background-color: #fcfcfc !important;}\" el_class=\"geny-responsive-box\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_column_text]\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\n\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\n\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\n\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row background_parallax=\"none\"][vc_column][title title_text=\"LATEST ARTICLES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#f6f6f6\" text_color=\"#444444\"][latest_post latest_post_option_mansory=\"yes\" category_post=\"2\" tz_height_image=\"384px\" item_desktop=\"5\" item_desktop_small=\"2\" item_tablet=\"1\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\n\nShort description about Business Program.\n\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\n\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\n\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.\n\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-10 00:13:20','2015-09-10 00:13:20','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3525,1,'2015-09-10 00:25:33','2015-09-10 00:25:33','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"50px\"][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" icon_color=\"\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_column_text]\r\n<h2>GENY PROVIDES A QUALITY EDUCATION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row][vc_column][vc_column_text el_class=\"tz-introduce-content\" css=\".vc_custom_1435893236002{padding-top: 60px !important;padding-bottom: 60px !important;background-color: #f6f6f6 !important;}\"]\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\"><img class=\"alignnone size-full wp-image-477\" src=\"http://genewyork.com/wp-content/uploads/2015/04/number-one-logo.png\" alt=\"number-one-logo\" width=\"40\" height=\"52\" /></a></p>\r\n\r\n<h4 style=\"text-align: center;\">NUMBER ONE ENGLAND UNIVERSITY</h4>\r\n<p style=\"text-align: center;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis laoreet. Morbi non dignissim tellus, vitae\r\nblandit urna Lorem ipsum dolor sit amet, consectetur adipiscing elit morbi non dignissim.</p>\r\n<p style=\"text-align: center;\"><a href=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\"><img class=\"alignnone size-full wp-image-1919\" src=\"http://genewyork.com/wp-content/uploads/2015/04/check1.png\" alt=\"check\" width=\"8\" height=\"8\" /></a>[button type_choose_style=\"Style Button 1\" background=\"rgb(255, 255, 255)\" icon=\"fa fa-arrows-alt\" title=\"More Details\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-10 00:25:33','2015-09-10 00:25:33','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3526,1,'2015-09-10 00:31:18','2015-09-10 00:31:18','','geny_logo_gray_thumb','','inherit','open','closed','','geny_logo_gray_thumb','','','2015-09-10 00:31:18','2015-09-10 00:31:18','',536,'http://genewyork.com/wp-content/uploads/2015/04/geny_logo_gray_thumb.png',0,'attachment','image/png',0),(3535,1,'2015-09-10 01:21:44','2015-09-10 01:21:44','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3531,3534,3530,3529,3532,3527,3533,3528\" img_size=\"600x400\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_single_image image=\"582\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"597\"][vc_column][our_introduce][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" customer_image=\"603\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-10 01:21:44','2015-09-10 01:21:44','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3537,1,'2015-09-10 23:35:04','2015-09-10 23:35:04','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3583\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','publish','closed','closed','','graphic-design','','','2015-09-14 23:44:54','2015-09-14 23:44:54','',3549,'http://genewyork.com/?page_id=3537',0,'page','',0),(3538,1,'2015-09-10 23:22:08','2015-09-10 23:22:08','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>ESL</h3>\r\nFor international students, our comprehensive ESL program allows nursing students to improve English language skills in the areas of reading, writing, listening, and speaking.\r\n<h3>NCLEX-RN Preparation</h3>\r\nDesigned to prepare nurses for the NCLEX exam with a comprehensive review of medical procedures and vocabulary.\r\n<h3>IELTS Preparation</h3>\r\nDesigned to improve international students’ scores on the IELTS exam through a combination of skill-building and test-taking strategies.\r\n<h3>Medical Terminology</h3>\r\nFor students to learn or review the vocabulary commonly used in the medical field.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-revision-v1','','','2015-09-10 23:22:08','2015-09-10 23:22:08','',3537,'http://genewyork.com/3537-revision-v1/',0,'revision','',0),(3539,1,'2015-09-10 23:35:04','2015-09-10 23:35:04','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Photoshop</h3>\r\nEnables students to learn and practice how to use Photoshop tools to create and edit digital images\r\n<h3>Illustrator</h3>\r\nTeaches students to delineate and design on electronic mediums using Adobe Illustrator tools.\r\n<h3>InDesign</h3>\r\nStudents will learn to design engaging page layouts for print or digital distribution, with built-in creative tools and precise control over typography.\r\n<h3>After Effects</h3>\r\nIn this course, students will create motion graphics and visual effects such as animation, alteration, and media composition in 2D and 3D.\r\n<h3>Medical Law&Regulation</h3>\r\nA study on medical ethics and law to build professionalism as dictated by U.S. standards.\r\n<h3>Foreign Accent Reduction</h3>\r\nA course to reduce international students’ accents through re- view of the stress, in tonation and rhythm of the English language.\r\n<h3>CGFNS</h3>\r\nIn order to obtain a nursing license, foreign RNs must have their edu- cation and credentials verified and evaluated by the Commission on Graduates of Foreign Nursing Schools (CGFNS). GENY agents will assist students in completing the necessary documents to apply for CGFNS evaluation.\r\n<h3>Job Assistance</h3>\r\nFor qualified students, we assist in finding volunteer work and job placement.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-revision-v1','','','2015-09-10 23:35:04','2015-09-10 23:35:04','',3537,'http://genewyork.com/3537-revision-v1/',0,'revision','',0),(3540,1,'2015-09-12 22:15:48','2015-09-12 22:15:48','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3583\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-autosave-v1','','','2015-09-12 22:15:48','2015-09-12 22:15:48','',3537,'http://genewyork.com/3537-autosave-v1/',0,'revision','',0),(3541,1,'2015-09-10 23:38:11','2015-09-10 23:38:11','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]\r\n<h3>Photoshop</h3>\r\nEnables students to learn and practice how to use Photoshop tools to create and edit digital images\r\n<h3>Illustrator</h3>\r\nTeaches students to delineate and design on electronic mediums using Adobe Illustrator tools.\r\n<h3>InDesign</h3>\r\nStudents will learn to design engaging page layouts for print or digital distribution, with built-in creative tools and precise control over typography.\r\n<h3>After Effects</h3>\r\nIn this course, students will create motion graphics and visual effects such as animation, alteration, and media composition in 2D and 3D.[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-revision-v1','','','2015-09-10 23:38:11','2015-09-10 23:38:11','',3537,'http://genewyork.com/3537-revision-v1/',0,'revision','',0),(3542,1,'2015-09-10 23:41:12','2015-09-10 23:41:12','','after-effects-icon','','inherit','open','closed','','after-effects-icon','','','2015-09-10 23:41:12','2015-09-10 23:41:12','',3537,'http://genewyork.com/wp-content/uploads/2015/09/after-effects-icon.png',0,'attachment','image/png',0),(3543,1,'2015-09-10 23:41:13','2015-09-10 23:41:13','','dreamweaver-icon','','inherit','open','closed','','dreamweaver-icon','','','2015-09-10 23:41:13','2015-09-10 23:41:13','',3537,'http://genewyork.com/wp-content/uploads/2015/09/dreamweaver-icon.png',0,'attachment','image/png',0),(3544,1,'2015-09-10 23:41:15','2015-09-10 23:41:15','','flash-icon','','inherit','open','closed','','flash-icon','','','2015-09-10 23:41:15','2015-09-10 23:41:15','',3537,'http://genewyork.com/wp-content/uploads/2015/09/flash-icon.png',0,'attachment','image/png',0),(3545,1,'2015-09-10 23:41:17','2015-09-10 23:41:17','','illustator-icon','','inherit','open','closed','','illustator-icon','','','2015-09-10 23:41:17','2015-09-10 23:41:17','',3537,'http://genewyork.com/wp-content/uploads/2015/09/illustator-icon.png',0,'attachment','image/png',0),(3546,1,'2015-09-10 23:41:18','2015-09-10 23:41:18','','indesign-icon','','inherit','open','closed','','indesign-icon','','','2015-09-10 23:41:18','2015-09-10 23:41:18','',3537,'http://genewyork.com/wp-content/uploads/2015/09/indesign-icon.png',0,'attachment','image/png',0),(3547,1,'2015-09-10 23:41:20','2015-09-10 23:41:20','','photoshop-icon','','inherit','open','closed','','photoshop-icon','','','2015-09-10 23:41:20','2015-09-10 23:41:20','',3537,'http://genewyork.com/wp-content/uploads/2015/09/photoshop-icon.png',0,'attachment','image/png',0),(3548,1,'2015-09-10 23:57:44','2015-09-10 23:57:44','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner width=\"1/4\"][vc_single_image][/vc_column_inner][vc_column_inner width=\"3/4\"][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner css=\".vc_custom_1441481903203{padding: 25px !important;background-color: #fcfcfc !important;}\"][vc_column_text]<a href=\"http://genewyork.com/wp-content/uploads/2015/09/photoshop-icon.png\"><img class=\"size-full wp-image-3547 alignleft\" src=\"http://genewyork.com/wp-content/uploads/2015/09/photoshop-icon.png\" alt=\"photoshop-icon\" width=\"100\" height=\"98\" /></a>\r\n<div class=\"adobe\">\r\n<h3>Photoshop</h3>\r\nEnables students to learn and practice how to use Photoshop tools to create and edit digital images\r\n\r\n</div>\r\n<a href=\"http://genewyork.com/wp-content/uploads/2015/09/illustator-icon.png\"><img class=\"size-full wp-image-3545 alignleft\" src=\"http://genewyork.com/wp-content/uploads/2015/09/illustator-icon.png\" alt=\"illustator-icon\" width=\"100\" height=\"97\" /></a>\r\n<div class=\"adobe\">\r\n<h3>Illustrator</h3>\r\nTeaches students to delineate and design on electronic mediums using Adobe Illustrator tools.\r\n\r\n</div>\r\n<a href=\"http://genewyork.com/wp-content/uploads/2015/09/indesign-icon.png\"><img class=\"size-full wp-image-3546 alignleft\" src=\"http://genewyork.com/wp-content/uploads/2015/09/indesign-icon.png\" alt=\"indesign-icon\" width=\"100\" height=\"98\" /></a>\r\n<div class=\"adobe\">\r\n<h3>InDesign</h3>\r\nStudents will learn to design engaging page layouts for print or digital distribution, with built-in creative tools and precise control over typography.\r\n\r\n</div>\r\n<a href=\"http://genewyork.com/wp-content/uploads/2015/09/after-effects-icon.png\"><img class=\"size-full wp-image-3542 alignleft\" src=\"http://genewyork.com/wp-content/uploads/2015/09/after-effects-icon.png\" alt=\"after-effects-icon\" width=\"100\" height=\"98\" /></a>\r\n<div class=\"adobe\">\r\n<h3>After Effects</h3>\r\nIn this course, students will create motion graphics and visual effects such as animation, alteration, and media composition in 2D and 3D.\r\n\r\n</div>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-revision-v1','','','2015-09-10 23:57:44','2015-09-10 23:57:44','',3537,'http://genewyork.com/3537-revision-v1/',0,'revision','',0),(3549,1,'2015-09-11 18:18:01','2015-09-11 18:18:01','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"4\" orderby=\"title\" grid_id=\"vc_gid:1442100429172-d23a5c5b-caf0-2\" taxonomies=\"111\"][/vc_column][/vc_row]','Multimedia Design Program','','publish','closed','closed','','multimedia-design-program','','','2015-09-12 23:27:51','2015-09-12 23:27:51','',3125,'http://genewyork.com/?page_id=3549',0,'page','',0),(3550,1,'2015-09-11 18:18:01','2015-09-11 18:18:01','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"4\" element_width=\"3\" orderby=\"title\" grid_id=\"vc_gid:1441995466360-94e32740-8676-3\"][/vc_column][/vc_row]','Multimedia Design Program','','inherit','closed','closed','','3549-revision-v1','','','2015-09-11 18:18:01','2015-09-11 18:18:01','',3549,'http://genewyork.com/3549-revision-v1/',0,'revision','',0),(3551,1,'2015-09-12 02:39:40','2015-09-12 02:39:40',' ','','','publish','closed','closed','','3551','','','2015-09-12 18:16:06','2015-09-12 18:16:06','',3125,'http://genewyork.com/?p=3551',9,'nav_menu_item','',0),(3552,1,'2015-09-12 02:38:49','0000-00-00 00:00:00',' ','','','draft','closed','closed','','','','','2015-09-12 02:38:49','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3552',1,'nav_menu_item','',0),(3570,1,'2015-09-12 18:28:06','2015-09-12 18:28:06','','Accounting, budget, price.','Accounting, budget, price.','inherit','open','closed','','accounting-budget-price','','','2015-09-12 18:28:06','2015-09-12 18:28:06','',3537,'http://genewyork.com/wp-content/uploads/2015/09/accounting-feature1.jpg',0,'attachment','image/jpeg',0),(3571,1,'2015-09-12 18:28:07','2015-09-12 18:28:07','','Senior Male Patient Being Pushed In Wheelchair By Nurse','Senior Male Patient Being Pushed In Wheelchair By Nurse','inherit','open','closed','','senior-male-patient-being-pushed-in-wheelchair-by-nurse-3','','','2015-09-12 18:28:07','2015-09-12 18:28:07','',3537,'http://genewyork.com/wp-content/uploads/2015/09/allied-health-training-feature1.jpg',0,'attachment','image/jpeg',0),(3572,1,'2015-09-12 18:28:09','2015-09-12 18:28:09','','basic-drawing-feature','','inherit','open','closed','','basic-drawing-feature','','','2015-09-12 18:28:09','2015-09-12 18:28:09','',3537,'http://genewyork.com/wp-content/uploads/2015/09/basic-drawing-feature.jpg',0,'attachment','image/jpeg',0),(3573,1,'2015-09-12 18:28:11','2015-09-12 18:28:11','','contabilidad','','inherit','open','closed','','contabilidad','','','2015-09-12 18:28:11','2015-09-12 18:28:11','',3537,'http://genewyork.com/wp-content/uploads/2015/09/bookkeeping-feature1.jpg',0,'attachment','image/jpeg',0),(3574,1,'2015-09-12 18:28:12','2015-09-12 18:28:12','','Business group at the office','Business group in a meeting at the office','inherit','open','closed','','business-group-at-the-office-2','','','2015-09-12 18:28:12','2015-09-12 18:28:12','',3537,'http://genewyork.com/wp-content/uploads/2015/09/business-english-feature1.jpg',0,'attachment','image/jpeg',0),(3575,1,'2015-09-12 18:28:14','2015-09-12 18:28:14','','Graphic designer drawing on colour chart','559207','inherit','open','closed','','graphic-designer-drawing-on-colour-chart','','','2015-09-12 18:28:14','2015-09-12 18:28:14','',3537,'http://genewyork.com/wp-content/uploads/2015/09/color-theory-feature.jpg',0,'attachment','image/jpeg',0),(3576,1,'2015-09-12 18:28:15','2015-09-12 18:28:15','','text learn english in a signboard with the Big Ben in the background, with a filter effect','the hand of a man holding a signboard with the text learn english written in it with a red telephone booth and the Big Ben in the background, with a filter effect','inherit','open','closed','','text-learn-english-in-a-signboard-with-the-big-ben-in-the-background-with-a-filter-effect','','','2015-09-12 18:28:15','2015-09-12 18:28:15','',3537,'http://genewyork.com/wp-content/uploads/2015/09/esl-feature1.jpg',0,'attachment','image/jpeg',0),(3577,1,'2015-09-12 18:28:17','2015-09-12 18:28:17','','Fashion designer','Fashion designer working in studio. Close up design.','inherit','open','closed','','fashion-designer','','','2015-09-12 18:28:17','2015-09-12 18:28:17','',3537,'http://genewyork.com/wp-content/uploads/2015/09/fashion-design-feature.jpg',0,'attachment','image/jpeg',0),(3578,1,'2015-09-12 18:28:19','2015-09-12 18:28:19','','Design, graphic, designer.','Design, graphic, designer.','inherit','open','closed','','design-graphic-designer','','','2015-09-12 18:28:19','2015-09-12 18:28:19','',3537,'http://genewyork.com/wp-content/uploads/2015/09/graphic-design-feature.jpg',0,'attachment','image/jpeg',0),(3579,1,'2015-09-12 18:28:20','2015-09-12 18:28:20','','marketing-management-feature','','inherit','open','closed','','marketing-management-feature-2','','','2015-09-12 18:28:20','2015-09-12 18:28:20','',3537,'http://genewyork.com/wp-content/uploads/2015/09/marketing-management-feature1.jpg',0,'attachment','image/jpeg',0),(3580,1,'2015-09-12 18:28:22','2015-09-12 18:28:22','','Nurse, Student, Education.','Nurse, Student, Education.','inherit','open','closed','','nurse-student-education','','','2015-09-12 18:28:22','2015-09-12 18:28:22','',3537,'http://genewyork.com/wp-content/uploads/2015/09/nclex-rn-prep-feature1.jpg',0,'attachment','image/jpeg',0),(3581,1,'2015-09-12 18:28:23','2015-09-12 18:28:23','','Web Design Media Content Light Bulb Inspiration Concept','Web Design Media Content Light Bulb Inspiration Concept','inherit','open','closed','','web-design-media-content-light-bulb-inspiration-concept','','','2015-09-12 18:28:23','2015-09-12 18:28:23','',3537,'http://genewyork.com/wp-content/uploads/2015/09/web-design-feature.jpg',0,'attachment','image/jpeg',0),(3582,1,'2015-09-12 22:14:45','2015-09-12 22:14:45','','fashion-design-diagram','','inherit','open','closed','','fashion-design-diagram','','','2015-09-12 22:14:45','2015-09-12 22:14:45','',3537,'http://genewyork.com/wp-content/uploads/2015/09/fashion-design-diagram.jpg',0,'attachment','image/jpeg',0),(3583,1,'2015-09-12 22:14:47','2015-09-12 22:14:47','','graphic-design-diagram','','inherit','open','closed','','graphic-design-diagram','','','2015-09-12 22:14:47','2015-09-12 22:14:47','',3537,'http://genewyork.com/wp-content/uploads/2015/09/graphic-design-diagram.jpg',0,'attachment','image/jpeg',0),(3584,1,'2015-09-12 22:14:49','2015-09-12 22:14:49','','web-design-diagram','','inherit','open','closed','','web-design-diagram','','','2015-09-12 22:14:49','2015-09-12 22:14:49','',3537,'http://genewyork.com/wp-content/uploads/2015/09/web-design-diagram.jpg',0,'attachment','image/jpeg',0),(3585,1,'2015-09-12 22:16:49','2015-09-12 22:16:49','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>GRAPHIC DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\n\r\nIn this program, students are taught to use tools to design print and marketing material, such as posters, flyers, and brochures. With the use of the most in-demand software in the market, the student will learn to produce and edit content for publications such as maga- zines and newspapers. Also included in the program is 2D animation, which will radically change the student’s designs and perspectives.\r\n\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3583\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Graphic Design','','inherit','closed','closed','','3537-revision-v1','','','2015-09-12 22:16:49','2015-09-12 22:16:49','',3537,'http://genewyork.com/3537-revision-v1/',0,'revision','',0),(3586,1,'2015-09-12 22:19:56','2015-09-12 22:19:56','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>WEB DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]This program offers a series of introductory courses that teach the basic skills needed to create a website with an emphasis on planning, maintenance, and accessibility when creating functional websites. The program consists of four required courses: Adobe Photoshop, Adobe Illustrator, Adobe Dreamweaver, and Adobe Flash. Adobe Indesign and Adobe AfterEffects are optional courses.\r\n\r\n* Internship Available - Cohort Group Only[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3584\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Web Design','','publish','closed','closed','','web-design','','','2015-09-12 22:23:27','2015-09-12 22:23:27','',3549,'http://genewyork.com/?page_id=3586',0,'page','',0),(3587,1,'2015-09-12 22:18:52','2015-09-12 22:18:52','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>WEB DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]This program offers a series of introductory courses that teach the basic skills needed to create a website with an emphasis on planning, maintenance, and accessibility when creating functional websites. The program consists of four required courses: Adobe Photoshop, Adobe Illustrator, Adobe Dreamweaver, and Adobe Flash. Adobe Indesign and Adobe AfterEffects are optional courses.\r\n\r\n* Internship Available - Cohort Group Only[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3584\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Web Design','','inherit','closed','closed','','3586-revision-v1','','','2015-09-12 22:18:52','2015-09-12 22:18:52','',3586,'http://genewyork.com/3586-revision-v1/',0,'revision','',0),(3588,1,'2015-09-12 22:21:37','2015-09-12 22:21:37','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>FASHION DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\nGENY’s Digital Fashion Design Program trains students in the newest techniques available in digital design through software training such as Photoshop, Illustrator, and CAD. This program is specifically designed to increase fluency in English through integration of design and ESL courses. Students will have the opportunity to work alongside native English speakers while practicing profession-specific skills.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3582\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Fashion Design','','publish','closed','closed','','fashion-design','','','2015-09-12 22:22:18','2015-09-12 22:22:18','',3549,'http://genewyork.com/?page_id=3588',0,'page','',0),(3589,1,'2015-09-12 22:21:37','2015-09-12 22:21:37','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>FASHION DESIGN</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]\r\nGENY’s Digital Fashion Design Program trains students in the newest techniques available in digital design through software training such as Photoshop, Illustrator, and CAD. This program is specifically designed to increase fluency in English through integration of design and ESL courses. Students will have the opportunity to work alongside native English speakers while practicing profession-specific skills.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][vc_row_inner][vc_column_inner][vc_single_image image=\"3582\" img_size=\"full\" alignment=\"center\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row]','Fashion Design','','inherit','closed','closed','','3588-revision-v1','','','2015-09-12 22:21:37','2015-09-12 22:21:37','',3588,'http://genewyork.com/3588-revision-v1/',0,'revision','',0),(3590,1,'2015-09-12 23:10:36','2015-09-12 23:10:36',' ','','','publish','closed','closed','','3590','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3549,'http://genewyork.com/?p=3590',15,'nav_menu_item','',0),(3591,1,'2015-09-12 23:10:36','2015-09-12 23:10:36',' ','','','publish','closed','closed','','3591','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3549,'http://genewyork.com/?p=3591',14,'nav_menu_item','',0),(3592,1,'2015-09-12 23:10:36','2015-09-12 23:10:36',' ','','','publish','closed','closed','','3592','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3549,'http://genewyork.com/?p=3592',13,'nav_menu_item','',0),(3593,1,'2015-09-12 23:10:36','2015-09-12 23:10:36',' ','','','publish','closed','closed','','3593','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3125,'http://genewyork.com/?p=3593',12,'nav_menu_item','',0),(3594,1,'2015-09-12 23:14:21','2015-09-12 23:14:21','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BASIC DRAWING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]In this course students will learn the fundamentals of drawing from life. Students will start with drawing still lifes and gradually work towards a trip to the MET to draw Greek statues, and then finally life drawing with a live model.\r\nStudents will learn techniques in pencil, marker, charcoal, and ink wash and will be required to keep a sketchbook of studies. Emphasis will be on students learning basic techniques and then applying those techniques to making finished portfolio quality drawings.\r\n\r\n*Field trips will include : The MET and Galleries in NYC[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Basic Drawing','','publish','closed','closed','','basic-drawing','','','2015-09-12 23:14:21','2015-09-12 23:14:21','',3549,'http://genewyork.com/?page_id=3594',0,'page','',0),(3595,1,'2015-09-12 23:14:21','2015-09-12 23:14:21','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>BASIC DRAWING</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]In this course students will learn the fundamentals of drawing from life. Students will start with drawing still lifes and gradually work towards a trip to the MET to draw Greek statues, and then finally life drawing with a live model.\r\nStudents will learn techniques in pencil, marker, charcoal, and ink wash and will be required to keep a sketchbook of studies. Emphasis will be on students learning basic techniques and then applying those techniques to making finished portfolio quality drawings.\r\n\r\n*Field trips will include : The MET and Galleries in NYC[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Basic Drawing','','inherit','closed','closed','','3594-revision-v1','','','2015-09-12 23:14:21','2015-09-12 23:14:21','',3594,'http://genewyork.com/3594-revision-v1/',0,'revision','',0),(3596,1,'2015-09-12 23:16:34','2015-09-12 23:16:34','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>COLOR THEORY</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]This course prepares students understanding of topics include the relativity of color, color “deception,” intervals and transformation, color systems, and color boundaries.\r\nStudents analyze the cultural, social and psychological implications of color in everyday life. Our perceptions of color and our understanding of it through particular brain processes are addressed through physics and perceptual exercises.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Color Theory','','publish','closed','closed','','color-theory','','','2015-09-12 23:16:34','2015-09-12 23:16:34','',3549,'http://genewyork.com/?page_id=3596',0,'page','',0),(3597,1,'2015-09-12 23:16:34','2015-09-12 23:16:34','[vc_row][vc_column width=\"1/4\"][vc_wp_custommenu nav_menu=\"106\" title=\"Programs\"][/vc_column][vc_column width=\"3/4\"][vc_row_inner][vc_column_inner][vc_column_text]\r\n<h1>COLOR THEORY</h1>\r\n[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_row_inner][vc_column_inner][vc_separator color=\"pink\" border_width=\"3\"][vc_column_text]This course prepares students understanding of topics include the relativity of color, color “deception,” intervals and transformation, color systems, and color boundaries.\r\nStudents analyze the cultural, social and psychological implications of color in everyday life. Our perceptions of color and our understanding of it through particular brain processes are addressed through physics and perceptual exercises.[/vc_column_text][/vc_column_inner][/vc_row_inner][vc_empty_space height=\"50px\"][/vc_column][/vc_row]','Color Theory','','inherit','closed','closed','','3596-revision-v1','','','2015-09-12 23:16:34','2015-09-12 23:16:34','',3596,'http://genewyork.com/3596-revision-v1/',0,'revision','',0),(3598,1,'2015-09-12 23:19:50','2015-09-12 23:19:50',' ','','','publish','closed','closed','','3598','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3549,'http://genewyork.com/?p=3598',16,'nav_menu_item','',0),(3599,1,'2015-09-12 23:19:50','2015-09-12 23:19:50',' ','','','publish','closed','closed','','3599','','','2015-09-12 23:19:50','2015-09-12 23:19:50','',3549,'http://genewyork.com/?p=3599',17,'nav_menu_item','',0),(3669,1,'2015-09-12 23:27:40','2015-09-12 23:27:40','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"4\" orderby=\"title\" grid_id=\"vc_gid:1442100429172-d23a5c5b-caf0-2\" taxonomies=\"111\"][/vc_column][/vc_row]','Multimedia Design Program','','inherit','closed','closed','','3549-autosave-v1','','','2015-09-12 23:27:40','2015-09-12 23:27:40','',3549,'http://genewyork.com/3549-autosave-v1/',0,'revision','',0),(3670,1,'2015-09-12 23:27:51','2015-09-12 23:27:51','[vc_row][vc_column][vc_basic_grid post_type=\"page\" max_items=\"4\" orderby=\"title\" grid_id=\"vc_gid:1442100429172-d23a5c5b-caf0-2\" taxonomies=\"111\"][/vc_column][/vc_row]','Multimedia Design Program','','inherit','closed','closed','','3549-revision-v1','','','2015-09-12 23:27:51','2015-09-12 23:27:51','',3549,'http://genewyork.com/3549-revision-v1/',0,'revision','',0),(3671,1,'2015-09-13 00:07:20','2015-09-13 00:07:20','','GENY-best-school-banner','','inherit','open','closed','','geny-best-school-banner','','','2015-09-13 00:07:20','2015-09-13 00:07:20','',5,'http://genewyork.com/wp-content/uploads/2015/08/GENY-best-school-banner.jpg',0,'attachment','image/jpeg',0),(3672,1,'2015-09-14 20:24:28','2015-09-14 20:24:28','','Terms of Use','','publish','closed','closed','','terms-of-use','','','2015-09-14 20:25:06','2015-09-14 20:25:06','',0,'http://genewyork.com/?p=3672',3,'nav_menu_item','',0),(3673,1,'2015-09-14 20:24:28','2015-09-14 20:24:28','','Privacy Policy','','publish','closed','closed','','privacy-policy-2','','','2015-09-14 20:25:06','2015-09-14 20:25:06','',0,'http://genewyork.com/?p=3673',4,'nav_menu_item','',0),(3674,1,'2015-09-14 20:42:09','0000-00-00 00:00:00','','Programs','','draft','closed','closed','','','','','2015-09-14 20:42:09','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3674',1,'nav_menu_item','',0),(3676,1,'2015-09-14 21:30:00','2015-09-14 21:30:00','','GENY-ESL-learn-English-map-banner','','inherit','open','closed','','geny-esl-learn-english-map-banner','','','2015-09-14 21:30:00','2015-09-14 21:30:00','',5,'http://genewyork.com/wp-content/uploads/2015/08/GENY-ESL-learn-English-map-banner.jpg',0,'attachment','image/jpeg',0),(3677,1,'2015-09-14 22:50:46','2015-09-14 22:50:46','','open-book','','inherit','open','closed','','open-book','','','2015-09-14 22:50:46','2015-09-14 22:50:46','',536,'http://genewyork.com/wp-content/uploads/2015/04/open-book.jpg',0,'attachment','image/jpeg',0),(3678,1,'2015-09-15 00:49:58','2015-09-15 00:49:58','','accounting-feature-title','','inherit','open','closed','','accounting-feature-title','','','2015-09-15 00:49:58','2015-09-15 00:49:58','',536,'http://genewyork.com/wp-content/uploads/2015/04/accounting-feature-title.jpg',0,'attachment','image/jpeg',0),(3679,1,'2015-09-15 00:50:00','2015-09-15 00:50:00','','allied-health-training-feature-title','','inherit','open','closed','','allied-health-training-feature-title','','','2015-09-15 00:50:00','2015-09-15 00:50:00','',536,'http://genewyork.com/wp-content/uploads/2015/04/allied-health-training-feature-title.jpg',0,'attachment','image/jpeg',0),(3680,1,'2015-09-15 00:50:02','2015-09-15 00:50:02','','basic-drawing-feature-title','','inherit','open','closed','','basic-drawing-feature-title','','','2015-09-15 00:50:02','2015-09-15 00:50:02','',536,'http://genewyork.com/wp-content/uploads/2015/04/basic-drawing-feature-title.jpg',0,'attachment','image/jpeg',0),(3681,1,'2015-09-15 00:50:03','2015-09-15 00:50:03','','bookkeeping-feature-title','','inherit','open','closed','','bookkeeping-feature-title','','','2015-09-15 00:50:03','2015-09-15 00:50:03','',536,'http://genewyork.com/wp-content/uploads/2015/04/bookkeeping-feature-title.jpg',0,'attachment','image/jpeg',0),(3682,1,'2015-09-15 00:50:05','2015-09-15 00:50:05','','business-english-feature-title','','inherit','open','closed','','business-english-feature-title','','','2015-09-15 00:50:05','2015-09-15 00:50:05','',536,'http://genewyork.com/wp-content/uploads/2015/04/business-english-feature-title.jpg',0,'attachment','image/jpeg',0),(3683,1,'2015-09-15 00:50:07','2015-09-15 00:50:07','','color-theory-feature-title','','inherit','open','closed','','color-theory-feature-title','','','2015-09-15 00:50:07','2015-09-15 00:50:07','',536,'http://genewyork.com/wp-content/uploads/2015/04/color-theory-feature-title.jpg',0,'attachment','image/jpeg',0),(3684,1,'2015-09-15 00:50:09','2015-09-15 00:50:09','','esl-feature-title','','inherit','open','closed','','esl-feature-title','','','2015-09-15 00:50:09','2015-09-15 00:50:09','',536,'http://genewyork.com/wp-content/uploads/2015/04/esl-feature-title.jpg',0,'attachment','image/jpeg',0),(3685,1,'2015-09-15 00:50:11','2015-09-15 00:50:11','','fashion-design-feature-title','','inherit','open','closed','','fashion-design-feature-title','','','2015-09-15 00:50:11','2015-09-15 00:50:11','',536,'http://genewyork.com/wp-content/uploads/2015/04/fashion-design-feature-title.jpg',0,'attachment','image/jpeg',0),(3686,1,'2015-09-15 00:50:12','2015-09-15 00:50:12','','graphic-design-feature-title','','inherit','open','closed','','graphic-design-feature-title','','','2015-09-15 00:50:12','2015-09-15 00:50:12','',536,'http://genewyork.com/wp-content/uploads/2015/04/graphic-design-feature-title.jpg',0,'attachment','image/jpeg',0),(3687,1,'2015-09-15 00:50:14','2015-09-15 00:50:14','','marketing-management-feature-title','','inherit','open','closed','','marketing-management-feature-title','','','2015-09-15 00:50:14','2015-09-15 00:50:14','',536,'http://genewyork.com/wp-content/uploads/2015/04/marketing-management-feature-title.jpg',0,'attachment','image/jpeg',0),(3688,1,'2015-09-15 00:50:16','2015-09-15 00:50:16','','nclex-rn-feature-title','','inherit','open','closed','','nclex-rn-feature-title','','','2015-09-15 00:50:16','2015-09-15 00:50:16','',536,'http://genewyork.com/wp-content/uploads/2015/04/nclex-rn-feature-title.jpg',0,'attachment','image/jpeg',0),(3689,1,'2015-09-15 00:50:18','2015-09-15 00:50:18','','toefl-feature-title','','inherit','open','closed','','toefl-feature-title','','','2015-09-15 00:50:18','2015-09-15 00:50:18','',536,'http://genewyork.com/wp-content/uploads/2015/04/toefl-feature-title.jpg',0,'attachment','image/jpeg',0),(3690,1,'2015-09-15 01:07:34','2015-09-15 01:07:34','','web-design-feature-title','','inherit','open','closed','','web-design-feature-title','','','2015-09-15 01:07:34','2015-09-15 01:07:34','',536,'http://genewyork.com/wp-content/uploads/2015/04/web-design-feature-title.jpg',0,'attachment','image/jpeg',0),(3691,1,'2015-09-15 01:07:44','2015-09-15 01:07:44','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3684,3689,3682\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_gallery][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_single_image image=\"1901\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_single_image image=\"1900\" img_size=\"full\" alignment=\"center\" el_class=\"tz-images-tab-single\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3677\"][vc_column][our_introduce][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-15 01:07:44','2015-09-15 01:07:44','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3692,1,'2015-09-15 01:10:27','2015-09-15 01:10:27','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column el_class=\"tz-cources-vc-tab\" css=\".vc_custom_1429335505964{margin-bottom: 90px !important;}\"][title title_text=\"FIND COURSES\" style_icon_image=\"style_image\" style_image_title=\"1919\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3684,3689,3682\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1436861508214{padding-right: 30px !important;padding-left: 30px !important;background-color: #334878 !important;}\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_gallery interval=\"5\" images=\"3690,3686,3685,3683,3680\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1436861520571{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_gallery interval=\"5\" images=\"3681,3678,3687\" img_size=\"full\"][vc_column_text]\r\n\r\nShort description about Business Program.\r\n\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_gallery interval=\"5\" images=\"3688,3679\" img_size=\"full\"][vc_column_text css=\".vc_custom_1436861558135{padding-right: 30px !important;padding-left: 30px !important;background-color: #324776 !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<p style=\"text-align: center;\">[icon name=\"anchor\" class=\"\"]</p>\r\n\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Comunication Studies</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam elementum nisi eget mi mollis. Lorem ipsum dolor amet, consectetur adipiscing elit. Elementum nisi eget mi mollis ...</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Film Studies\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Mass Media\" link=\"http://www.templaza.com/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#334878\" title=\"Public Relations\" link=\"http://www.templaza.com/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3677\"][vc_column][our_introduce][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-15 01:10:27','2015-09-15 01:10:27','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0),(3693,1,'2015-09-15 01:20:22','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2015-09-15 01:20:22','0000-00-00 00:00:00','',0,'http://genewyork.com/?p=3693',0,'post','',0),(3694,1,'2015-09-15 02:43:16','2015-09-15 02:43:16','[vc_row][vc_column css=\".vc_custom_1441256667790{padding-top: 20px !important;padding-right: 20px !important;padding-bottom: 10px !important;padding-left: 20px !important;background-color: #e5a82e !important;}\"][vc_widget_sidebar sidebar_id=\"plazart-sidebar-default\" el_class=\"language-icons\"][/vc_column][vc_column][tzheader header_option=\"header6\" logo=\"3226\"][/vc_column][/vc_row][vc_row][vc_column][rev_slider_vc][/vc_column][/vc_row][vc_row][vc_column][title style=\"style3\" title_text=\"GENY PROVIDES A QUALITY EDUCATION\" style_icon_image=\"style_image\" style_image_title=\"3526\" background_color=\"#f6f6f6\" text_color=\"#444444\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441844234877{background-color: #fcfcfc !important;}\"][vc_column css=\".vc_custom_1441843436808{padding-top: 40px !important;padding-right: 20px !important;padding-bottom: 40px !important;padding-left: 20px !important;}\" offset=\"vc_col-xs-12\"][vc_row_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\" css=\".vc_custom_1441845497633{padding-bottom: 50px !important;}\"][vc_column_text]\r\n<h2>GENY\'S MISSION</h2>\r\n[/vc_column_text][vc_column_text]GENY’s primary mission is to provide students with a quality multi-dimensional education that enhances their English language proficiency and career opportunities.\r\n\r\nHistorically, our service to student learning was organized around a well-established identity as a thriving business school in New York City with an increasingly successful language program. At present, on a regular basis we offer six levels of ESL instruction, and TOEFL Exam Preparation and Business English represent our contribution to English for Special Purposes.\r\n\r\nStudents in our Continuing Education certificate programs can expect to enhance their global competencies and economic competitiveness.\r\n\r\nWe continually monitor the trends and Best Practices in Global Education in order to keep our curriculum relevant. In addition to providing student-centered learning in the classroom, we take advantage of the many cultural experiences that New York City offers.[/vc_column_text][vc_btn title=\"Learn More\" style=\"flat\" color=\"orange\" align=\"left\" link=\"url:http%3A%2F%2Flocalhost%3A8888%2Fabout-us%2F|title:About%20GENY|\"][/vc_column_inner][vc_column_inner width=\"1/2\" offset=\"vc_col-lg-6 vc_col-md-6 vc_col-xs-12\"][vc_single_image image=\"3512\" img_size=\"full\" alignment=\"center\" style=\"vc_box_rounded\"][/vc_column_inner][/vc_row_inner][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row css=\".vc_custom_1441836880779{margin: 50px !important;}\"][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-file-text-o\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"How To Apply\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#e8be6c\" custom_color=\"#e8be6c\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-paperclip\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Schedule\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#5da7f0\" custom_color=\"#5da7f0\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-magic\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Certificate Programs\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#829c53\" custom_color=\"#829c53\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][vc_column width=\"1/4\" offset=\"vc_col-md-offset-0 vc_col-md-3 vc_col-sm-offset-2\"][vc_icon icon_fontawesome=\"fa fa-cog\" color=\"custom\" background_style=\"rounded\" align=\"center\" style_icon=\"style4\" title_customer=\"Plan A Visit\" background_color_customer=\"#ffffff\" background_color_customer_section=\"#334878\" custom_color=\"#334878\" el_class=\"tz-icon-home-6\" link=\"url:http%3A%2F%2Fwww.templaza.com%2F||\"][/vc_column][/vc_row][vc_row][vc_column][vc_empty_space height=\"10px\"][/vc_column][/vc_row][vc_row style_width=\"boxed\" background_parallax=\"none\"][vc_column css=\".vc_custom_1442282104630{margin-bottom: 90px !important;}\"][title style=\"style3\" title_text=\"FIND COURSES\" icon_color=\"\" background_color=\"#ffffff\" text_color=\"#444444\"][vc_tour interval=\"0\" el_class=\"tz-home2-find-courses\"][vc_tab title_customer=\"Input title for element\" title=\"Language Program\" tab_id=\"37a61be3-2e56-5\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3684,3689,3682\" img_size=\"full\" onclick=\"link_no\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442281601138{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"ESL\" link=\"http://www.genewyork.com/programs/language-program/esl/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Toefl Prep\" link=\"http://www.genewyork.com/programs/language-program/toefl-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Multimedia/Design Program\" tab_id=\"0c024117-092a-4\"][vc_gallery type=\"flexslider_slide\" interval=\"5\" images=\"3690,3686,3685,3683,3680\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283230188{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Multimedia Design Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Graphic Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/graphic-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Web Design\" link=\"http://www.genewyork.com/programs/multimedia-design-program/web-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Fashion Design\" link=\"http://www.genewyork.com/multimedia-design-program/fashion-design/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Color Theory\" link=\"http://www.genewyork.com/multimedia-design-program/color-theory/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Basic Drawing\" link=\"http://www.genewyork.com/multimedia-design-program/basic-drawing/\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Business Program\" tab_id=\"1429264855314-2-1\"][vc_gallery interval=\"5\" images=\"3681,3678,3687\" img_size=\"full\"][vc_column_text el_class=\"tz-home2-tab-galexy\" css=\".vc_custom_1442283170672{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Business Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Bookkeeping\" link=\"http://www.genewyork.com/programs/business-program/bookkeeping/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Accounting\" link=\"http://www.genewyork.com/programs/business-program/accounting/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Marketing Management\" link=\"http://www.genewyork.com/programs/business-program/marketing-management\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][vc_tab title_customer=\"Input title for element\" title=\"Allied Health Program\" tab_id=\"1429264859510-3-7\"][vc_gallery interval=\"5\" images=\"3688,3679\" img_size=\"full\" onclick=\"link_no\"][vc_column_text css=\".vc_custom_1442283248087{padding-top: 20px !important;padding-right: 20px !important;padding-left: 20px !important;background-color: #71141f !important;}\" el_class=\"tz-home2-tab-galexy\"]\r\n<h4 style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program</span></h4>\r\n<p style=\"text-align: center;\"><span style=\"color: #ffffff;\">Language Program description</span></p>\r\n<p style=\"text-align: center;\">[button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"NCLEX-RN Prep\" link=\"http://www.genewyork.com/programs/allied-health-program/nclex-rn-prep/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Allied Health Training\" link=\"http://www.genewyork.com/programs/allied-health-program/allied-health-training/\" ][/button][button type_choose_style=\"Style Button 2\" background=\"#e5a82e\" title=\"Business English\" link=\"http://www.genewyork.com/programs/language-program/business-english\" ][/button]</p>\r\n[/vc_column_text][/vc_tab][/vc_tour][/vc_column][/vc_row][vc_row parallax=\"content-moving\" parallax_image=\"3677\"][vc_column][our_introduce][our_introduce_item content_main=\"“Intellectual growth should commence at birth and cease only at death. ”\" name=\"- Albert Einstein\" customer_image=\"3347\"][our_introduce_item content_main=\"“I would found an institution where any person can find instruction in any study.”\" name=\"- Nelson Mandela\" customer_image=\"3347\"][/our_introduce][/vc_column][/vc_row]','Home','','inherit','closed','closed','','536-revision-v1','','','2015-09-15 02:43:16','2015-09-15 02:43:16','',536,'http://genewyork.com/536-revision-v1/',0,'revision','',0); /*!40000 ALTER TABLE `g516db_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_css` -- DROP TABLE IF EXISTS `g516db_revslider_css`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_css` ( `id` int(9) NOT NULL auto_increment, `handle` text NOT NULL, `settings` text, `hover` text, `params` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=57 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_css` -- LOCK TABLES `g516db_revslider_css` WRITE; /*!40000 ALTER TABLE `g516db_revslider_css` DISABLE KEYS */; INSERT INTO `g516db_revslider_css` VALUES (1,'.tp-caption.medium_grey',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.number-one1',NULL,NULL,'{\"color\":\"rgb(255, 255, 255)\",\"display\":\"inline-block\",\"font-family\":\"\\\"Varela\\\",sans-serif\",\"font-size\":\"40px\",\"font-weight\":\"400\",\"line-height\":\"40px\",\"margin\":\"0 0 15px\",\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(49,'.tp-caption.english-university',NULL,NULL,'{\"color\":\"rgb(255, 255, 255)\",\"font-size\":\"64px\",\"font-weight\":\"400\",\"line-height\":\"64px\",\"margin\":\"0 0 20px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(50,'.tp-caption.spantz-under-line',NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(51,'.tp-caption.best-university',NULL,NULL,'{\"color\":\"rgb(255, 255, 255)\",\"font-size\":\"20px\",\"line-height\":\"24px\",\"margin\":\"0\",\"padding-bottom\":\"50px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(52,'.tp-caption.more',NULL,NULL,'{\"background-color\":\"transparent\",\"text-decoration\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(53,'.tp-caption.largetextcustom','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"50px\",\"line-height\":\"50px\",\"font-weight\":\"400\",\"font-family\":\"Arial\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"text-shadow\":\"rgba(0, 0, 0, 0.498039) 0px 2px 5px\",\"margin\":\"0px\",\"white-space\":\"nowrap\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(54,'.tp-caption.mediumbgorangecustom','{\"hover\":\"false\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"10px\",\"background-color\":\"rgb(243, 156, 18)\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"font-size\":\"80px\",\"line-height\":\"50px\",\"font-weight\":\"600\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"20px 40px\",\"background-color\":\"rgba(243, 156, 18, 0.701961)\",\"border-width\":\"3px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"solid\"}'),(55,'.tp-caption.white-30-30-300','{\"hover\":\"false\"}','\"\"','{\"font-size\":\"35px\",\"line-height\":\"35px\",\"font-weight\":\"300\",\"font-family\":\"Varela, sans-serif\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"display\":\"inline-block\",\"margin\":\"0px 0px 15px\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(56,'.tp-caption.geny-orange-bg-text','{\"hover\":\"false\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"10px\",\"background-color\":\"rgb(243, 156, 18)\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}','{\"font-size\":\"80px\",\"line-height\":\"50px\",\"font-weight\":\"500\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"padding\":\"20px 30px\",\"letter-spacing\":\"5px\",\"background-color\":\"rgba(243, 156, 18, 0.498039)\",\"border-width\":\"3px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"solid\"}'); /*!40000 ALTER TABLE `g516db_revslider_css` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_layer_animations` -- DROP TABLE IF EXISTS `g516db_revslider_layer_animations`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_layer_animations` ( `id` int(9) NOT NULL auto_increment, `handle` text NOT NULL, `params` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_layer_animations` -- LOCK TABLES `g516db_revslider_layer_animations` WRITE; /*!40000 ALTER TABLE `g516db_revslider_layer_animations` DISABLE KEYS */; INSERT INTO `g516db_revslider_layer_animations` VALUES (1,'zoom length','{\"movex\":\"0\",\"movey\":\"0\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"10\",\"scaley\":\"100\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"23\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}'),(2,'zoomin','{\"movex\":\"0\",\"movey\":\"100\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"10\",\"scaley\":\"10\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}'),(3,'TZ Skew From Short Bottom','{\"movex\":\"0\",\"movey\":\"100\",\"movez\":\"0\",\"rotationx\":\"0\",\"rotationy\":\"0\",\"rotationz\":\"0\",\"scalex\":\"100\",\"scaley\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"captionopacity\":\"0\",\"captionperspective\":\"600\",\"originx\":\"50\",\"originy\":\"50\"}'); /*!40000 ALTER TABLE `g516db_revslider_layer_animations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_settings` -- DROP TABLE IF EXISTS `g516db_revslider_settings`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_settings` ( `id` int(9) NOT NULL auto_increment, `general` text NOT NULL, `params` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_settings` -- LOCK TABLES `g516db_revslider_settings` WRITE; /*!40000 ALTER TABLE `g516db_revslider_settings` DISABLE KEYS */; INSERT INTO `g516db_revslider_settings` VALUES (1,'a:0:{}',''); /*!40000 ALTER TABLE `g516db_revslider_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_sliders` -- DROP TABLE IF EXISTS `g516db_revslider_sliders`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_sliders` ( `id` int(9) NOT NULL auto_increment, `title` tinytext NOT NULL, `alias` tinytext, `params` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_sliders` -- LOCK TABLES `g516db_revslider_sliders` WRITE; /*!40000 ALTER TABLE `g516db_revslider_sliders` DISABLE KEYS */; INSERT INTO `g516db_revslider_sliders` VALUES (1,'GENY-slider','GENY-slider','{\"title\":\"GENY-slider\",\"alias\":\"GENY-slider\",\"shortcode\":\"[rev_slider GENY-slider]\",\"source_type\":\"gallery\",\"post_types\":\"post\",\"post_category\":\"\",\"post_sortby\":\"ID\",\"posts_sort_direction\":\"DESC\",\"max_slider_posts\":\"30\",\"excerpt_limit\":\"55\",\"slider_template_id\":\"\",\"posts_list\":\"\",\"slider_type\":\"fullscreen\",\"fullscreen_offset_container\":\"\",\"fullscreen_offset_size\":\"\",\"fullscreen_min_height\":\"\",\"full_screen_align_force\":\"off\",\"auto_height\":\"off\",\"force_full_width\":\"off\",\"min_height\":\"0\",\"width\":\"960\",\"height\":\"500\",\"responsitive_w1\":\"940\",\"responsitive_sw1\":\"770\",\"responsitive_w2\":\"780\",\"responsitive_sw2\":\"500\",\"responsitive_w3\":\"510\",\"responsitive_sw3\":\"310\",\"responsitive_w4\":\"0\",\"responsitive_sw4\":\"0\",\"responsitive_w5\":\"0\",\"responsitive_sw5\":\"0\",\"responsitive_w6\":\"0\",\"responsitive_sw6\":\"0\",\"delay\":\"6000\",\"shuffle\":\"off\",\"lazy_load\":\"off\",\"use_wpml\":\"off\",\"enable_static_layers\":\"off\",\"next_slide_on_window_focus\":\"off\",\"start_js_after_delay\":0,\"stop_slider\":\"off\",\"stop_after_loops\":0,\"stop_at_slide\":2,\"show_timerbar\":\"hide\",\"loop_slide\":\"loop\",\"position\":\"center\",\"margin_top\":0,\"margin_bottom\":0,\"margin_left\":0,\"margin_right\":0,\"shadow_type\":\"0\",\"padding\":0,\"background_color\":\"black\",\"background_dotted_overlay\":\"none\",\"show_background_image\":\"false\",\"background_image\":\"http:\\/\\/localhost\\/theme_ethic\\/wp-content\\/\",\"bg_fit\":\"cover\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center top\",\"stop_on_hover\":\"on\",\"keyboard_navigation\":\"off\",\"navigation_style\":\"round\",\"navigaion_type\":\"bullet\",\"navigation_arrows\":\"solo\",\"navigaion_always_on\":\"false\",\"hide_thumbs\":200,\"navigaion_align_hor\":\"center\",\"navigaion_align_vert\":\"bottom\",\"navigaion_offset_hor\":\"0\",\"navigaion_offset_vert\":20,\"leftarrow_align_hor\":\"left\",\"leftarrow_align_vert\":\"center\",\"leftarrow_offset_hor\":20,\"leftarrow_offset_vert\":0,\"rightarrow_align_hor\":\"right\",\"rightarrow_align_vert\":\"center\",\"rightarrow_offset_hor\":20,\"rightarrow_offset_vert\":0,\"thumb_width\":100,\"thumb_height\":50,\"thumb_amount\":5,\"use_spinner\":\"-1\",\"spinner_color\":\"#FFFFFF\",\"use_parallax\":\"off\",\"disable_parallax_mobile\":\"off\",\"parallax_type\":\"mouse+scroll\",\"parallax_bg_freeze\":\"on\",\"parallax_level_1\":\"5\",\"parallax_level_2\":\"10\",\"parallax_level_3\":\"15\",\"parallax_level_4\":\"20\",\"parallax_level_5\":\"25\",\"parallax_level_6\":\"30\",\"parallax_level_7\":\"35\",\"parallax_level_8\":\"40\",\"parallax_level_9\":\"45\",\"parallax_level_10\":\"50\",\"touchenabled\":\"on\",\"swipe_velocity\":75,\"swipe_min_touches\":1,\"drag_block_vertical\":\"false\",\"disable_on_mobile\":\"off\",\"disable_kenburns_on_mobile\":\"off\",\"hide_slider_under\":0,\"hide_defined_layers_under\":0,\"hide_all_layers_under\":0,\"hide_arrows_on_mobile\":\"off\",\"hide_bullets_on_mobile\":\"off\",\"hide_thumbs_on_mobile\":\"off\",\"hide_thumbs_under_resolution\":0,\"hide_thumbs_delay_mobile\":1500,\"start_with_slide\":\"1\",\"first_transition_active\":\"false\",\"first_transition_type\":\"fade\",\"first_transition_duration\":300,\"first_transition_slot_amount\":7,\"simplify_ie8_ios4\":\"off\",\"show_alternative_type\":\"off\",\"show_alternate_image\":\"\",\"reset_transitions\":\"\",\"reset_transition_duration\":0,\"0\":\"Execute settings on all slides\",\"jquery_noconflict\":\"on\",\"js_to_body\":\"false\",\"output_type\":\"none\",\"custom_css\":\"\",\"custom_javascript\":\"\",\"template\":\"false\"}'); /*!40000 ALTER TABLE `g516db_revslider_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_slides` -- DROP TABLE IF EXISTS `g516db_revslider_slides`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_slides` ( `id` int(9) NOT NULL auto_increment, `slider_id` int(9) NOT NULL, `slide_order` int(11) NOT NULL, `params` text NOT NULL, `layers` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=12 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_slides` -- LOCK TABLES `g516db_revslider_slides` WRITE; /*!40000 ALTER TABLE `g516db_revslider_slides` DISABLE KEYS */; INSERT INTO `g516db_revslider_slides` VALUES (1,1,2,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wp-content\\/uploads\\/2015\\/08\\/GENY-basic-drawing-banner.jpg\",\"image_id\":\"3507\",\"title\":\"Basic Drawing\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":1000,\"delay\":\"\",\"save_performance\":\"on\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"normal\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'),(3,1,1,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wp-content\\/uploads\\/2015\\/08\\/GENY-best-school-banner.jpg\",\"image_id\":\"3671\",\"title\":\"Slide\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":1000,\"delay\":\"\",\"save_performance\":\"on\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"#E7E7E7\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"9000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[{\"text\":\"GENY\",\"type\":\"text\",\"left\":-3,\"top\":-159,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sft\",\"easing\":\"Linear.easeNone\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"geny-orange-bg-text\",\"time\":1210,\"endtime\":\"6600\",\"endspeed\":1000,\"endanimation\":\"stt\",\"endeasing\":\"Power0.easeOut\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":294,\"height\":96,\"serial\":\"0\",\"endTimeFinal\":5000,\"endSpeedFinal\":1000,\"realEndTime\":6000,\"timeLast\":5000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"Best Language and Career School\",\"type\":\"text\",\"left\":93,\"top\":182,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfl\",\"easing\":\"Linear.easeNone\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"static_start\":\"1\",\"static_end\":\"2\",\"speed\":800,\"align_hor\":\"left\",\"align_vert\":\"top\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"largetextcustom\",\"time\":1200,\"endtime\":\"6600\",\"endspeed\":1000,\"endanimation\":\"stl\",\"endeasing\":\"Power4.easeInOut\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":767,\"height\":50,\"serial\":\"1\",\"endTimeFinal\":5000,\"endSpeedFinal\":1000,\"realEndTime\":6000,\"timeLast\":5000,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\"},{\"text\":\"<span class=\\\"tz-under-line\\\"><\\/span>\",\"type\":\"text\",\"left\":-3,\"top\":26,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-1\",\"easing\":\"Linear.easeNone\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":800,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"spantz-under-line\",\"time\":1210,\"endtime\":\"6600\",\"endspeed\":700,\"endanimation\":\"stl\",\"endeasing\":\"Power1.easeInOut\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":0,\"height\":13,\"serial\":\"2\",\"endTimeFinal\":5300,\"endSpeedFinal\":700,\"realEndTime\":6000,\"timeLast\":5300,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"Your Future Starts Here\",\"type\":\"text\",\"left\":-1,\"top\":101,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"sfr\",\"easing\":\"Power0.easeIn\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"white-30-30-300\",\"time\":1300,\"endtime\":\"6600\",\"endspeed\":600,\"endanimation\":\"fadeout\",\"endeasing\":\"Quad.easeInOut\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":366,\"height\":50,\"serial\":\"3\",\"endTimeFinal\":5400,\"endSpeedFinal\":600,\"realEndTime\":6000,\"timeLast\":5400,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"},{\"text\":\"<a href=\'#\' class=\'tp-button tz-item-more-details\'><span>MORE \\n DETAILS<\\/span><\\/a>\",\"type\":\"text\",\"left\":-4,\"top\":171,\"loop_animation\":\"none\",\"loop_easing\":\"Power3.easeInOut\",\"loop_speed\":\"2\",\"loop_startdeg\":\"-20\",\"loop_enddeg\":\"20\",\"loop_xorigin\":\"50\",\"loop_yorigin\":\"50\",\"loop_xstart\":\"0\",\"loop_xend\":\"0\",\"loop_ystart\":\"0\",\"loop_yend\":\"0\",\"loop_zoomstart\":\"1\",\"loop_zoomend\":\"1\",\"loop_angle\":\"0\",\"loop_radius\":\"10\",\"animation\":\"customin-2\",\"easing\":\"Linear.easeNone\",\"split\":\"none\",\"endsplit\":\"none\",\"splitdelay\":\"10\",\"endsplitdelay\":\"10\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"parallax_level\":\"-\",\"whitespace\":\"nowrap\",\"speed\":600,\"align_hor\":\"center\",\"align_vert\":\"middle\",\"hiddenunder\":false,\"resizeme\":true,\"link\":\"\",\"link_open_in\":\"same\",\"link_slide\":\"nothing\",\"scrollunder_offset\":\"\",\"style\":\"more\",\"time\":1450,\"endtime\":\"6600\",\"endspeed\":800,\"endanimation\":\"ltb\",\"endeasing\":\"Power2.easeOut\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"width\":127,\"height\":45,\"serial\":\"4\",\"endTimeFinal\":7050,\"endSpeedFinal\":800,\"realEndTime\":7400,\"timeLast\":7050,\"endWithSlide\":true,\"max_height\":\"auto\",\"max_width\":\"auto\",\"2d_rotation\":\"0\",\"alt\":\"\",\"scaleX\":\"\",\"scaleY\":\"\",\"scaleProportional\":false,\"attrID\":\"\",\"attrClasses\":\"\",\"attrTitle\":\"\",\"attrRel\":\"\",\"link_id\":\"\",\"link_class\":\"\",\"link_title\":\"\",\"link_rel\":\"\",\"static_start\":\"1\",\"static_end\":\"2\"}]'),(11,1,3,'{\"background_type\":\"image\",\"image\":\"http:\\/\\/localhost:8888\\/wp-content\\/uploads\\/2015\\/08\\/GENY-ESL-learn-English-map-banner.jpg\",\"image_id\":\"3676\",\"title\":\"Learn English\",\"state\":\"published\",\"date_from\":\"\",\"date_to\":\"\",\"slide_transition\":\"fade\",\"0\":\"Remove\",\"slot_amount\":7,\"transition_rotation\":0,\"transition_duration\":1000,\"delay\":\"\",\"save_performance\":\"off\",\"enable_link\":\"false\",\"link_type\":\"regular\",\"link\":\"\",\"link_open_in\":\"same\",\"slide_link\":\"nothing\",\"link_pos\":\"front\",\"slide_thumb\":\"\",\"class_attr\":\"\",\"id_attr\":\"\",\"attr_attr\":\"\",\"data_attr\":\"\",\"slide_bg_color\":\"71141e\",\"slide_bg_external\":\"\",\"bg_fit\":\"cover\",\"bg_fit_x\":\"100\",\"bg_fit_y\":\"100\",\"bg_repeat\":\"no-repeat\",\"bg_position\":\"center center\",\"bg_position_x\":\"0\",\"bg_position_y\":\"0\",\"bg_end_position_x\":\"0\",\"bg_end_position_y\":\"0\",\"bg_end_position\":\"center top\",\"kenburn_effect\":\"off\",\"kb_start_fit\":\"100\",\"kb_end_fit\":\"100\",\"kb_duration\":\"6000\",\"kb_easing\":\"Linear.easeNone\",\"0\":\"Remove\"}','[]'); /*!40000 ALTER TABLE `g516db_revslider_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_revslider_static_slides` -- DROP TABLE IF EXISTS `g516db_revslider_static_slides`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_revslider_static_slides` ( `id` int(9) NOT NULL auto_increment, `slider_id` int(9) NOT NULL, `params` text NOT NULL, `layers` text NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_revslider_static_slides` -- LOCK TABLES `g516db_revslider_static_slides` WRITE; /*!40000 ALTER TABLE `g516db_revslider_static_slides` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_revslider_static_slides` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_signups` -- DROP TABLE IF EXISTS `g516db_signups`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_signups` ( `signup_id` bigint(20) NOT NULL auto_increment, `domain` varchar(200) NOT NULL default '', `path` varchar(100) NOT NULL default '', `title` longtext NOT NULL, `user_login` varchar(60) NOT NULL default '', `user_email` varchar(100) NOT NULL default '', `registered` datetime NOT NULL default '0000-00-00 00:00:00', `activated` datetime NOT NULL default '0000-00-00 00:00:00', `active` tinyint(1) NOT NULL default '0', `activation_key` varchar(50) NOT NULL default '', `meta` longtext, PRIMARY KEY (`signup_id`), KEY `activation_key` (`activation_key`), KEY `user_email` (`user_email`), KEY `user_login_email` (`user_login`,`user_email`), KEY `domain_path` (`domain`(140),`path`(51)) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_signups` -- LOCK TABLES `g516db_signups` WRITE; /*!40000 ALTER TABLE `g516db_signups` DISABLE KEYS */; /*!40000 ALTER TABLE `g516db_signups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_term_relationships` -- DROP TABLE IF EXISTS `g516db_term_relationships`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL default '0', `term_taxonomy_id` bigint(20) unsigned NOT NULL default '0', `term_order` int(11) NOT NULL default '0', PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_term_relationships` -- LOCK TABLES `g516db_term_relationships` WRITE; /*!40000 ALTER TABLE `g516db_term_relationships` DISABLE KEYS */; INSERT INTO `g516db_term_relationships` VALUES (61,46,0),(95,94,0),(97,94,0),(98,94,0),(99,94,0),(304,19,0),(304,21,0),(305,19,0),(308,19,0),(310,19,0),(312,19,0),(313,19,0),(314,19,0),(315,19,0),(536,95,0),(801,22,0),(803,22,0),(804,22,0),(805,22,0),(817,22,0),(818,22,0),(860,23,0),(965,23,0),(1067,20,0),(1069,20,0),(1071,21,0),(1074,23,0),(1636,27,0),(1638,28,0),(1640,27,0),(1646,25,0),(1648,31,0),(1650,25,0),(1661,26,0),(1672,29,0),(2089,19,0),(2090,19,0),(2091,19,0),(2092,19,0),(2093,19,0),(2094,19,0),(2095,19,0),(2284,18,0),(2284,30,0),(2285,18,0),(2285,30,0),(2708,33,0),(2709,33,0),(2710,33,0),(2711,33,0),(2712,33,0),(2713,33,0),(2714,33,0),(2718,38,0),(2719,38,0),(2720,38,0),(2721,32,0),(2722,32,0),(2723,32,0),(2724,32,0),(2725,32,0),(2726,33,0),(2734,34,0),(2735,34,0),(2736,34,0),(2739,34,0),(2742,35,0),(2743,35,0),(2744,35,0),(2745,35,0),(2751,36,0),(2752,36,0),(2754,39,0),(2755,39,0),(2756,39,0),(2757,39,0),(2758,39,0),(2759,39,0),(2760,33,0),(2761,33,0),(2764,33,0),(2765,38,0),(3031,38,0),(3041,33,0),(3050,33,0),(3052,33,0),(3053,33,0),(3072,33,0),(3074,33,0),(3079,33,0),(3080,33,0),(3081,33,0),(3082,33,0),(3083,38,0),(3084,38,0),(3095,43,0),(3096,43,0),(3097,43,0),(3128,43,0),(3129,43,0),(3132,95,0),(3200,43,0),(3209,43,0),(3284,97,0),(3385,43,0),(3391,43,0),(3393,106,0),(3409,106,0),(3417,108,0),(3417,110,0),(3419,108,0),(3419,110,0),(3421,106,0),(3422,106,0),(3435,107,0),(3435,108,0),(3437,107,0),(3437,108,0),(3440,106,0),(3441,106,0),(3443,107,0),(3443,108,0),(3446,106,0),(3448,108,0),(3448,109,0),(3453,108,0),(3453,109,0),(3472,106,0),(3474,106,0),(3475,108,0),(3475,109,0),(3478,106,0),(3481,106,0),(3482,43,0),(3537,108,0),(3537,111,0),(3551,43,0),(3586,108,0),(3586,111,0),(3588,108,0),(3588,111,0),(3590,106,0),(3591,106,0),(3592,106,0),(3593,106,0),(3594,108,0),(3594,111,0),(3596,108,0),(3596,111,0),(3598,106,0),(3599,106,0),(3672,36,0),(3673,36,0); /*!40000 ALTER TABLE `g516db_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_term_taxonomy` -- DROP TABLE IF EXISTS `g516db_term_taxonomy`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM AUTO_INCREMENT=112 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_term_taxonomy` -- LOCK TABLES `g516db_term_taxonomy` WRITE; /*!40000 ALTER TABLE `g516db_term_taxonomy` DISABLE KEYS */; INSERT INTO `g516db_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'category','',0,0),(5,5,'category','',0,0),(6,6,'category','',0,0),(7,7,'category','',0,0),(8,8,'category','',0,0),(9,9,'category','',0,0),(10,10,'category','',0,0),(11,11,'post_tag','',0,0),(12,12,'post_tag','',0,0),(13,13,'post_tag','',0,0),(14,14,'post_tag','',0,0),(15,15,'post_tag','',0,0),(16,16,'post_tag','',0,0),(17,17,'post_tag','',0,0),(18,18,'topic-tag','',0,2),(19,19,'tribe_events_cat','',0,15),(20,20,'tribe_events_cat','',0,2),(21,21,'tribe_events_cat','',0,2),(22,22,'ourteam-category','',0,6),(23,23,'tribe_events_cat','',0,3),(24,24,'topic-tag','',0,0),(25,25,'topic-tag','',0,2),(26,26,'topic-tag','',0,1),(27,27,'topic-tag','',0,2),(28,28,'topic-tag','',0,1),(29,29,'topic-tag','',0,1),(30,30,'topic-tag','',0,2),(31,31,'topic-tag','',0,1),(32,32,'nav_menu','',0,5),(33,33,'nav_menu','',0,21),(34,34,'nav_menu','',0,4),(35,35,'nav_menu','',0,4),(36,36,'nav_menu','',0,4),(37,37,'nav_menu','',0,0),(38,38,'nav_menu','',0,7),(39,39,'nav_menu','',0,6),(41,41,'post_format','',0,0),(42,42,'post_format','',0,0),(43,43,'nav_menu','',0,11),(49,49,'category','',0,0),(53,53,'category','',0,0),(57,57,'category','',0,0),(61,61,'category','',0,0),(94,94,'languages_group','the group of languages',0,4),(95,95,'language','english',0,2),(97,97,'language','Chinese',0,1),(98,98,'language','Japanese',0,0),(99,99,'language','Korean',0,0),(101,101,'category','',0,0),(102,102,'category','',0,0),(103,103,'category','',0,0),(105,105,'nav_menu','',0,0),(106,106,'nav_menu','',0,17),(107,107,'post_tag','',0,3),(108,108,'post_tag','',0,13),(109,109,'post_tag','',0,3),(110,110,'post_tag','',0,2),(111,111,'post_tag','',0,5); /*!40000 ALTER TABLE `g516db_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_terms` -- DROP TABLE IF EXISTS `g516db_terms`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM AUTO_INCREMENT=112 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_terms` -- LOCK TABLES `g516db_terms` WRITE; /*!40000 ALTER TABLE `g516db_terms` DISABLE KEYS */; INSERT INTO `g516db_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'article','event',0),(3,'Blog 1 Column','blog-1-column',0),(4,'Blog 2 Column','blog-2-column',0),(5,'Blog 4 Column','blog-4-column',0),(6,'Blog SideBar','blog-sidebar',0),(7,'cat_lesson','cat_lesson',0),(8,'courses','ex_courses',0),(9,'our project','our-project',0),(10,'Timeline','timeline',0),(11,'School','school',0),(12,'Scinece','scinece',0),(13,'tag event','tag-event',0),(14,'tag1','tag1',0),(15,'tag2','tag2',0),(16,'tag3','tag3',0),(17,'Work Space','work-space',0),(18,'design','design',0),(19,'event1','event1',0),(20,'event2','event2',0),(21,'event3','event3',0),(22,'our leader','our-leader',0),(23,'special','special',0),(24,'Support','support',0),(25,'tag forum','tag-forum',0),(26,'tag topic group','tag-topic-group',0),(27,'tag1','tag1',0),(28,'tag2','tag2',0),(29,'Tags forum','tags-forum',0),(30,'technology','technology',0),(31,'topic forum','topic-forum',0),(32,'Cavans Menu','cavans-menu',0),(33,'Main Menu','main-menu',0),(34,'Menu footer1','menu-footer1',0),(35,'Menu footer2','menu-footer2',0),(36,'Menu footer3','menu-footer3',0),(37,'Menu footer4','menu-footer4',0),(38,'Menu Right','menu-right',0),(39,'Menu Sidebar event','menu-sidebar-event',0),(41,'Image','post-format-image',0),(42,'Video','post-format-video',0),(43,'GENY Main Menu','geny-main-menu',0),(49,'Uncategorized','uncategorized-zh',0),(53,'Uncategorized','uncategorized-ja',0),(57,'Uncategorized','uncategorized-ko',0),(61,'Uncategorized','uncategorized-en',0),(94,'the-langs-group','the-langs-group',0),(95,'en_US','en_us',0),(97,'zh_CN','zh_cn',0),(98,'ja','ja',0),(99,'ko_KR','ko_kr',0),(101,'未分类','%e6%9c%aa%e5%88%86%e7%b1%bb',0),(102,'カテゴリーなし','%e3%82%ab%e3%83%86%e3%82%b4%e3%83%aa%e3%83%bc%e3%81%aa%e3%81%97',0),(103,'분류되지 않음','%eb%b6%84%eb%a5%98%eb%90%98%ec%a7%80-%ec%95%8a%ec%9d%8c',0),(105,'language switcher','language-switcher',0),(106,'Programs Side Menu','programs-side-menu',0),(107,'Business Program','business-program',0),(108,'Course','course',0),(109,'Language Program','language-program',0),(110,'Allied Health Program','allied-health-program',0),(111,'Multimedia Program','multimedia-program',0); /*!40000 ALTER TABLE `g516db_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_top_ten` -- DROP TABLE IF EXISTS `g516db_top_ten`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_top_ten` ( `postnumber` bigint(20) NOT NULL, `cntaccess` bigint(20) NOT NULL, `blog_id` bigint(20) NOT NULL default '1', PRIMARY KEY (`postnumber`,`blog_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_top_ten` -- LOCK TABLES `g516db_top_ten` WRITE; /*!40000 ALTER TABLE `g516db_top_ten` DISABLE KEYS */; INSERT INTO `g516db_top_ten` VALUES (536,425,1),(1385,3,1),(1400,1,1),(1408,1,1),(1441,14,1),(1444,2,1),(1454,1,1),(1630,1,1),(1631,1,1),(1632,1,1),(1658,1,1),(1689,48,1),(1703,1,1),(1752,60,1),(1781,1,1),(1791,2,1),(2130,1,1),(2131,1,1),(3098,5,1),(3101,1,1),(3102,1,1),(3103,2,1),(3104,2,1),(3105,3,1),(3108,4,1),(3109,5,1),(3110,5,1),(3111,5,1),(3112,5,1),(3113,5,1),(3114,5,1),(3115,5,1),(3116,5,1),(3117,5,1),(3118,6,1),(3119,6,1),(3120,6,1),(3121,6,1),(3122,6,1),(3130,41,1),(3131,41,1),(3177,52,1),(3180,53,1),(3182,53,1),(3184,53,1),(3185,53,1),(3186,13,1),(3189,53,1),(3190,53,1),(3191,53,1),(3192,53,1),(3193,53,1),(3214,15,1),(3216,15,1),(3217,15,1),(3219,15,1),(3220,18,1),(3222,15,1),(3223,15,1),(3224,46,1),(3227,15,1),(3230,15,1),(3231,15,1),(3232,15,1),(3233,15,1),(3234,18,1),(3235,63,1),(3236,15,1),(3237,15,1),(3293,86,1),(3324,138,1),(3325,112,1),(3326,112,1),(3327,112,1),(3328,112,1),(3329,112,1),(3330,112,1),(3331,112,1),(3333,29,1),(3334,29,1),(3335,29,1),(3336,29,1),(3337,29,1),(3338,29,1),(3339,29,1),(3340,29,1),(3341,29,1),(3342,29,1),(3344,29,1),(3346,29,1),(3348,29,1),(3349,29,1),(3350,29,1),(3358,29,1),(3359,29,1),(3360,29,1),(3361,29,1),(3362,29,1),(3363,29,1),(3366,29,1),(3367,29,1),(3379,39,1),(3380,128,1),(3381,46,1),(3500,41,1),(3501,41,1),(3502,422,1),(3503,337,1),(3511,381,1),(3513,392,1),(3514,392,1),(3515,392,1),(3516,392,1),(3520,394,1),(3521,394,1),(3522,395,1),(3523,396,1),(3524,396,1),(3525,396,1),(3535,396,1),(3691,422,1),(3692,422,1),(3694,422,1); /*!40000 ALTER TABLE `g516db_top_ten` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_top_ten_daily` -- DROP TABLE IF EXISTS `g516db_top_ten_daily`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_top_ten_daily` ( `postnumber` bigint(20) NOT NULL, `cntaccess` bigint(20) NOT NULL, `dp_date` datetime NOT NULL, `blog_id` bigint(20) NOT NULL default '1', PRIMARY KEY (`postnumber`,`dp_date`,`blog_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_top_ten_daily` -- LOCK TABLES `g516db_top_ten_daily` WRITE; /*!40000 ALTER TABLE `g516db_top_ten_daily` DISABLE KEYS */; INSERT INTO `g516db_top_ten_daily` VALUES (536,4,'2015-08-26 16:00:00',1),(536,1,'2015-08-26 21:00:00',1),(536,1,'2015-08-26 22:00:00',1),(536,3,'2015-08-26 23:00:00',1),(536,12,'2015-08-27 01:00:00',1),(536,11,'2015-08-27 02:00:00',1),(536,23,'2015-08-27 03:00:00',1),(536,9,'2015-08-27 04:00:00',1),(536,6,'2015-08-28 03:00:00',1),(536,1,'2015-08-28 15:00:00',1),(536,3,'2015-08-28 19:00:00',1),(536,16,'2015-08-29 04:00:00',1),(536,7,'2015-08-29 05:00:00',1),(536,1,'2015-08-29 16:00:00',1),(536,1,'2015-08-29 17:00:00',1),(536,4,'2015-08-29 19:00:00',1),(536,2,'2015-08-29 21:00:00',1),(536,4,'2015-08-29 22:00:00',1),(536,1,'2015-08-29 23:00:00',1),(536,1,'2015-08-30 01:00:00',1),(536,3,'2015-08-30 14:00:00',1),(536,1,'2015-08-31 13:00:00',1),(536,2,'2015-08-31 14:00:00',1),(536,8,'2015-08-31 15:00:00',1),(536,9,'2015-08-31 16:00:00',1),(536,15,'2015-09-02 01:00:00',1),(536,2,'2015-09-02 02:00:00',1),(536,35,'2015-09-02 03:00:00',1),(536,1,'2015-09-02 13:00:00',1),(536,1,'2015-09-02 16:00:00',1),(536,9,'2015-09-03 03:00:00',1),(536,36,'2015-09-03 04:00:00',1),(536,18,'2015-09-03 05:00:00',1),(536,2,'2015-09-04 18:00:00',1),(536,31,'2015-09-04 20:00:00',1),(536,12,'2015-09-04 21:00:00',1),(536,5,'2015-09-05 02:00:00',1),(536,133,'2015-09-05 03:00:00',1),(536,3,'2015-09-05 17:00:00',1),(536,2,'2015-09-05 21:00:00',1),(536,7,'2015-09-05 23:00:00',1),(536,4,'2015-09-06 03:00:00',1),(536,28,'2015-09-06 04:00:00',1),(536,1,'2015-09-06 05:00:00',1),(536,5,'2015-09-08 17:00:00',1),(536,12,'2015-09-08 20:00:00',1),(536,21,'2015-09-08 21:00:00',1),(536,1,'2015-09-09 03:00:00',1),(536,4,'2015-09-09 04:00:00',1),(536,1,'2015-09-09 20:00:00',1),(536,18,'2015-09-09 21:00:00',1),(536,14,'2015-09-09 22:00:00',1),(536,5,'2015-09-09 23:00:00',1),(536,31,'2015-09-10 00:00:00',1),(536,12,'2015-09-10 01:00:00',1),(536,3,'2015-09-11 18:00:00',1),(536,1,'2015-09-12 18:00:00',1),(536,1,'2015-09-12 21:00:00',1),(536,5,'2015-09-13 00:00:00',1),(536,2,'2015-09-14 19:00:00',1),(536,11,'2015-09-14 20:00:00',1),(536,9,'2015-09-14 21:00:00',1),(536,3,'2015-09-14 22:00:00',1),(536,22,'2015-09-15 01:00:00',1),(536,13,'2015-09-15 02:00:00',1),(536,2,'2015-09-15 03:00:00',1),(536,1,'2015-09-15 19:00:00',1),(1385,1,'2015-08-27 04:00:00',1),(1385,1,'2015-08-28 13:00:00',1),(1385,1,'2015-09-12 18:00:00',1),(1400,1,'2015-09-12 18:00:00',1),(1408,1,'2015-09-12 18:00:00',1),(1441,2,'2015-08-31 13:00:00',1),(1441,3,'2015-09-04 18:00:00',1),(1441,2,'2015-09-08 17:00:00',1),(1441,1,'2015-09-10 23:00:00',1),(1441,4,'2015-09-12 18:00:00',1),(1441,2,'2015-09-14 19:00:00',1),(1444,2,'2015-09-12 18:00:00',1),(1454,1,'2015-09-12 18:00:00',1),(1630,1,'2015-09-12 18:00:00',1),(1631,1,'2015-09-12 18:00:00',1),(1632,1,'2015-09-12 18:00:00',1),(1658,1,'2015-09-12 18:00:00',1),(1689,5,'2015-08-26 16:00:00',1),(1689,1,'2015-08-26 21:00:00',1),(1689,1,'2015-08-28 13:00:00',1),(1689,1,'2015-08-28 14:00:00',1),(1689,2,'2015-08-28 15:00:00',1),(1689,1,'2015-08-29 04:00:00',1),(1689,4,'2015-08-29 05:00:00',1),(1689,7,'2015-08-29 16:00:00',1),(1689,5,'2015-08-29 17:00:00',1),(1689,5,'2015-08-29 18:00:00',1),(1689,2,'2015-08-29 19:00:00',1),(1689,1,'2015-08-29 20:00:00',1),(1689,1,'2015-08-29 21:00:00',1),(1689,3,'2015-08-29 22:00:00',1),(1689,2,'2015-08-31 14:00:00',1),(1689,5,'2015-08-31 15:00:00',1),(1689,2,'2015-09-02 01:00:00',1),(1689,1,'2015-09-02 04:00:00',1),(1689,1,'2015-09-02 13:00:00',1),(1689,1,'2015-09-02 14:00:00',1),(1689,2,'2015-09-03 03:00:00',1),(1689,2,'2015-09-04 21:00:00',1),(1689,2,'2015-09-05 02:00:00',1),(1689,1,'2015-09-05 17:00:00',1),(1689,1,'2015-09-05 21:00:00',1),(1689,2,'2015-09-06 04:00:00',1),(1689,2,'2015-09-08 17:00:00',1),(1689,1,'2015-09-08 20:00:00',1),(1689,2,'2015-09-14 20:00:00',1),(1689,2,'2015-09-15 01:00:00',1),(1703,1,'2015-09-12 18:00:00',1),(1752,3,'2015-08-27 04:00:00',1),(1752,2,'2015-08-28 03:00:00',1),(1752,2,'2015-08-28 15:00:00',1),(1752,3,'2015-08-28 19:00:00',1),(1752,5,'2015-08-29 04:00:00',1),(1752,2,'2015-08-29 05:00:00',1),(1752,3,'2015-08-29 16:00:00',1),(1752,1,'2015-08-29 17:00:00',1),(1752,3,'2015-08-29 18:00:00',1),(1752,2,'2015-08-29 19:00:00',1),(1752,1,'2015-08-31 15:00:00',1),(1752,6,'2015-09-02 04:00:00',1),(1752,9,'2015-09-02 13:00:00',1),(1752,15,'2015-09-02 14:00:00',1),(1752,25,'2015-09-02 16:00:00',1),(1752,1,'2015-09-02 17:00:00',1),(1752,10,'2015-09-02 21:00:00',1),(1752,35,'2015-09-03 03:00:00',1),(1752,2,'2015-09-03 05:00:00',1),(1752,2,'2015-09-04 18:00:00',1),(1752,15,'2015-09-04 21:00:00',1),(1752,2,'2015-09-05 02:00:00',1),(1752,1,'2015-09-05 17:00:00',1),(1752,1,'2015-09-05 21:00:00',1),(1752,1,'2015-09-06 04:00:00',1),(1752,3,'2015-09-08 17:00:00',1),(1752,1,'2015-09-08 20:00:00',1),(1752,2,'2015-09-14 22:00:00',1),(1752,2,'2015-09-15 01:00:00',1),(1752,1,'2015-09-15 03:00:00',1),(1781,1,'2015-09-12 18:00:00',1),(1791,1,'2015-09-12 18:00:00',1),(1791,1,'2015-09-15 01:00:00',1),(2130,1,'2015-09-05 03:00:00',1),(2131,1,'2015-09-05 03:00:00',1); /*!40000 ALTER TABLE `g516db_top_ten_daily` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_usermeta` -- DROP TABLE IF EXISTS `g516db_usermeta`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_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=MyISAM AUTO_INCREMENT=40 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_usermeta` -- LOCK TABLES `g516db_usermeta` WRITE; /*!40000 ALTER TABLE `g516db_usermeta` DISABLE KEYS */; INSERT INTO `g516db_usermeta` VALUES (1,1,'nickname','genywebmaster'),(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,'g516db_capabilities','a:2:{s:13:\"administrator\";b:1;s:13:\"bbp_keymaster\";b:1;}'),(11,1,'g516db_user_level','10'),(12,1,'dismissed_wp_pointers','vc_pointers_backend_editor,pll_lgt,xl-new-version-2-19-3,xd-new-version-1-11-1,xd-new-version-2-12-1,xl-settings-news,xl-frontend-newss,xl-frontend-theme-news,xl-expert-special-news,xl-expert-news'),(13,1,'show_welcome_panel','1'),(15,1,'g516db_user-settings','mfold=o&editor=tinymce&libraryContent=browse&advImgDetails=show&post_dfw=off&align=center&urlbutton=none&imgsize=full&wplink=1&posts_list_mode=list'),(16,1,'g516db_user-settings-time','1442100330'),(17,1,'g516db_dashboard_quick_press_last_post_id','3693'),(18,2,'nickname','admin'),(19,2,'first_name','Dang'),(20,2,'last_name','Truong'),(21,2,'description',''),(22,2,'rich_editing','true'),(23,2,'comment_shortcuts','false'),(24,2,'admin_color','fresh'),(25,2,'use_ssl','0'),(26,2,'show_admin_bar_front','true'),(27,2,'g516db_capabilities','a:16:{s:10:\"subscriber\";b:1;s:34:\"wpml_manage_translation_management\";b:1;s:21:\"wpml_manage_languages\";b:1;s:41:\"wpml_manage_theme_and_plugin_localization\";b:1;s:19:\"wpml_manage_support\";b:1;s:36:\"wpml_manage_woocommerce_multilingual\";b:1;s:37:\"wpml_operate_woocommerce_multilingual\";b:1;s:29:\"wpml_manage_media_translation\";b:1;s:22:\"wpml_manage_navigation\";b:1;s:24:\"wpml_manage_sticky_links\";b:1;s:30:\"wpml_manage_string_translation\";b:1;s:33:\"wpml_manage_translation_analytics\";b:1;s:25:\"wpml_manage_wp_menus_sync\";b:1;s:32:\"wpml_manage_taxonomy_translation\";b:1;s:27:\"wpml_manage_troubleshooting\";b:1;s:31:\"wpml_manage_translation_options\";b:1;}'),(28,2,'g516db_user_level','0'),(29,2,'dismissed_wp_pointers',''),(30,1,'last_activity','2015-09-15 19:57:36'),(31,1,'nav_menu_recently_edited','43'),(32,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\";}'),(33,1,'metaboxhidden_nav-menus','a:6:{i:0;s:18:\"mega_menu_meta_box\";i:1;s:23:\"add-buddypress-nav-menu\";i:2;s:9:\"add-forum\";i:4;s:11:\"add-ourteam\";i:5;s:12:\"add-post_tag\";i:7;s:20:\"add-ourteam-category\";}'),(34,1,'tribe_setDefaultNavMenuBoxes','1'),(35,1,'closedpostboxes_page','a:1:{i:0;s:18:\"page_blog_meta_box\";}'),(36,1,'metaboxhidden_page','a:9:{i:0;s:13:\"page_meta_box\";i:1;s:22:\"page_timeline_meta_box\";i:2;s:15:\"page_event_grid\";i:3;s:16:\"page_course_grid\";i:4;s:10:\"postcustom\";i:5;s:16:\"commentstatusdiv\";i:6;s:11:\"commentsdiv\";i:7;s:7:\"slugdiv\";i:8;s:9:\"authordiv\";}'),(37,1,'locale','en_US'),(38,1,'g516db_nav_menu_recently_edited','32'),(39,1,'session_tokens','a:1:{s:64:\"1c19a8d0bf9d45b259f094295ee5aab9bc0fa99036258657bf1448fd68230746\";a:4:{s:10:\"expiration\";i:1442430204;s:2:\"ip\";s:3:\"::1\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/45.0.2454.85 Safari/537.36\";s:5:\"login\";i:1442257404;}}'); /*!40000 ALTER TABLE `g516db_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_users` -- DROP TABLE IF EXISTS `g516db_users`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_users` ( `ID` bigint(20) unsigned NOT NULL auto_increment, `user_login` varchar(60) NOT NULL default '', `user_pass` varchar(64) 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(60) 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`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_users` -- LOCK TABLES `g516db_users` WRITE; /*!40000 ALTER TABLE `g516db_users` DISABLE KEYS */; INSERT INTO `g516db_users` VALUES (1,'genywebmaster','$P$BwYYTePsftAh6UIlfcQ9DwkTpcyOB5/','genywebmaster','genywebmaster@gmail.com','','2015-08-26 16:00:44','',0,'genywebmaster'),(2,'admin','$P$B/rusbGDxP8F0K1mlJ3TJddPcHOcUf0','admin','truongcat.9x@gmail.com','','2015-08-26 16:04:10','',0,'admin'); /*!40000 ALTER TABLE `g516db_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `g516db_wpmcleaner` -- DROP TABLE IF EXISTS `g516db_wpmcleaner`; SET @saved_cs_client = @@character_set_client; SET character_set_client = utf8; CREATE TABLE `g516db_wpmcleaner` ( `id` bigint(20) NOT NULL auto_increment, `time` datetime NOT NULL default '0000-00-00 00:00:00', `type` tinyint(1) NOT NULL, `postId` bigint(20) default NULL, `path` tinytext, `size` int(9) default NULL, `ignored` tinyint(1) NOT NULL default '0', `deleted` tinyint(1) NOT NULL default '0', `issue` tinytext NOT NULL, UNIQUE KEY `id` (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=700 DEFAULT CHARSET=utf8; SET character_set_client = @saved_cs_client; -- -- Dumping data for table `g516db_wpmcleaner` -- LOCK TABLES `g516db_wpmcleaner` WRITE; /*!40000 ALTER TABLE `g516db_wpmcleaner` DISABLE KEYS */; INSERT INTO `g516db_wpmcleaner` VALUES (458,'2015-09-15 03:33:13',0,NULL,'2015/04/.DS_Store',8196,0,0,'NO_MEDIA'),(459,'2015-09-15 03:33:17',0,NULL,'2015/05/.DS_Store',6148,0,0,'NO_MEDIA'),(460,'2015-09-15 03:33:23',0,NULL,'2015/06/.DS_Store',8196,0,0,'NO_MEDIA'),(461,'2015-09-15 03:33:23',0,NULL,'2015/07/.DS_Store',6148,0,0,'NO_MEDIA'),(462,'2015-09-15 03:33:32',0,NULL,'2015/08/ESL-300x225.jpg',21096,0,0,'NO_MEDIA'),(463,'2015-09-15 03:33:32',0,NULL,'2015/08/ESL-150x150.jpg',8670,0,0,'NO_MEDIA'),(464,'2015-09-15 03:33:32',0,NULL,'2015/08/ESL-1024x768.jpg',164068,0,0,'NO_MEDIA'),(465,'2015-09-15 03:33:34',0,NULL,'2015/08/.DS_Store',10244,0,0,'NO_MEDIA'),(466,'2015-09-15 03:33:53',0,NULL,'2015/.DS_Store',18436,0,0,'NO_MEDIA'),(467,'2015-09-15 03:33:53',0,NULL,'js_composer/custom.css',0,0,0,'NO_MEDIA'),(468,'2015-09-15 03:33:53',0,NULL,'maxmegamenu/style_en.css',53044,0,0,'NO_MEDIA'),(469,'2015-09-15 03:33:54',0,NULL,'maxmegamenu/style.css',48376,0,0,'NO_MEDIA'),(470,'2015-09-15 03:34:03',1,3690,'2015/04/web-design-feature-title.jpg (+ 3 files)',173035,0,0,'NO_CONTENT'),(471,'2015-09-15 03:34:04',1,3689,'2015/04/toefl-feature-title.jpg (+ 3 files)',69264,0,0,'NO_CONTENT'),(472,'2015-09-15 03:34:06',1,3688,'2015/04/nclex-rn-feature-title.jpg (+ 3 files)',82516,0,0,'NO_CONTENT'),(473,'2015-09-15 03:34:08',1,3687,'2015/04/marketing-management-feature-title.jpg (+ 3 files)',114042,0,0,'NO_CONTENT'),(474,'2015-09-15 03:34:09',1,3686,'2015/04/graphic-design-feature-title.jpg (+ 3 files)',110582,0,0,'NO_CONTENT'),(475,'2015-09-15 03:34:13',1,3685,'2015/04/fashion-design-feature-title.jpg (+ 3 files)',111855,0,0,'NO_CONTENT'),(476,'2015-09-15 03:34:14',1,3684,'2015/04/esl-feature-title.jpg (+ 3 files)',84087,0,0,'NO_CONTENT'),(477,'2015-09-15 03:34:16',1,3683,'2015/04/color-theory-feature-title.jpg (+ 3 files)',113068,0,0,'NO_CONTENT'),(478,'2015-09-15 03:34:17',1,3682,'2015/04/business-english-feature-title.jpg (+ 3 files)',115134,0,0,'NO_CONTENT'),(479,'2015-09-15 03:34:19',1,3681,'2015/04/bookkeeping-feature-title.jpg (+ 3 files)',82087,0,0,'NO_CONTENT'),(480,'2015-09-15 03:34:22',1,3680,'2015/04/basic-drawing-feature-title.jpg (+ 3 files)',81422,0,0,'NO_CONTENT'),(481,'2015-09-15 03:34:24',1,3679,'2015/04/allied-health-training-feature-title.jpg (+ 3 files)',103416,0,0,'NO_CONTENT'),(482,'2015-09-15 03:34:25',1,3678,'2015/04/accounting-feature-title.jpg (+ 3 files)',134385,0,0,'NO_CONTENT'),(483,'2015-09-15 03:34:27',1,3677,'2015/04/open-book.jpg (+ 4 files)',115965,0,0,'NO_CONTENT'),(484,'2015-09-15 03:34:28',1,3676,'2015/08/GENY-ESL-learn-English-map-banner.jpg (+ 4 files)',244622,0,0,'NO_CONTENT'),(485,'2015-09-15 03:34:31',1,3671,'2015/08/GENY-best-school-banner.jpg (+ 4 files)',327132,0,0,'NO_CONTENT'),(486,'2015-09-15 03:34:33',1,3584,'2015/09/web-design-diagram.jpg (+ 4 files)',311095,0,0,'NO_CONTENT'),(487,'2015-09-15 03:34:34',1,3583,'2015/09/graphic-design-diagram.jpg (+ 4 files)',209886,0,0,'NO_CONTENT'),(488,'2015-09-15 03:34:36',1,3582,'2015/09/fashion-design-diagram.jpg (+ 4 files)',230060,0,0,'NO_CONTENT'),(489,'2015-09-15 03:34:45',1,3547,'2015/09/photoshop-icon.png',4139,0,0,'NO_CONTENT'),(490,'2015-09-15 03:34:45',1,3546,'2015/09/indesign-icon.png',3252,0,0,'NO_CONTENT'),(491,'2015-09-15 03:34:45',1,3545,'2015/09/illustator-icon.png',3353,0,0,'NO_CONTENT'),(492,'2015-09-15 03:34:45',1,3544,'2015/09/flash-icon.png',2243,0,0,'NO_CONTENT'),(493,'2015-09-15 03:34:48',1,3543,'2015/09/dreamweaver-icon.png',3236,0,0,'NO_CONTENT'),(494,'2015-09-15 03:34:48',1,3542,'2015/09/after-effects-icon.png',4752,0,0,'NO_CONTENT'),(495,'2015-09-15 03:34:48',1,3526,'2015/04/geny_logo_gray_thumb.png',1676,0,0,'NO_CONTENT'),(496,'2015-09-15 03:34:50',1,3512,'2015/04/geny-school-exterior.jpg (+ 3 files)',227705,0,0,'NO_CONTENT'),(497,'2015-09-15 03:34:51',1,3507,'2015/08/GENY-basic-drawing-banner.jpg (+ 4 files)',1541423,0,0,'NO_CONTENT'),(498,'2015-09-15 03:34:54',1,3463,'2015/09/toefl-350x250.jpg (+ 3 files)',69711,0,0,'NO_CONTENT'),(499,'2015-09-15 03:34:55',1,3424,'2015/08/allied-health-program-img-1-350x250.jpg (+ 3 files)',97128,0,0,'NO_CONTENT'),(500,'2015-09-15 03:34:56',1,3378,'2015/08/Classroom_5.jpg (+ 3 files)',164026,0,0,'NO_CONTENT'),(501,'2015-09-15 03:34:57',1,3377,'2015/06/Lobby2.jpg (+ 3 files)',579935,0,0,'NO_CONTENT'),(502,'2015-09-15 03:35:00',1,3376,'2015/06/Library.jpg (+ 3 files)',515103,0,0,'NO_CONTENT'),(503,'2015-09-15 03:35:01',1,3375,'2015/06/Elevetor_Hall_2.jpg (+ 3 files)',469568,0,0,'NO_CONTENT'),(504,'2015-09-15 03:35:02',1,3374,'2015/06/Elevator_Hall_1.jpg (+ 3 files)',558344,0,0,'NO_CONTENT'),(505,'2015-09-15 03:35:03',1,3373,'2015/06/Computer_Room_1.jpg (+ 3 files)',159906,0,0,'NO_CONTENT'),(506,'2015-09-15 03:35:04',1,3371,'2015/06/Classroom_3.jpg (+ 3 files)',188596,0,0,'NO_CONTENT'),(507,'2015-09-15 03:35:06',1,3347,'2015/06/geny_logo_simple_white_70x75.png',1270,0,0,'NO_CONTENT'),(508,'2015-09-15 03:35:08',1,3229,'2015/05/35th8th1.jpg (+ 4 files)',649372,0,0,'NO_CONTENT'),(509,'2015-09-15 03:35:08',1,3228,'2015/08/geny_logo_white_footer.png',3030,0,0,'NO_CONTENT'),(510,'2015-09-15 03:35:08',1,3226,'2015/08/geny_logo_circle_gold_nav_120x120.png',5226,0,0,'NO_CONTENT'),(511,'2015-09-15 03:35:09',1,3221,'2015/05/35th8th.jpg (+ 4 files)',778853,0,0,'NO_CONTENT'),(512,'2015-09-15 03:35:13',1,3218,'2015/05/empire-state-building-nyc-2000x919.jpg (+ 4 files)',1658346,0,0,'NO_CONTENT'),(513,'2015-09-15 03:35:14',1,3194,'2015/08/geny_logo_white.png (+ 3 files)',54809,0,0,'NO_CONTENT'),(514,'2015-09-15 03:35:14',1,3188,'2015/04/geny_logo_gray_113x100.png',3763,0,0,'NO_CONTENT'),(515,'2015-09-15 03:35:15',1,3187,'2015/04/geny_logo_gray.png (+ 3 files)',66750,0,0,'NO_CONTENT'),(516,'2015-09-15 03:35:16',1,3183,'2015/04/geny_logo_225x200.png (+ 2 files)',30477,0,0,'NO_CONTENT'),(517,'2015-09-15 03:35:19',1,3175,'2015/08/geny_favicon.png',448,0,0,'NO_CONTENT'),(518,'2015-09-15 03:35:20',1,3146,'2015/08/ets_toefl_logo.png (+ 3 files)',234529,0,0,'NO_CONTENT'),(519,'2015-09-15 03:35:21',1,3140,'2015/08/ESL-e1440652704406.jpg (+ 4 files)',251322,0,0,'NO_CONTENT'),(520,'2015-09-15 03:35:22',1,3092,'revslider/Slider1/banner-01.jpg (+ 4 files)',698379,0,0,'NO_CONTENT'),(521,'2015-09-15 03:35:23',1,3091,'revslider/Slider1/banner-02.jpg (+ 4 files)',426621,0,0,'NO_CONTENT'),(522,'2015-09-15 03:35:26',1,3090,'revslider/Slider1/banner-03.jpg (+ 4 files)',707675,0,0,'NO_CONTENT'),(523,'2015-09-15 03:35:26',1,2707,'2015/06/images-1-Blog-4-Column1.jpg',0,0,0,'ORPHAN_MEDIA'),(524,'2015-09-15 03:35:26',1,2706,'2015/05/images-5-Blog-3-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(525,'2015-09-15 03:35:26',1,2704,'2015/05/images-1-Blog-2-Column1.jpg',0,0,0,'ORPHAN_MEDIA'),(526,'2015-09-15 03:35:26',1,2703,'2015/05/images-4-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(527,'2015-09-15 03:35:28',1,2702,'2015/04/images-3-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(528,'2015-09-15 03:35:28',1,2700,'2015/04/images-3-Events-2.jpg',0,0,0,'ORPHAN_MEDIA'),(529,'2015-09-15 03:35:28',1,2699,'2015/04/images-8-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(530,'2015-09-15 03:35:28',1,2672,'2015/07/image-home-4.png',0,0,0,'ORPHAN_MEDIA'),(531,'2015-09-15 03:35:28',1,2267,'2015/05/images-2-Blog-2-Column1.jpg',0,0,0,'ORPHAN_MEDIA'),(532,'2015-09-15 03:35:30',1,2256,'2015/06/images-8-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(533,'2015-09-15 03:35:30',1,2253,'2015/06/images-7-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(534,'2015-09-15 03:35:30',1,2250,'2015/06/images-6-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(535,'2015-09-15 03:35:30',1,2247,'2015/06/images-5-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(536,'2015-09-15 03:35:30',1,2244,'2015/06/images-4-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(537,'2015-09-15 03:35:32',1,2241,'2015/06/images-3-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(538,'2015-09-15 03:35:32',1,2238,'2015/06/images-2-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(539,'2015-09-15 03:35:32',1,2235,'2015/06/images-1-Blog-4-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(540,'2015-09-15 03:35:32',1,2189,'2015/06/Timeline-06.jpg',0,0,0,'ORPHAN_MEDIA'),(541,'2015-09-15 03:35:32',1,2186,'2015/06/Timeline-05.jpg',0,0,0,'ORPHAN_MEDIA'),(542,'2015-09-15 03:35:34',1,2182,'2015/06/Timeline-04.jpg',0,0,0,'ORPHAN_MEDIA'),(543,'2015-09-15 03:35:34',1,2179,'2015/06/Timeline-03.jpg',0,0,0,'ORPHAN_MEDIA'),(544,'2015-09-15 03:35:34',1,2176,'2015/06/Timeline-02.jpg',0,0,0,'ORPHAN_MEDIA'),(545,'2015-09-15 03:35:34',1,2175,'2015/06/Timeline-01.jpg',0,0,0,'ORPHAN_MEDIA'),(546,'2015-09-15 03:35:34',1,2129,'2015/05/images-6-RightSidebar1.jpg',0,0,0,'ORPHAN_MEDIA'),(547,'2015-09-15 03:35:35',1,2128,'2015/05/images-5-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(548,'2015-09-15 03:35:35',1,2127,'2015/05/images-4-RightSidebar1.jpg',0,0,0,'ORPHAN_MEDIA'),(549,'2015-09-15 03:35:35',1,2126,'2015/05/images-3-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(550,'2015-09-15 03:35:35',1,2125,'2015/05/images-2-RightSidebar1.jpg',0,0,0,'ORPHAN_MEDIA'),(551,'2015-09-15 03:35:35',1,2124,'2015/05/images-1-RightSidebar1.jpg',0,0,0,'ORPHAN_MEDIA'),(552,'2015-09-15 03:35:37',1,2101,'2015/06/images-12-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(553,'2015-09-15 03:35:37',1,2100,'2015/04/images-11-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(554,'2015-09-15 03:35:37',1,2099,'2015/06/images-10-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(555,'2015-09-15 03:35:37',1,2098,'2015/04/images-9-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(556,'2015-09-15 03:35:37',1,2097,'2015/06/images-8-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(557,'2015-09-15 03:35:39',1,2096,'2015/06/images-7-Events-1.jpg',0,0,0,'ORPHAN_MEDIA'),(558,'2015-09-15 03:35:39',1,2054,'2015/04/images-2-Events-3.jpg',0,0,0,'ORPHAN_MEDIA'),(559,'2015-09-15 03:35:39',1,2014,'2015/06/images-5-Events-3.jpg',0,0,0,'ORPHAN_MEDIA'),(560,'2015-09-15 03:35:39',1,2013,'2015/06/images-3-Events-3.jpg',0,0,0,'ORPHAN_MEDIA'),(561,'2015-09-15 03:35:39',1,2011,'2015/06/images-4-Events-3.jpg',0,0,0,'ORPHAN_MEDIA'),(562,'2015-09-15 03:35:41',1,2006,'2015/04/images-2-Cources-3.jpg',0,0,0,'ORPHAN_MEDIA'),(563,'2015-09-15 03:35:41',1,1987,'2015/05/logobanner-color-2.png',0,0,0,'ORPHAN_MEDIA'),(564,'2015-09-15 03:35:41',1,1953,'2015/04/check-012.png',0,0,0,'ORPHAN_MEDIA'),(565,'2015-09-15 03:35:41',1,1927,'2015/04/check-011.png',0,0,0,'ORPHAN_MEDIA'),(566,'2015-09-15 03:35:41',1,1919,'2015/04/check1.png',0,0,0,'ORPHAN_MEDIA'),(567,'2015-09-15 03:35:42',1,1901,'2015/04/dieting_concept_hires.jpg',0,0,0,'ORPHAN_MEDIA'),(568,'2015-09-15 03:35:42',1,1900,'2015/04/workstation-4057681.jpg',0,0,0,'ORPHAN_MEDIA'),(569,'2015-09-15 03:35:42',1,1899,'2015/04/teacher-702998.jpg',0,0,0,'ORPHAN_MEDIA'),(570,'2015-09-15 03:35:42',1,1897,'2015/04/drawing_circle_hires.jpg',0,0,0,'ORPHAN_MEDIA'),(571,'2015-09-15 03:35:42',1,1896,'2015/04/workstation-405768.jpg',0,0,0,'ORPHAN_MEDIA'),(572,'2015-09-15 03:35:44',1,1895,'2015/04/read-720528.jpg',0,0,0,'ORPHAN_MEDIA'),(573,'2015-09-15 03:35:44',1,1893,'2015/04/people-316506.jpg',0,0,0,'ORPHAN_MEDIA'),(574,'2015-09-15 03:35:44',1,1892,'2015/04/children-286239.jpg',0,0,0,'ORPHAN_MEDIA'),(575,'2015-09-15 03:35:44',1,1891,'2015/04/learn-586409.jpg',0,0,0,'ORPHAN_MEDIA'),(576,'2015-09-15 03:35:44',1,1858,'2015/05/image-3-Blog-01-Column1.jpg',0,0,0,'ORPHAN_MEDIA'),(577,'2015-09-15 03:35:46',1,1857,'2015/05/image-1-Blog-01-Column1.jpg',0,0,0,'ORPHAN_MEDIA'),(578,'2015-09-15 03:35:46',1,1755,'2015/06/about_us_introduce.jpg',0,0,0,'ORPHAN_MEDIA'),(579,'2015-09-15 03:35:47',1,1628,'2015/04/404-Page.jpg (+ 4 files)',511568,0,0,'NO_CONTENT'),(580,'2015-09-15 03:35:47',1,1611,'2015/05/images-6-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(581,'2015-09-15 03:35:47',1,1606,'2015/05/Timeline-01.jpg',0,0,0,'ORPHAN_MEDIA'),(582,'2015-09-15 03:35:49',1,1601,'2015/05/images-2-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(583,'2015-09-15 03:35:49',1,1598,'2015/05/images-1-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(584,'2015-09-15 03:35:49',1,1586,'2015/05/images-6-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(585,'2015-09-15 03:35:49',1,1582,'2015/05/images-5-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(586,'2015-09-15 03:35:49',1,1579,'2015/05/images-4-RightSidebar.jpg',0,0,0,'ORPHAN_MEDIA'),(587,'2015-09-15 03:35:51',1,1576,'2015/05/images-3-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(588,'2015-09-15 03:35:51',1,1573,'2015/05/images-2-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(589,'2015-09-15 03:35:51',1,1571,'2015/05/images-1-Blog-2-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(590,'2015-09-15 03:35:51',1,1548,'2015/05/image-4-Blog-01-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(591,'2015-09-15 03:35:51',1,1540,'2015/05/image-3-Blog-01-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(592,'2015-09-15 03:35:53',1,1537,'2015/05/image-2-Blog-01-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(593,'2015-09-15 03:35:53',1,1499,'2015/05/portfolio-9-Courses-21.jpg',0,0,0,'ORPHAN_MEDIA'),(594,'2015-09-15 03:35:53',1,1484,'2015/05/image-1-Blog-01-Column.jpg',0,0,0,'ORPHAN_MEDIA'),(595,'2015-09-15 03:35:53',1,1398,'2015/05/portfolio-3-Home-07.jpg',0,0,0,'ORPHAN_MEDIA'),(596,'2015-09-15 03:35:53',1,1384,'2015/04/logo-header-1.png',0,0,0,'ORPHAN_MEDIA'),(597,'2015-09-15 03:35:56',1,1357,'2015/04/login-Home-03.jpg (+ 3 files)',175042,0,0,'NO_CONTENT'),(598,'2015-09-15 03:35:56',1,1283,'2015/05/portfolio-1-Home-03.jpg',0,0,0,'ORPHAN_MEDIA'),(599,'2015-09-15 03:35:56',1,1282,'2015/05/portfolio-3-Home-03.jpg',0,0,0,'ORPHAN_MEDIA'),(600,'2015-09-15 03:35:56',1,1281,'2015/05/portfolio-2-Home-03.jpg',0,0,0,'ORPHAN_MEDIA'),(601,'2015-09-15 03:35:56',1,1280,'2015/05/portfolio-4-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(602,'2015-09-15 03:35:58',1,1279,'2015/05/portfolio-3-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(603,'2015-09-15 03:35:58',1,1278,'2015/05/portfolio-2-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(604,'2015-09-15 03:35:58',1,1277,'2015/05/port-folio-1-Home-012.jpg',0,0,0,'ORPHAN_MEDIA'),(605,'2015-09-15 03:35:58',1,1227,'2015/05/images-4-Courses-1.jpg',0,0,0,'ORPHAN_MEDIA'),(606,'2015-09-15 03:35:58',1,1223,'2015/05/portfolio-9-Courses-2.jpg',0,0,0,'ORPHAN_MEDIA'),(607,'2015-09-15 03:36:00',1,1222,'2015/05/port-folio-1-Home-011.jpg',0,0,0,'ORPHAN_MEDIA'),(608,'2015-09-15 03:36:00',1,1212,'2015/05/port-folio-1-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(609,'2015-09-15 03:36:00',1,1162,'2015/05/lastest-background-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(610,'2015-09-15 03:36:00',1,1160,'2015/05/lastest-image-Home-01.png',0,0,0,'ORPHAN_MEDIA'),(611,'2015-09-15 03:36:00',1,1141,'2015/05/introduce-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(612,'2015-09-15 03:36:01',1,1132,'2015/05/logo-scroll.png',0,0,0,'ORPHAN_MEDIA'),(613,'2015-09-15 03:36:01',1,1131,'2015/05/logo-banner.png',0,0,0,'ORPHAN_MEDIA'),(614,'2015-09-15 03:36:01',1,1117,'2015/05/logo-introduce-home-4.png',0,0,0,'ORPHAN_MEDIA'),(615,'2015-09-15 03:36:01',1,1116,'2015/05/images-introduce-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(616,'2015-09-15 03:36:01',1,1115,'2015/05/lastest-event-4-Home-041.jpg',0,0,0,'ORPHAN_MEDIA'),(617,'2015-09-15 03:36:03',1,1114,'2015/05/cources-Home-04-Copy-2.jpg',0,0,0,'ORPHAN_MEDIA'),(618,'2015-09-15 03:36:03',1,1113,'2015/05/portfolio-2-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(619,'2015-09-15 03:36:03',1,1085,'2015/05/images1.png',0,0,0,'ORPHAN_MEDIA'),(620,'2015-09-15 03:36:05',1,1084,'2015/05/instruction.jpg (+ 4 files)',143847,0,0,'NO_CONTENT'),(621,'2015-09-15 03:36:05',1,1076,'2015/05/lastest-event-4-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(622,'2015-09-15 03:36:07',1,1073,'2015/05/lastest-event-3-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(623,'2015-09-15 03:36:07',1,1070,'2015/05/lastest-event-2-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(624,'2015-09-15 03:36:07',1,1068,'2015/05/lastest-event-1-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(625,'2015-09-15 03:36:07',1,1057,'2015/05/logo-header4.png',0,0,0,'ORPHAN_MEDIA'),(626,'2015-09-15 03:36:07',1,989,'2015/04/portfolio-1-Home-03.jpg',0,0,0,'ORPHAN_MEDIA'),(627,'2015-09-15 03:36:08',1,966,'2015/05/number-one-1-Home-03.jpg',0,0,0,'ORPHAN_MEDIA'),(628,'2015-09-15 03:36:08',1,961,'2015/04/logo-introduce-home3-.png',0,0,0,'ORPHAN_MEDIA'),(629,'2015-09-15 03:36:08',1,959,'2015/04/Logo-header3.png',0,0,0,'ORPHAN_MEDIA'),(630,'2015-09-15 03:36:08',1,872,'2015/04/life-student-Home-07.jpg',0,0,0,'ORPHAN_MEDIA'),(631,'2015-09-15 03:36:08',1,861,'2015/04/images-informtion-Home-7.jpg',0,0,0,'ORPHAN_MEDIA'),(632,'2015-09-15 03:36:10',1,808,'2015/04/leader-tema-2-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(633,'2015-09-15 03:36:10',1,807,'2015/04/leader-team-4-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(634,'2015-09-15 03:36:10',1,806,'2015/04/leader-team-3-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(635,'2015-09-15 03:36:10',1,802,'2015/04/leader-team-Home-01.jpg',0,0,0,'ORPHAN_MEDIA'),(636,'2015-09-15 03:36:10',1,785,'2015/04/life-student-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(637,'2015-09-15 03:36:12',1,749,'2015/04/portfolio-5-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(638,'2015-09-15 03:36:12',1,745,'2015/04/portfolio-2-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(639,'2015-09-15 03:36:12',1,741,'2015/04/portfolio-3-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(640,'2015-09-15 03:36:12',1,738,'2015/04/portfolio-4-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(641,'2015-09-15 03:36:12',1,735,'2015/04/portfolio-1-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(642,'2015-09-15 03:36:14',1,721,'2015/04/lastest-event.jpg',0,0,0,'ORPHAN_MEDIA'),(643,'2015-09-15 03:36:14',1,718,'2015/04/cources-Home-05.jpg',0,0,0,'ORPHAN_MEDIA'),(644,'2015-09-15 03:36:14',1,712,'2015/04/logo-1-Home5.png',0,0,0,'ORPHAN_MEDIA'),(645,'2015-09-15 03:36:14',1,711,'2015/04/logo-Home5.png',0,0,0,'ORPHAN_MEDIA'),(646,'2015-09-15 03:36:14',1,707,'2015/04/logo-Header-07.png',0,0,0,'ORPHAN_MEDIA'),(647,'2015-09-15 03:36:16',1,705,'2015/04/logo-header51.png',0,0,0,'ORPHAN_MEDIA'),(648,'2015-09-15 03:36:16',1,703,'2015/04/logo-header5.png',0,0,0,'ORPHAN_MEDIA'),(649,'2015-09-15 03:36:16',1,666,'2015/04/lastest-Home-02-101.jpg',0,0,0,'ORPHAN_MEDIA'),(650,'2015-09-15 03:36:16',1,665,'2015/04/lastest-Home-02-81.jpg',0,0,0,'ORPHAN_MEDIA'),(651,'2015-09-15 03:36:16',1,664,'2015/04/lastest-Home-02-71.jpg',0,0,0,'ORPHAN_MEDIA'),(652,'2015-09-15 03:36:17',1,663,'2015/04/lastest-Home-02-61.jpg',0,0,0,'ORPHAN_MEDIA'),(653,'2015-09-15 03:36:17',1,662,'2015/04/lastest-Home-02-51.jpg',0,0,0,'ORPHAN_MEDIA'),(654,'2015-09-15 03:36:17',1,661,'2015/04/lastest-Home-02-41.jpg',0,0,0,'ORPHAN_MEDIA'),(655,'2015-09-15 03:36:17',1,660,'2015/04/lastest-Home-02-31.jpg',0,0,0,'ORPHAN_MEDIA'),(656,'2015-09-15 03:36:17',1,659,'2015/04/lastest-Home-02-21.jpg',0,0,0,'ORPHAN_MEDIA'),(657,'2015-09-15 03:36:19',1,658,'2015/04/lastest-Home-02-11.jpg',0,0,0,'ORPHAN_MEDIA'),(658,'2015-09-15 03:36:19',1,603,'2015/04/logo-instruction-home6.png',0,0,0,'ORPHAN_MEDIA'),(659,'2015-09-15 03:36:19',1,597,'2015/04/intruction-Home-06.jpg',0,0,0,'ORPHAN_MEDIA'),(660,'2015-09-15 03:36:19',1,584,'2015/04/cources-Home-04.jpg',0,0,0,'ORPHAN_MEDIA'),(661,'2015-09-15 03:36:19',1,583,'2015/04/cources-Home-04-Copy.jpg',0,0,0,'ORPHAN_MEDIA'),(662,'2015-09-15 03:36:21',1,582,'2015/04/cources-Home-04-Copy-3.jpg',0,0,0,'ORPHAN_MEDIA'),(663,'2015-09-15 03:36:21',1,581,'2015/04/cources-Home-04-Copy-2.jpg',0,0,0,'ORPHAN_MEDIA'),(664,'2015-09-15 03:36:21',1,542,'2015/04/logo-services.png',0,0,0,'ORPHAN_MEDIA'),(665,'2015-09-15 03:36:21',1,539,'2015/04/logo-header06.png',0,0,0,'ORPHAN_MEDIA'),(666,'2015-09-15 03:36:21',1,523,'2015/04/icon-footer.png',0,0,0,'ORPHAN_MEDIA'),(667,'2015-09-15 03:36:23',1,481,'2015/04/enjoy1.jpg',0,0,0,'ORPHAN_MEDIA'),(668,'2015-09-15 03:36:23',1,479,'2015/04/logo-header-2.png',0,0,0,'ORPHAN_MEDIA'),(669,'2015-09-15 03:36:23',1,477,'2015/04/number-one-logo.png',0,0,0,'ORPHAN_MEDIA'),(670,'2015-09-15 03:36:23',1,476,'2015/04/lastest-Home-02-10.jpg',0,0,0,'ORPHAN_MEDIA'),(671,'2015-09-15 03:36:23',1,475,'2015/04/lastest-Home-02-8.jpg',0,0,0,'ORPHAN_MEDIA'),(672,'2015-09-15 03:36:25',1,474,'2015/04/lastest-Home-02-7.jpg',0,0,0,'ORPHAN_MEDIA'),(673,'2015-09-15 03:36:25',1,473,'2015/04/lastest-Home-02-6.jpg',0,0,0,'ORPHAN_MEDIA'),(674,'2015-09-15 03:36:25',1,472,'2015/04/lastest-Home-02-5.jpg',0,0,0,'ORPHAN_MEDIA'),(675,'2015-09-15 03:36:25',1,471,'2015/04/lastest-Home-02-4.jpg',0,0,0,'ORPHAN_MEDIA'),(676,'2015-09-15 03:36:25',1,470,'2015/04/lastest-Home-02-3.jpg',0,0,0,'ORPHAN_MEDIA'),(677,'2015-09-15 03:36:26',1,469,'2015/04/lastest-Home-02-2.jpg',0,0,0,'ORPHAN_MEDIA'),(678,'2015-09-15 03:36:26',1,468,'2015/04/lastest-Home-02-1.jpg',0,0,0,'ORPHAN_MEDIA'),(679,'2015-09-15 03:36:26',1,467,'2015/04/lastest-6.jpg',0,0,0,'ORPHAN_MEDIA'),(680,'2015-09-15 03:36:26',1,466,'2015/04/lastest-2-event-4.jpg',0,0,0,'ORPHAN_MEDIA'),(681,'2015-09-15 03:36:26',1,465,'2015/04/lastest-2-event-3.jpg',0,0,0,'ORPHAN_MEDIA'),(682,'2015-09-15 03:36:28',1,464,'2015/04/lastest-2-event-2.jpg',0,0,0,'ORPHAN_MEDIA'),(683,'2015-09-15 03:36:28',1,463,'2015/04/lastest-2-event-1.jpg',0,0,0,'ORPHAN_MEDIA'),(684,'2015-09-15 03:36:28',1,462,'2015/04/find.jpg',0,0,0,'ORPHAN_MEDIA'),(685,'2015-09-15 03:36:28',1,461,'2015/04/find-Copy.jpg',0,0,0,'ORPHAN_MEDIA'),(686,'2015-09-15 03:36:28',1,460,'2015/04/find-Copy-4.jpg',0,0,0,'ORPHAN_MEDIA'),(687,'2015-09-15 03:36:30',1,459,'2015/04/find-Copy-3.jpg',0,0,0,'ORPHAN_MEDIA'),(688,'2015-09-15 03:36:30',1,458,'2015/04/find-Copy-2.jpg',0,0,0,'ORPHAN_MEDIA'),(689,'2015-09-15 03:36:30',1,457,'2015/04/enjoy.jpg',0,0,0,'ORPHAN_MEDIA'),(690,'2015-09-15 03:36:30',1,456,'2015/04/check-01.png',0,0,0,'ORPHAN_MEDIA'),(691,'2015-09-15 03:36:30',1,455,'2015/04/check.png',0,0,0,'ORPHAN_MEDIA'),(692,'2015-09-15 03:36:32',1,454,'2015/04/banner-08.jpg',0,0,0,'ORPHAN_MEDIA'),(693,'2015-09-15 03:36:32',1,453,'2015/04/banner-07.jpg',0,0,0,'ORPHAN_MEDIA'),(694,'2015-09-15 03:36:32',1,452,'2015/04/banner-06.jpg',0,0,0,'ORPHAN_MEDIA'),(695,'2015-09-15 03:36:32',1,451,'2015/04/banner-05.jpg',0,0,0,'ORPHAN_MEDIA'),(696,'2015-09-15 03:36:32',1,450,'2015/04/banner-04.jpg',0,0,0,'ORPHAN_MEDIA'),(697,'2015-09-15 03:36:33',1,449,'2015/04/banner-03.jpg',0,0,0,'ORPHAN_MEDIA'),(698,'2015-09-15 03:36:33',1,448,'2015/04/banner-02.jpg',0,0,0,'ORPHAN_MEDIA'),(699,'2015-09-15 03:36:33',1,447,'2015/04/banner-01.jpg',0,0,0,'ORPHAN_MEDIA'); /*!40000 ALTER TABLE `g516db_wpmcleaner` ENABLE KEYS */; UNLOCK TABLES; -- -- Dumping routines for database '1_03a7dba_2' -- DELIMITER ;; DELIMITER ; /*!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 2015-09-16 2:36:59